/* ============================================================
   THEME COLORS (from logo)
============================================================ */
:root{
  --c-primary: #ff7b22;       /* orange */
  --c-primary-2:#ff9e4a;
  --c-primary-dark:#c55d00;

  --c-cyan: #1cb7c5;          /* cyan */
  --c-cyan-dark:#0d7a83;
  --c-cyan-glow:#2df1ff;

  --c-bg: #03171d;
  --c-bg-soft:#06252d;

  --c-white:#ffffff;
  --c-muted: rgba(188,208,212,0.85);
}

/* ============================================================
   GLOBAL
============================================================ */
*{box-sizing:border-box}
html { scroll-behavior:smooth; }
body {
  margin:0;
  font-family:'Poppins',sans-serif;
  background: linear-gradient(180deg, var(--c-bg) 0%, #041b23 100%);
  color:var(--c-white);
  padding-top:80px;
}

/* NAVBAR */
nav.navbar{
  backdrop-filter: blur(14px);
  background: linear-gradient(90deg, rgba(2,6,12,0.45), rgba(6,8,14,0.25)) !important;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.brand-accent{ color:var(--c-cyan); text-shadow: 0 0 10px rgba(45,241,255,0.15); }
.login-btn{
  background:linear-gradient(90deg, var(--c-cyan), var(--c-primary));
  border-radius:6px;
  box-shadow:0 6px 22px rgba(28,183,197,0.12);
}

/* HERO */
.hero-title{ text-align:center; padding:120px 0 40px; }
.holo-orb img.holo-logo{
  width:160px; height:160px; border-radius:50%; object-fit:cover;
  box-shadow: 0 8px 30px rgba(28,183,197,0.18), inset 0 0 30px rgba(255,123,34,0.06);
  border:4px solid rgba(255,123,34,0.06);
}
.holo-title-text{
  font-size:3rem; font-weight:700; margin-top:12px;
  background: linear-gradient(90deg,var(--c-cyan),var(--c-primary));
  -webkit-background-clip:text; color:transparent;
  text-shadow: 0 0 12px rgba(28,183,197,0.08);
}
.holo-sub{ color: rgba(188,208,212,0.9); margin-top:8px; }

/* Buttons */
.hero-buttons{ margin-top:20px; display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.hero-btn{
  padding:10px 20px; border-radius:40px; background: linear-gradient(90deg,var(--c-cyan),var(--c-primary));
  color:var(--c-white); text-decoration:none; font-weight:600;
  box-shadow:0 6px 24px rgba(28,183,197,0.12);
  border:1px solid rgba(255,255,255,0.04);
  position:relative; overflow:hidden;
}
.hero-btn.secondary { background: linear-gradient(90deg, var(--c-cyan), #006bff); }
.hero-btn:hover{ transform:translateY(-4px); box-shadow:0 12px 44px rgba(120,20,255,0.18); }

/* hero button sheen */
.hero-btn::after{
  content:""; position:absolute; left:-60%; top:-60%; width:200%; height:200%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), transparent 20%);
  transform: rotate(25deg); transition: 0.45s ease;
}
.hero-btn:hover::after { left:-20%; top:-20%; }

/* SECTION TITLE */
.section-title{
  font-size:2.4rem; font-weight:700; margin-bottom:20px; text-align:center;
  background: linear-gradient(90deg,var(--c-cyan),var(--c-primary)); -webkit-background-clip:text; color:transparent;
}

/* CARDS */
.card-glass{
  padding:20px; border-radius:14px; background: rgba(255,255,255,0.02); backdrop-filter: blur(12px);
  border:1px solid rgba(255,255,255,0.03);
}
.cyber-card{
  border-radius:14px; background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(3,7,14,0.35));
  border:1px solid rgba(28,183,197,0.08); padding:18px; transition:0.35s;
}
.cyber-card:hover{ transform: translateY(-10px) scale(1.02); box-shadow: 0 18px 60px rgba(28,183,197,0.08); }
.cyber-icon{ width:90px; filter: drop-shadow(0 0 18px rgba(45,241,255,0.18)); }

/* PRICE BOX */
.price-box{ border-radius:12px; padding:26px; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border:1px solid rgba(255,255,255,0.03); }

/* RESELLER DYNAMIC */
.reseller-input, .reseller-select {
  width:100%; max-width:420px; padding:12px 14px; border-radius:10px; background:#031a20; color:var(--c-white); border:1px solid rgba(28,183,197,0.12); margin:6px;
}
.filter-row { display:flex; gap:8px; align-items:center; flex-wrap:wrap; justify-content:center; }

.reseller-grid {
  display:grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap:20px; margin-top:20px;
}
.reseller-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding:18px; border-radius:14px; text-align:center; position:relative; cursor:pointer; border:1px solid rgba(255,255,255,0.04);
  transition:0.35s;
}
.reseller-card:hover { transform:translateY(-10px) scale(1.02); box-shadow: 0 0 25px rgba(187,78,255,0.15); }
.reseller-photo { width:110px; height:110px; border-radius:50%; object-fit:cover; margin-bottom:12px; border:3px solid rgba(28,183,197,0.9); transition:0.3s; }
.reseller-card:hover .reseller-photo { filter: drop-shadow(0 0 14px rgba(45,241,255,0.18)) brightness(1.05); }
.role-tag { color: #d4bbff; font-weight:600; display:block; margin-bottom:6px; }
.quick-contact { display:none; gap:8px; justify-content:center; margin-top:10px; }
.reseller-card:hover .quick-contact { display:flex; }

/* quick-contact buttons */
.small-cta { padding:6px 10px; border-radius:8px; text-decoration:none; color:var(--c-white); font-weight:600; background:linear-gradient(90deg,var(--c-cyan),var(--c-primary)); box-shadow:0 8px 18px rgba(28,183,197,0.08); }

/* PAGINATION */
.page-btn { min-width:36px; height:32px; border-radius:6px; margin:0 4px; background: transparent; border:1px solid rgba(255,255,255,0.04); color:var(--c-white); }

/* POPUP */
.popup-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.75); display:none; justify-content:center; align-items:center; z-index:9999; }
.popup-card { background: linear-gradient(180deg,#0b0a12,#1c0033); padding:20px; border-radius:14px; width:340px; text-align:center; box-shadow:0 0 40px rgba(213,79,255,0.12); }
.popup-photo { width:110px; height:110px; border-radius:50%; object-fit:cover; margin-bottom:12px; border:3px solid rgba(255,123,34,0.15); }

/* FOOTER */
footer{
  width:100%; text-align:center; padding:40px 0; margin-top:80px; color:var(--c-muted); font-size:0.95rem;
  text-shadow:0 0 6px rgba(255,255,255,0.06);
  border-top:1px solid rgba(255,255,255,0.04);
}

/* RESPONSIVE */
@media (max-width:576px){
  .holo-title-text{ font-size:1.8rem; }
  .hero-title{ padding-top:100px; }
  .reseller-input{ max-width:100%; }
}
.logo-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}

/* ==============================
   SERVER STATUS INDICATOR
============================== */

.s-label{
  font-weight:600;
  letter-spacing:1px;
  color:var(--c-muted);
  margin-bottom:6px;
}

.s-value{
  font-size:1.1rem;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

/* indicator dot */
.s-value::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  display:inline-block;
}

/* ONLINE */
.status-on{
  color:#2df1ff;
}
.status-on::before{
  background:#2df1ff;
  box-shadow:0 0 10px #2df1ff;
}

/* OFFLINE */
.status-off{
  color:#ff4d4d;
}
.status-off::before{
  background:#ff4d4d;
  box-shadow:0 0 10px rgba(255,77,77,0.8);
}

/* MAINTENANCE */
.status-maintenance{
  color:#ffb347;
}
.status-maintenance::before{
  background:#ffb347;
  box-shadow:0 0 10px rgba(255,179,71,0.9);
}

/* ===== MAINTENANCE BANNER ===== */
.maintenance-banner{
  position:fixed;
  top:70px; /* pas di bawah navbar */
  left:0;
  width:100%;
  z-index:999;
  background:linear-gradient(90deg,#ff7b22,#ff9e4a);
  box-shadow:0 8px 30px rgba(255,123,34,.35);
  animation: slideDown .6s ease;
}

.mb-inner{
  max-width:1200px;
  margin:auto;
  padding:12px 20px;
  text-align:center;
  font-weight:700;
  color:#1a0b00;
}

@keyframes slideDown{
  from{ transform:translateY(-100%); opacity:0 }
  to{ transform:translateY(0); opacity:1 }
}

/* ===== AUTO MAINTENANCE FULLSCREEN ===== */
.maintenance-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
}

.maintenance-box{
  background:linear-gradient(180deg,#200,#400);
  border:2px solid red;
  border-radius:20px;
  padding:40px;
  max-width:600px;
  width:90%;
  text-align:center;
  color:#fff;
  box-shadow:0 0 60px red;
  animation:blinkBox 1.2s infinite;
}

@keyframes blinkBox{
  0%{box-shadow:0 0 20px red}
  50%{box-shadow:0 0 60px red}
  100%{box-shadow:0 0 20px red}
}

.blink-text{
  display:block;
  margin-top:20px;
  animation:blinkText 1s infinite;
}

@keyframes blinkText{
  0%,100%{opacity:1}
  50%{opacity:.3}
}

#maintenanceList{
  list-style:none;
  padding:0;
  margin:20px 0;
}

#maintenanceList li{
  color:#ff8080;
  font-weight:700;
  padding:6px 0;
}
/* ===== NEWS POPUP ===== */
.news-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  z-index:99998;
  display:flex;
  align-items:center;
  justify-content:center;
}

.news-box{
  background:linear-gradient(180deg,#07151f,#020b12);
  border:1px solid rgba(45,241,255,.4);
  border-radius:18px;
  padding:30px;
  max-width:520px;
  width:92%;
  color:#eaffff;
  box-shadow:0 0 40px rgba(45,241,255,.3);
  animation:popupIn .4s ease;
}

@keyframes popupIn{
  from{transform:scale(.85);opacity:0}
  to{transform:scale(1);opacity:1}
}

.news-box h2{
  color:#2df1ff;
  margin-bottom:10px;
}

.news-actions{
  text-align:center;
  margin-top:20px;
}

.news-actions button{
  padding:10px 22px;
  border-radius:22px;
  border:none;
  background:#2df1ff;
  font-weight:700;
  cursor:pointer;
}
