/* =====================================================
   XTRIMER PANEL - FINAL THEME
   Glassmorphism + Hero + sshOcean style modal
   ===================================================== */

/* =========================
   GLOBAL RESET & BODY
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Arial, sans-serif;
}

body {
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.2), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(236, 72, 153, 0.18), transparent 55%),
    #020617;
  color: #e5e7eb;
  min-height: 100vh;
}

/* =========================
   TOP BAR
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 8, 22, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-tagline {
  font-size: 12px;
  color: #9ca3af;
}

.site-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  color: #bfdbfe;
  border: 1px solid rgba(59, 130, 246, 0.5);
}

/* =========================
   PAGE WRAPPER
   ========================= */
.page {
  display: none;
  padding: 24px 16px 40px;
}

.page.active {
  display: block;
}

.container {
  max-width: 420px;
  margin: 0 auto;
}

.container.center {
  text-align: center;
}

/* =========================
   TYPOGRAPHY & UTIL
   ========================= */
h1,
h2,
h3,
h4 {
  margin-bottom: 12px;
  font-weight: 600;
}

p {
  margin-bottom: 6px;
  font-size: 14px;
}

.muted {
  color: #9ca3af;
}

.small {
  font-size: 12px;
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease,
    background 0.1s ease, opacity 0.1s ease;
  white-space: nowrap;
}

.btn.primary {
  background: radial-gradient(circle at 0 0, #4f46e5, #2563eb);
  color: white;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.7);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.9);
}

.btn.secondary {
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.btn.secondary:hover {
  background: rgba(30, 41, 59, 0.9);
}

.btn.danger {
  background: linear-gradient(135deg, #f97373, #ef4444);
  color: white;
  box-shadow: 0 10px 26px rgba(248, 113, 113, 0.7);
}

.btn.small-btn {
  padding: 6px 12px;
  font-size: 13px;
}

.btn.full {
  width: 100%;
  margin-top: 8px;
}

/* =========================
   INPUTS
   ========================= */
input,
select {
  width: 100%;
  padding: 8px 10px;
  margin-top: 4px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
  color: #f9fafb;
  font-size: 14px;
}

input::placeholder {
  color: #6b7280;
}

input:focus,
select:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.5);
}

/* =========================
   HERO WELCOME ala landing page
   ========================= */
#welcome {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px 40px;
}

.hero-inner {
  max-width: 680px;
  width: 100%;
}

.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: #9ca3af;
  max-width: 520px;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-main-btn {
  padding-inline: 22px;
  padding-block: 10px;
  font-size: 15px;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.45);
}

/* hero mobile */
@media (max-width: 640px) {
  #welcome {
    align-items: flex-start;
    padding-top: 72px;
  }
  .hero-inner {
    text-align: left;
  }
  .hero-title {
    font-size: 26px;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  #welcome {
    padding-bottom: 80px;
  }
}

/* =========================
   PANEL FRAME (DASHBOARD)
   ========================= */
#dashboard {
  padding-top: 32px;
}

/* FRAME PANEL */
.app-shell {
  max-width: 1120px;
  margin: 0 auto 32px;
  padding: 22px 18px 26px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.35), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(244, 63, 94, 0.22), transparent 55%),
    linear-gradient(135deg, #020617, #020617 35%, #020617);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 22px 65px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9) inset;
}

/* HEADER DALAM PANEL */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.85);
  margin-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-dot {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 25% 25%, #bfdbfe, #3b82f6);
  box-shadow: 0 0 26px rgba(59, 130, 246, 0.9);
}

.brand-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 12px;
  color: #9ca3af;
}

.user-box {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.user-label {
  font-size: 11px;
  color: #9ca3af;
}

.user-email {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at 0 0, #0f172a, #020617);
  font-size: 13px;
}

/* =========================
   NAV DALAM PANEL
   ========================= */
.app-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0.95), #020617);
  border: 1px solid rgba(51, 65, 85, 0.95);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

.nav-btn {
  position: relative;
  flex: 1 1 auto;
  text-align: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9ca3af;
  cursor: pointer;
  transition:
    background 0.13s ease,
    box-shadow 0.13s ease,
    color 0.13s ease,
    transform 0.08s ease;
}

.nav-btn:hover {
  color: #e5e7eb;
}

.nav-btn.active {
  color: #ffffff;
  background: radial-gradient(circle at 0% 0%, #4f46e5, #2563eb);
  box-shadow:
    0 0 0 1px rgba(191, 219, 254, 0.5),
    0 18px 35px rgba(37, 99, 235, 0.7);
  transform: translateY(-1px);
}

/* =========================
   MAIN CONTENT
   ========================= */
.app-main {
  margin-top: 8px;
}

.app-page {
  display: none;
}

.app-page.active {
  display: block;
}

/* GRID UNTUK OVERVIEW */
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 18px;
}

/* CARD UMUM DALAM PANEL */
.card {
  background:
    radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.16), transparent 55%),
    rgba(15, 23, 42, 0.95);
  border-radius: 20px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow:
    0 14px 40px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9) inset;
  backdrop-filter: blur(18px);
}

.card h3,
.card h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

/* Teks info overview */
#app-overview .card p {
  font-size: 13px;
}

#statusSaldo {
  font-size: 16px;
}

#statusLevel {
  letter-spacing: 0.12em;
}

/* =========================
   SERVER LIST
   ========================= */
.server-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

/* ===== SERVER CARD – warna mirip Status Akun ===== */
.server-card {
  position: relative;
  border-radius: 22px;
  padding: 14px 16px 16px;
  background: radial-gradient(circle at top left, #233b7a 0, #050816 55%, #020617 100%);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.server-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(96, 165, 250, 0.18), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.server-name {
  position: relative;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.server-meta {
  position: relative;
  font-size: 12px;
  color: #e5e7eb;
  opacity: 0.9;
  margin-bottom: 2px;
}

/* badge status tetap, tapi sedikit glow biar nyatu */
.badge {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
}

.badge.green {
  background: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
}

.badge.red {
  background: rgba(248, 113, 113, 0.18);
  color: #fecaca;
  border-color: rgba(248, 113, 113, 0.6);
  box-shadow: 0 0 12px rgba(248, 113, 113, 0.5);
}

.server-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.server-meta {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 3px;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.badge.green {
  background: rgba(22, 163, 74, 0.15);
  color: #bbf7d0;
  border-color: rgba(34, 197, 94, 0.5);
}

.badge.red {
  background: rgba(239, 68, 68, 0.15);
  color: #fecaca;
  border-color: rgba(248, 113, 113, 0.6);
}

/* =========================
   LIST RIWAYAT
   ========================= */
.dummy-list {
  list-style: none;
  font-size: 13px;
}

.dummy-list li {
  padding: 6px 0;
  border-bottom: 1px dashed rgba(75, 85, 99, 0.7);
}

/* KHUSUS TOPUP QRIS */
#topupPaymentCard {
  text-align: left;
}

/* =========================
   ADMIN PAGE
   ========================= */
#app-admin .card {
  margin-bottom: 16px;
}

@media (min-width: 900px) {
  #app-admin .admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 16px;
  }
}

/* =========================
   RESPONSIVE PANEL
   ========================= */
@media (max-width: 768px) {
  .app-shell {
    border-radius: 18px;
    padding-inline: 14px;
  }

  .app-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-nav {
    border-radius: 18px;
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header-inner {
    padding-inline: 12px;
  }
}

/* =====================================================
   MODAL HASIL AKUN (sshOcean style)
   ===================================================== */

/* wrapper modal */
.result-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.result-modal.show {
  display: flex;
}

.result-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* card modal */
.result-card {
  position: relative;
  z-index: 1;
  max-width: 330px;
  width: 90%;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at top, #0f172a, #020617 70%);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.85);
}

/* header biru gradient */
.result-header {
  padding: 16px 18px 14px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #f9fafb;
  position: relative;
}

.result-header h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.result-subtitle {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
}

/* pill di kanan header */
.result-pill {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(191, 219, 254, 0.6);
}

/* alert success hijau */
.result-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 16px 0;
  padding: 9px 11px;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.6);
}

.result-success-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: #22c55e;
  color: #022c22;
  font-weight: 700;
}

.result-success-text {
  font-size: 13px;
  color: #bbf7d0;
}

.result-success-text span {
  display: block;
  font-size: 12px;
  opacity: 0.9;
}

/* card detail akun */
.result-detail-card {
  margin: 12px 16px 0;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

/* teks config akun */
.result-text {
  width: 100%;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  font-size: 11.5px;
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
}

/* tombol bawah modal */
.result-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 16px 16px;
}

.result-actions .btn.full {
  width: 100%;
  margin-top: 0;
  height: 34px;
  font-size: 12.5px;
  border-radius: 12px;
}

/* di layar lebar, 3 tombol sejajar */
@media (min-width: 640px) {
  .result-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .result-actions .btn.full {
    flex: 1 1 0;
  }
}

/* mini-box & baris link */
.mini-box {
  background: rgba(15, 23, 42, 0.95);
  padding: 6px 8px;
  border-radius: 10px;
  margin-top: 8px;
  font-size: 11.5px;
}

.scroll-x {
  padding: 6px 8px;
  border-radius: 8px;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 12px;
}

.scroll-x::-webkit-scrollbar {
  height: 4px;
}
.scroll-x::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 4px;
}

/* BOX LINK WARNA */
.box-tls {
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(37, 99, 235, 0.35);
}

.box-nontls {
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.box-grpc {
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.box-ws {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.box-file {
  background: rgba(107, 114, 128, 0.18);
  border: 1px solid rgba(107, 114, 128, 0.35);
}

/* =========================
   SERVICE CARDS (dark variant)
   ========================= */
.service-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 18px 18px 20px;
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.22), transparent 55%),
              linear-gradient(145deg, #020617, #020617 55%, #020617);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
  color: #e5e7eb;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.25), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.9);
  border-color: rgba(129, 140, 248, 0.7);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 6px;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(59, 130, 246, 0.1);
  color: #e5e7eb;
  margin-bottom: 10px;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin: 16px 0 18px;
  font-size: 13px;
}

.service-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 4px;
  color: #e5e7eb;
}

.service-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  color: #4ac9ff;
  font-weight: bold;
}

/* wrapper tombol */
.service-actions {
  display: flex;
  margin-top: 16px;
  gap: 10px;
}

/* style tombol kecil */
.service-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: 0.15s ease;
}

/* warna create */
.service-btn.create {
  background: linear-gradient(90deg, #2563eb, #4f46e5);
}

/* warna renew */
.service-btn.renew {
  background: linear-gradient(90deg, #1d4ed8, #22c55e);
}

/* hover kecil */
.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

/* warna aksen per layanan */
.service-ssh .service-badge { background:#6366f1; }
.service-vmess .service-badge { background:#22c55e; }
.service-vless .service-badge { background:#f97316; }
.service-trojan .service-badge { background:#ec4899; }

.service-vmess .service-features li::before { color:#22c55e; }
.service-vless .service-features li::before { color:#f97316; }
.service-trojan .service-features li::before { color:#ec4899; }

@media (max-width: 480px) {
  .service-card {
    padding: 16px 14px 18px;
  }
  .service-actions {
    gap: 8px;
  }
}

/* ===== HAMBURGER MENU (MOBILE) ===== */
.btn-menu {
  width: 34px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  padding: 0 6px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.btn-menu span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* NAV open mobile */
.app-nav.open {
  display: flex;
}

/* Override untuk layar kecil */
@media (max-width: 768px) {
  .btn-menu {
    display: inline-flex;
  }

  .app-nav {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    display: none;
  }

  .app-nav.open {
    display: flex;
  }

  .nav-btn {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }
}

/* ======================================
   STATUS CARD – versi glossy
====================================== */
.status-card {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, #233b7a 0, #050816 55%, #050816 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.status-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(110, 162, 255, 0.25), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.status-card h3 {
  position: relative;
  margin-bottom: 14px;
}

.status-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}

.status-item {
  background: rgba(2, 6, 23, 0.55);
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.status-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 4px;
}

.status-value {
  font-weight: 600;
  font-size: 14px;
  color: #f9fafb;
}

.badge-level {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ecfdf5;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.25);
}

/* <<< FIX ALIGN TOTAL AKUN >>> */
.status-extra {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 6px;
  font-size: 13px;
}

.status-extra-label {
  color: #e5e7eb;
}

.status-extra-value {
  font-weight: 600;
  color: #fbbf24;
  min-width: 28px;
  text-align: left;
}
.logo-dot {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 25% 25%, #1e293b, #0f172a);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 0 26px rgba(59, 130, 246, 0.9);

  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #bfdbfe;           /* warna X */
}
