* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

:root {
  --bg-1: #08111f;
  --bg-2: #0d1728;
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #eef4ff;
  --muted: #aab8d1;
  --gold: #ffd76a;
  --gold-2: #fff0ae;
  --green: #56f0a9;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --red1: #ff6678;
  --red2: #d30000;
  --red3: #7b0000;
}

html, body {
  min-height: 100dvh;
  background:
    radial-gradient(circle at top left, rgba(255, 87, 87, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 196, 0, 0.12), transparent 22%),
    radial-gradient(circle at bottom center, rgba(64, 150, 255, 0.12), transparent 30%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
}

body {
  color: var(--text);
  padding: 20px;
  overflow-x: hidden;
  position: relative;
}

body.flash-jackpot::before,
body.flash-maxwin::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  animation: screenFlash 0.8s ease;
}

body.flash-jackpot::before {
  background: radial-gradient(circle, rgba(255,215,106,0.22), rgba(255,215,106,0.03) 45%, transparent 70%);
}

body.flash-maxwin::before {
  background: radial-gradient(circle, rgba(201,255,77,0.22), rgba(201,255,77,0.03) 45%, transparent 70%);
}

.dashboard {
  max-width: 1380px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.topbar {
  padding: 16px 24px;
  background:
    linear-gradient(90deg, rgba(255, 77, 94, 0.22), rgba(255, 184, 0, 0.10)),
    rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.topbar-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.28));
  border-radius: 12px;
}

.topbar-text { min-width: 0; }

.topbar-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-shadow: 0 0 12px rgba(255,255,255,0.08);
}

.topbar-sub {
  margin-top: 4px;
  font-size: 12px;
  color: #cbd7ec;
}

.wib-clock {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 10px 14px;
  min-width: 170px;
}

.wib-label {
  font-size: 11px;
  color: #aab8d1;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.wib-time {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.wib-date {
  margin-top: 4px;
  font-size: 11px;
  color: #dce6f7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px;
}

.stat-card {
  border-radius: 18px;
  padding: 16px;
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}

.stat-label, .stat-value, .stat-sub { position: relative; z-index: 1; }
.stat-label { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.stat-value { font-size: 24px; font-weight: 700; color: #fff; line-height: 1.2; }
.stat-value.red { color: #ff8792; }
.stat-value.gold { color: var(--gold); }
.stat-sub { margin-top: 6px; font-size: 11px; color: #8ea0bf; }

.control-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 16px 16px;
  align-items: center;
  justify-content: space-between;
}

.control-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.control-btn, .filter-btn {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.control-btn:hover, .filter-btn:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.control-btn.active, .filter-btn.active {
  background: linear-gradient(90deg, rgba(255, 207, 87, 0.22), rgba(255, 102, 120, 0.16));
  border-color: rgba(255, 207, 87, 0.30);
  box-shadow: 0 0 16px rgba(255, 207, 87, 0.08);
}

.table-wrap { padding: 0 16px 16px; }

.table-shell {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}

.table-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 50%);
}

.table-scroll {
  max-height: 1900px;
  overflow-y: auto;
  overflow-x: auto;
  position: relative;
  scroll-behavior: smooth;
}

.table-scroll::-webkit-scrollbar { width: 9px; height: 9px; }
.table-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.16); border-radius: 999px; }
.table-scroll::-webkit-scrollbar-track { background: transparent; }

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

col.col-no-width { width: 20px; }
col.col-user-width { width: 70px; }
col.col-amount-width { width: 100px; }
col.col-time-width { width: 70px; }
col.col-status-width { width: 90px; }
col.col-spin-width { width: 170px; }
col.col-game-width { width: 180px; }

thead th {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 11px 10px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(22, 34, 58, 0.98), rgba(12, 22, 40, 0.98));
  border-bottom: 1px solid rgba(255,255,255,0.10);
  white-space: nowrap;
}

thead th.col-amount {
  background: linear-gradient(180deg, rgba(68, 75, 92, 0.98), rgba(52, 59, 76, 0.98));
  color: #ffffff;
}

tbody td,
tfoot td {
  padding: 10px 10px;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

tbody tr {
  background: transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}

tbody tr:hover { background: rgba(255,255,255,0.03); }
tbody tr.row-new { animation: rowSlideIn 0.7s ease; }
tbody tr.row-jackpot { animation: jackpotRowGlow 1s ease; }
tbody tr.row-maxwin { animation: maxwinRowGlow 1s ease; }

.col-no {
  text-align: center;
  color: #b7c6dd;
  font-weight: 700;
  padding-left: 0;
  padding-right: 0;
  font-size: 13px;
}

.col-user {
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
}

.col-amount {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  font-size: 13px;
}

.amount-normal { color: #ff8995; }
.amount-gold { color: var(--gold); text-shadow: 0 0 12px rgba(255, 215, 106, 0.18); }
.amount-flash-text { animation: amountTextFlash 1.2s ease; }

.col-time {
  color: #d4e0f1;
  font-variant-numeric: tabular-nums;
}

.col-spin {
  font-size: 12px;
  color: #dfe9f8;
  font-weight: 700;
}

.col-game {
  font-size: 12px;
  font-weight: 700;
}

.time-main {
  display: block;
  font-weight: 700;
  color: #f5f8ff;
  font-size: 12px;
  line-height: 1.1;
}

.time-sub {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: #8fa3bf;
  line-height: 1.1;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}

.badge-jackpot { color: #4d3700; background: linear-gradient(90deg, #ffcb45, #ffd76a, #fff0ae); box-shadow: 0 0 16px rgba(255, 215, 106, 0.22); }
.badge-hot { color: #fff; background: linear-gradient(90deg, #ff7a3d, #ff4d5e); box-shadow: 0 0 14px rgba(255, 100, 92, 0.18); }
.badge-onfire { color: #fff; background: linear-gradient(90deg, #ff4d5e, #ff00aa); box-shadow: 0 0 14px rgba(255, 70, 130, 0.18); }
.badge-maxwin { color: #1d2b00; background: linear-gradient(90deg, #d4ff66, #fbff9d, #c9ff4d); box-shadow: 0 0 16px rgba(201, 255, 77, 0.22); }

.spin-badge {
  display: inline-block;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 11px;
  background: rgba(255,255,255,0.08);
  color: #f3f7ff;
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 11px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-badge {
  display: inline-block;
  max-width: 100%;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  color: #f3f7ff;
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 11px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.game-pragmatic { background: rgba(255, 215, 106, 0.12); border-color: rgba(255, 215, 106, 0.20); color: #ffe08a; }
.game-pg { background: rgba(120, 190, 255, 0.12); border-color: rgba(120, 190, 255, 0.20); color: #b8dbff; }

.crown {
  margin-left: 5px;
  font-size: 14px;
  vertical-align: middle;
}

tfoot td {
  position: sticky;
  bottom: 0;
  z-index: 8;
  background: linear-gradient(180deg, rgba(30, 21, 4, 0.98), rgba(24, 18, 8, 0.98));
  color: #fff;
  font-weight: 700;
  border-top: 1px solid rgba(255,215,106,0.18);
  border-bottom: none;
  padding: 10px 10px;
}

.tfoot-title { color: #ffd76a; }
.tfoot-main { color: #ff8e9a; font-size: 15px; }
.tfoot-sub { color: #e6d7ae; font-size: 12px; }

.mobile-cards-wrap { display: none; padding: 0 12px 12px; }
.mobile-cards { display: grid; gap: 12px; }

.mobile-card {
  position: relative;
  border-radius: 18px;
  padding: 15px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 28px rgba(0,0,0,0.20);
  overflow: hidden;
  animation: mobileCardRise 0.55s ease both;
}

.mobile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 45%);
  pointer-events: none;
}

.mobile-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: cardShine 4.5s linear infinite;
}

.mobile-card.row-jackpot { border-color: rgba(255,215,106,0.30); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 28px rgba(0,0,0,0.20), 0 0 20px rgba(255,215,106,0.14); }
.mobile-card.row-maxwin { border-color: rgba(201,255,77,0.32); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 28px rgba(0,0,0,0.20), 0 0 20px rgba(201,255,77,0.14); }

.mobile-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.mobile-user {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  text-shadow: 0 0 8px rgba(255,255,255,0.05);
}

.mobile-no {
  font-size: 11px;
  color: #9fb1cc;
  font-weight: 800;
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}

.mobile-amount-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.mobile-amount-label { font-size: 10px; color: #98acce; letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 6px; font-weight: 700; }
.mobile-amount { font-size: 24px; font-weight: 900; line-height: 1.15; text-shadow: 0 0 12px rgba(255,255,255,0.03); }

.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.mobile-item, .mobile-full, .mobile-summary-item {
  border-radius: 13px;
  padding: 11px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.mobile-full { position: relative; z-index: 1; margin-top: 2px; }
.mobile-label { font-size: 10px; color: #93a7c5; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.6px; font-weight: 700; }
.mobile-value { font-size: 12px; color: #f3f7ff; font-weight: 800; line-height: 1.45; word-break: break-word; }

.mobile-footer {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.mobile-note { font-size: 12px; color: #ffd76a; font-weight: 800; text-shadow: 0 0 8px rgba(255,215,106,0.08); }

.mobile-summary-card {
  margin-top: 12px;
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(30, 21, 4, 0.95), rgba(24, 18, 8, 0.95));
  border: 1px solid rgba(255,215,106,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 28px rgba(0,0,0,0.20);
}

.mobile-summary-title { font-size: 13px; font-weight: 800; color: #ffd76a; margin-bottom: 10px; letter-spacing: 0.4px; }
.mobile-summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.toast-wrap {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  position: relative;
  min-width: 300px;
  max-width: 420px;
  border-radius: 18px;
  padding: 14px 14px 14px 16px;
  background: rgba(12, 22, 40, 0.82);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  color: #fff;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  animation: toastIn 0.45s ease, toastOut 0.45s ease 4.8s forwards;
  overflow: hidden;
}

.toast.jackpot { border: 1px solid rgba(255,215,106,0.6); box-shadow: 0 16px 40px rgba(0,0,0,0.28), 0 0 22px rgba(255,215,106,0.20); }
.toast.maxwin { border: 1px solid rgba(201,255,77,0.65); box-shadow: 0 16px 40px rgba(0,0,0,0.28), 0 0 22px rgba(201,255,77,0.22); }

.toast::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #ffcf57, #ff6678);
  animation: toastBar 5s linear forwards;
}

.toast-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 207, 87, 0.22), rgba(255, 102, 120, 0.20));
  font-size: 18px;
}

.toast-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.toast-text { font-size: 12px; color: #cdd8ea; line-height: 1.45; }

.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(86, 240, 169, 0.5);
  margin-right: 7px;
  vertical-align: middle;
}

.cta-area { padding: 18px 16px 36px; text-align: center; }

.cta-fomo {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  color: #ffd76a;
  line-height: 1.5;
  text-shadow: 0 0 10px rgba(255,215,106,0.06);
}

.cta-fomo strong { color: #fff; }

.btn-vvip {
  position: relative;
  display: inline-block;
  padding: 18px 44px;
  font-family: 'Cinzel', serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, #ff3b3b 0%, #c70000 45%, #6f0000 100%);
  border: 2px solid #ffd76a;
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(0,0,0,0.45), 0 0 18px rgba(255,85,85,0.20), 0 0 26px rgba(255,215,106,0.18), inset 0 1px 0 rgba(255,255,255,0.28);
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  overflow: hidden;
  transition: all 0.3s ease;
  animation: ctaPulseStrong 1.9s infinite;
}

.btn-vvip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
}

.btn-vvip::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: 0 0 24px rgba(255, 215, 106, 0.38);
  opacity: 0.8;
  pointer-events: none;
}

.btn-vvip:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 26px rgba(255,85,85,0.28), 0 0 36px rgba(255,215,106,0.26);
}

.btn-vvip:hover::before { animation: shimmer 1.1s forwards; }

.cta-note {
  margin-top: 10px;
  font-size: 12px;
  color: #ffcf57;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-shadow: 0 0 10px rgba(255,215,106,0.06);
}

.copyright-footer {
    text-align: center;
    padding: 18px;
    font-size: 12px;
    font-weight: 600;
    color: #b8c7e6;
    letter-spacing: .5px;
}

@keyframes rowSlideIn { 0% { opacity: 0; transform: translateY(-14px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes amountTextFlash { 0% { text-shadow: 0 0 0 rgba(255,255,255,0); transform: scale(1); } 40% { text-shadow: 0 0 14px rgba(255, 215, 106, 0.38); transform: scale(1.03); } 100% { text-shadow: none; transform: scale(1); } }
@keyframes toastIn { from { opacity: 0; transform: translateY(18px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(12px) scale(0.98); } }
@keyframes toastBar { from { width: 100%; } to { width: 0%; } }
@keyframes shimmer { 0% { left: -100%; } 100% { left: 140%; } }
@keyframes jackpotRowGlow { 0% { background: rgba(255, 215, 106, 0.18); } 100% { background: transparent; } }
@keyframes maxwinRowGlow { 0% { background: rgba(201, 255, 77, 0.18); } 100% { background: transparent; } }
@keyframes screenFlash { 0% { opacity: 0; } 30% { opacity: 1; } 100% { opacity: 0; } }
@keyframes mobileCardRise { 0% { opacity: 0; transform: translateY(24px) scale(0.98); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes cardShine { 0% { left: -120%; } 100% { left: 160%; } }
@keyframes ctaPulseStrong {
  0% { box-shadow: 0 14px 38px rgba(0,0,0,0.45), 0 0 18px rgba(255,85,85,0.18), 0 0 24px rgba(255,215,106,0.14), inset 0 1px 0 rgba(255,255,255,0.28); }
  50% { box-shadow: 0 14px 38px rgba(0,0,0,0.45), 0 0 24px rgba(255,85,85,0.28), 0 0 34px rgba(255,215,106,0.24), inset 0 1px 0 rgba(255,255,255,0.28); }
  100% { box-shadow: 0 14px 38px rgba(0,0,0,0.45), 0 0 18px rgba(255,85,85,0.18), 0 0 24px rgba(255,215,106,0.14), inset 0 1px 0 rgba(255,255,255,0.28); }
}

@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  html, body { min-height: 100dvh; }
  body { padding: 0; }
  .dashboard { border-radius: 0; min-height: 100dvh; border-left: none; border-right: none; }
  .topbar { padding: 14px 14px 12px; gap: 10px; }
  .topbar-left { width: 100%; align-items: center; }
  .topbar-logo { width: 50px; height: 50px; }
  .topbar-title { font-size: 18px; line-height: 1.2; }
  .topbar-sub { font-size: 11px; }
  .wib-clock { width: 100%; min-width: unset; align-items: flex-start; padding: 10px 12px; }
  .wib-time { font-size: 18px; }
  .stats-grid { grid-template-columns: 1fr; gap: 10px; padding: 12px; }
  .stat-card { padding: 14px; border-radius: 16px; }
  .stat-label { font-size: 11px; }
  .stat-value { font-size: 21px; }
  .stat-sub { font-size: 10px; }
  .control-bar { padding: 0 12px 12px; gap: 8px; }
  .control-group { gap: 8px; }
  .control-btn, .filter-btn { padding: 10px 12px; font-size: 12px; border-radius: 10px; }
  .filter-btn { min-height: 40px; }
  .table-wrap { display: none; }
  .mobile-cards-wrap { display: block; }
  .badge { min-width: 120px; padding: 10px 16px; font-size: 12px; }
  .game-badge { padding: 9px 14px; font-size: 12px; }
  .toast-wrap { right: 10px; left: 10px; bottom: 96px; }
  .toast { min-width: unset; max-width: 100%; }
  .cta-area {
    position: sticky;
    bottom: 0;
    z-index: 9997;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(8,17,31,0.08), rgba(8,17,31,0.97) 35%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -12px 30px rgba(0,0,0,0.18);
  }
  .cta-fomo { margin-bottom: 10px; font-size: 12px; }
  .btn-vvip { width: 100%; padding: 17px 18px; font-size: 18px; border-radius: 16px; letter-spacing: 1.1px; }
  .cta-note { font-size: 11px; }
}

@media (max-width: 420px) {
  .topbar-title { font-size: 17px; }
  .stat-value { font-size: 19px; }
  .mobile-grid, .mobile-summary-grid { grid-template-columns: 1fr; }
  .mobile-amount { font-size: 21px; }
  .badge { min-width: 110px; padding: 9px 14px; }
}

