:root{
  --text:#eaf6ff;
  --muted:#9fb3c8;
  --primary:#38bdf8;
  --wa:#22c55e;
  --danger:#ff6b6b;
  --warn:#ffcc66;
}

*{ box-sizing:border-box; font-family:Inter,system-ui,Arial,sans-serif; }

body{
  margin:0;
  min-height:100vh;
  background:radial-gradient(circle at top,#1b2a4a,#040812 65%);
  color:var(--text);
  display:flex;
  justify-content:center;
  padding:16px;
}

.container{ width:100%; max-width:420px; }

/* BRAND */
.brand{ text-align:center; margin-bottom:14px; }
.brand img{ width:180px; max-width:90%; margin:0 auto 8px; display:block; }
.brand h1{ margin:0; font-size:26px; font-weight:900; letter-spacing:.5px; }
.brand h1 span{ font-size:13px; font-weight:500; color:var(--muted); }
.brand p{ margin:6px 0 0; font-size:14px; color:var(--muted); }

/* CARD */
.card{
  background:linear-gradient(180deg,#16213e,#0f172a);
  border-radius:16px;
  padding:16px;
  box-shadow:0 18px 36px rgba(0,0,0,.45);
}

label{ font-size:13px; color:var(--muted); }
input{
  width:100%;
  padding:14px;
  border-radius:10px;
  border:none;
  margin:8px 0 14px;
  font-size:15px;
  outline:none;
}

/* BUTTON */
.btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:12px;
  font-size:15px;
  font-weight:900;
  cursor:pointer;
  text-align:center;
  text-decoration:none;
  display:block;
}

.btn-primary{
  background:linear-gradient(90deg,#38bdf8,#22d3ee);
  color:#00202b;
  animation:pulse 1.4s infinite;
}

.btn-support{
  background:var(--wa);
  color:#00210f;
}

.btn-sales{
  background:var(--wa);
  color:#00210f;
  padding:16px;               /* lebih besar */
  font-size:16px;             /* CTA besar */
  border-radius:14px;
}

/* TOAST */
.toast{
  border-radius:14px;
  padding:12px 12px 10px;
  margin:0 0 12px 0;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.15);
}
.toast.ok{ border-color: rgba(34,197,94,.55); }
.toast.danger{ border-color: rgba(255,107,107,.55); }
.toast.warn{ border-color: rgba(255,204,102,.55); }

.toast-text{ font-size:13px; line-height:1.25; }
.toast-actions{
  display:flex;
  gap:8px;
  margin-top:10px;
}
.toast-btn{
  flex:1;
  padding:10px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:var(--text);
  font-weight:900;
  text-decoration:none;
  text-align:center;
}
.toast-btn.ghost{ background:transparent; }

/* SECTION */
.section{
  margin-top:14px;
  background:rgba(255,255,255,.05);
  border-radius:14px;
  padding:14px;
}
.section-title{
  font-size:13px;
  font-weight:900;
  margin-bottom:10px;
}

/* PACKAGES GRID */
.packages{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.pkg{
  background:#0f1b33;
  border-radius:12px;
  padding:12px;
  font-size:13px;
  border:1px solid rgba(255,255,255,.08);
}
.pkg strong{ display:block; font-size:16px; }
.pkg-buy{
  display:block;
  margin-top:6px;
  font-size:12px;
  color:var(--primary);
  text-decoration:none;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  animation:pulse 1.6s infinite;
  font-weight:900;
}

/* Guide card sejajar paket 1 bulan */
.guide-card{
  padding:12px;
}
.guide-title{
  font-weight:900;
  margin-bottom:8px;
  font-size:13px;
  color:#cfeaff;
}
.guide-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  font-size:12px;
  color:var(--muted);
  line-height:1.25;
}
.guide-note{
  margin-top:8px;
  font-size:12px;
  color:var(--muted);
}

/* Support area di bawah list paket */
.support-area{
  margin-top:12px;
  padding-top:12px;
  border-top:1px dashed rgba(255,255,255,.12);
}
.support-note{
  font-size:12px;
  color:var(--muted);
  margin-bottom:8px;
}

/* WIFI PROMO */
.wifi{
  margin-top:14px;
  background:linear-gradient(90deg,#0ea5e9,#22c55e);
  color:#002014;
  border-radius:14px;
  padding:14px;
}
.wifi-title{
  font-weight:900;
  font-size:15px;
  margin-bottom:6px;
}
.wifi-desc{
  font-size:13px;
  margin-bottom:10px;
}
.wifi-link{
  display:block;
  margin-top:10px;
  font-weight:900;
  color:#002014;
  text-decoration:underline;
}

/* STATUS PAGE */
.status-title{
  font-weight:900;
  margin-bottom:10px;
  color:#c7e7ff;
}
.status-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.status-item{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  padding:10px;
}
.status-item .k{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
}
.status-item .v{
  display:block;
  font-size:13px;
  font-weight:900;
  color:var(--text);
}
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
.note{
  margin-top:12px;
  font-size:12px;
  color:var(--muted);
  line-height:1.3;
}
.btn-logout{
  margin-top:10px;
  background:rgba(255,107,107,.18);
  border:1px solid rgba(255,107,107,.35);
  color:#ffd3d3;
}
.mini-actions{
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.mini-actions a{
  flex:1;
  text-align:center;
  font-size:12px;
  color:var(--primary);
  text-decoration:none;
  padding:10px;
  border-radius:12px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
}

/* ANIMATION */
@keyframes pulse{
  0%{transform:scale(1);opacity:1}
  50%{transform:scale(1.03);opacity:.78}
  100%{transform:scale(1);opacity:1}
}

/* Responsive: kalau layar sempit, guide turun jadi 1 kolom */
@media (max-width:360px){
  .guide-grid{ grid-template-columns:1fr; }
}
@media (max-width:420px){
  .status-grid{ grid-template-columns:1fr; }
}