﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #11141A;
  --card-bg: #1A1E26;
  --card2: #242933;
  --input-bg: #1A1E26;
  --green: #eab308;
  --green-glow: rgba(234,179,8,0.3);
  --green-dark: #ca8a04;
  --gray: #6b7280;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --border: #2a2a2a;
  --radius: 14px;
  --radius-sm: 10px;
}

html, body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ─── LAYOUT ─── */
.page-center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 20px;
}

.app-shell {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  position: relative;
}

/* ─── AUTH CARD ─── */
.auth-card {
  background: #181818;
  border-radius: 22px;
  padding: 36px 30px 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.auth-card h1 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.auth-card .subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ─── TAB TOGGLE ─── */
.tab-toggle {
  display: flex;
  background: #0e0e0e;
  border-radius: 50px;
  padding: 5px;
  gap: 4px;
  margin-bottom: 22px;
  border: 1px solid var(--border);
}

.tab-toggle .tab-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  transition: all 0.25s;
}

.tab-toggle .tab-btn.active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 18px var(--green-glow);
}

/* ─── INPUTS ─── */
.input-group {
  display: flex;
  align-items: center;
  background: var(--input-bg);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 12px;
  gap: 12px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.input-group:focus-within {
  border-color: var(--green);
}

.input-group .icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.input-group input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}

.input-group input::placeholder { color: var(--gray); }

.input-group .eye-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #4b9be0;
  font-size: 18px;
  padding: 0;
  line-height: 1;
}

/* ─── BUTTONS ─── */
.btn-green {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 0 24px var(--green-glow);
  transition: all 0.2s;
  margin-top: 4px;
}

.btn-green:hover {
  background: var(--green-dark);
  box-shadow: 0 0 32px rgba(234,179,8,0.5);
  transform: translateY(-1px);
}

.btn-green:active { transform: translateY(0); }

/* ─── AUTH FOOTER ─── */
.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

.auth-footer a, .auth-footer .link {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.forgot-link {
  text-align: right;
  margin-top: -4px;
  margin-bottom: 16px;
}

.forgot-link a {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* ─── TOP NAV BAR ─── */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar .logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-crown { font-size: 18px; }

.top-bar .balance-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.balance-chip {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.balance-chip .rupee { color: var(--muted); font-size: 13px; font-weight: 500; }

.add-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px var(--green-glow);
  transition: all 0.2s;
}

.add-btn:hover { background: var(--green-dark); }

.avatar-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ef4444);
  border: 2px solid var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ─── SCROLL CONTENT ─── */
.page-content {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 80px;
}

.page-content::-webkit-scrollbar { width: 0; }

/* ─── BOTTOM NAV ─── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 0 14px;
  z-index: 100;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: var(--gray);
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  min-width: 60px;
}

.nav-item .nav-icon { font-size: 22px; line-height: 1; }
.nav-item img.svg-icon { width: 24px; height: 24px; object-fit: contain; filter: brightness(0) invert(0.45); transition: filter 0.2s; }
.nav-item.active img.svg-icon { filter: invert(75%) sepia(90%) saturate(500%) hue-rotate(5deg) brightness(1.1); }
.nav-item:hover img.svg-icon { filter: brightness(0) invert(0.75); }

.nav-item.active { color: var(--green); }
.nav-item:hover { color: var(--text); }

/* ─── BANNER ─── */
.banner {
  margin: 0;
  background: linear-gradient(135deg, #1a0030, #2d0060, #000);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  min-height: 160px;
}

.banner-text {
  z-index: 2;
}

.banner-text h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}

.banner-text h2 .lucky { color: #a78bfa; }
.banner-text h2 .jet { color: var(--green); }

.banner-mascot {
  font-size: 80px;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(167,139,250,0.5));
}

/* ─── SECTION HEADING ─── */
.section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 16px 12px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-head .dot { color: var(--green); font-size: 12px; }

/* ─── GAMES GRID ─── */
.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 12px;
}

.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1 / 0.85;
  transition: transform 0.2s;
}

.game-card:hover { transform: scale(1.03); }

.game-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  position: relative;
}

.game-thumb.aviator { background: linear-gradient(135deg, #7f1d1d, #dc2626, #991b1b); }
.game-thumb.luckyjet { background: linear-gradient(135deg, #1e1b4b, #4c1d95, #6d28d9); }
.game-thumb.mines { background: linear-gradient(135deg, #1c1300, #78350f, #451a03); }
.game-thumb.towerrush { background: linear-gradient(135deg, #0c4a6e, #0369a1, #0284c7); }
.game-thumb.chickenroad { background: linear-gradient(135deg, #14532d, #b45309, #86efac); }

.game-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-label span {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.game-label .play-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  box-shadow: 0 0 10px var(--green-glow);
}

.hot-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ef4444;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* ─── GAME INNER VISUAL ─── */
.game-inner-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding-bottom: 30px;
}

.game-big-emoji { font-size: 44px; }
.game-title-text {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ─── WALLET ─── */
.wallet-balance-card {
  margin: 14px 12px;
  background: linear-gradient(135deg, var(--green), #ca8a04);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wb-left .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}

.wb-left .amount {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.wb-left .amount .rupee-sym { font-size: 24px; font-weight: 700; }

.wb-right .wallet-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.action-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 12px 20px;
}

.action-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.action-card:hover { border-color: var(--green); background: #1c1c1c; }

.action-icon {
  font-size: 32px;
}

.action-card span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 12px;
}

.section-title-row h3 { font-size: 16px; font-weight: 700; }
.section-title-row .view-all { color: var(--green); font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; }

.empty-box {
  margin: 0 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ─── SUPPORT ─── */
.support-header {
  background: var(--card-bg);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}

.support-avatar {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  flex-shrink: 0;
}

.support-avatar .online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #eab308;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
}

.support-info h3 { font-size: 15px; font-weight: 700; }
.support-info .online { color: var(--green); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.chat-area {
  flex: 1;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
}

.chat-bubble {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 4px 14px 14px 14px;
  padding: 14px 16px;
  max-width: 85%;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.lang-buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 14px 90px;
}

.lang-btn {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.lang-btn:hover { border-color: var(--green); background: #232323; color: var(--green); }
.lang-btn.selected { border-color: var(--green); background: rgba(234,179,8,0.08); color: var(--green); }

/* ─── FAB ─── */
.fab {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--green-glow);
  z-index: 200;
  transition: all 0.2s;
  border: none;
}

.fab:hover { background: var(--green-dark); transform: scale(1.05); }

/* ─── TICKER ─── */
.ticker {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 8px 14px;
  overflow: hidden;
  position: relative;
}

.ticker-inner {
  display: flex;
  gap: 32px;
  animation: scroll-left 20s linear infinite;
  white-space: nowrap;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-text {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 480px) {
  .auth-card { padding: 28px 20px 24px; border-radius: 18px; }
  .auth-card h1 { font-size: 24px; }
}

/* ─── ALERTS ─── */
.alert-error {
  background: rgba(127,29,29,0.25);
  border: 1px solid #7f1d1d;
  color: #fca5a5;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

/* ─── AWESOME TOAST POPUP ─── */
.toast-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.toast-overlay.show { opacity: 1; pointer-events: auto; }

.toast-modal {
  background: #181818;
  border-radius: 16px;
  padding: 30px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
  min-width: 280px;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.toast-overlay.show .toast-modal { transform: scale(1); }

.toast-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900;
  color: #fff;
}

.toast-modal.error { border-top: 3px solid #ef4444; }
.toast-modal.error .toast-icon { background: #ef4444; }

.toast-modal.success { border-top: 3px solid #00c853; }
.toast-modal.success .toast-icon { background: #00c853; }

.toast-text { color: #fff; font-size: 16px; font-weight: 700; letter-spacing: 0.5px; }

/* ─── PREMIUM OVERHAUL ─── */
.premium-top-bar {
  background: repeating-linear-gradient(-45deg, #111, #111 4px, #0a0a0a 4px, #0a0a0a 8px);
  padding: 12px 16px;
  border-bottom: 1px solid #1f1f1f;
}
.header-bal-chip {
  background: var(--bg);
  border: 1px solid #1f1f1f;
  border-radius: 50px;
  padding: 4px 6px 4px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.add-mini-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eab308;
  color: #000;
  border: none;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 10px rgba(234,179,8,0.4);
}
.header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0f766e;
  border: 2px solid #2dd4bf;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-left: 8px;
}

/* Profile Specific */
.premium-card {
  margin: 16px;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #1f1f1f;
  display: flex;
}
.profile-user-card { align-items: center; gap: 16px; }
.prof-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #d946ef, #7e22ce);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #eab308;
  font-size: 26px;
  border-color: #a855f7;
  box-shadow: 0 0 15px rgba(168,85,247,0.3);
}
.prof-info h2 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.prof-info p { font-size: 12px; font-weight: 600; color: #6b7280; letter-spacing: 0.5px; }

.prof-bal-card {
  margin: 16px; background: #0c0f0c;
  border: 1px solid #eab308;
  border-radius: 14px; padding: 20px 16px;
  box-shadow: 0 0 15px rgba(234,179,8,0.15);
  position: relative;
}
.prof-bal-label { font-size: 11px; font-weight: 800; color: #9ca3af; letter-spacing: 0.5px; text-transform: uppercase; }
.prof-bal-amount { font-size: 38px; font-weight: 900; color: #fff; margin-top: 4px; display: flex; align-items: center; gap: 4px; text-shadow: 0 0 10px rgba(255,255,255,0.1); }
.prof-bal-amount .r-sym { font-size: 22px; color: #eab308; }
.prof-bal-wallet-icon { position: absolute; top: 20px; right: 20px; font-size: 22px; opacity: 0.8; }

.prof-btn-row { display: flex; gap: 12px; margin-top: 20px; }
.p-btn {
  flex: 1; padding: 12px; border-radius: 10px; border: none; font-size: 14px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.2s; text-decoration: none;
}
.btn-dep { background: #eab308; color: #fff; box-shadow: 0 0 12px rgba(234,179,8,0.2); }
.btn-with { background: var(--bg); color: #ef4444; border: 1px solid #1f1f1f; }
.btn-with:hover { border-color: #ef4444; }

.prof-support-code { margin: 16px; background: var(--card-bg); border: 1px solid #1f1f1f; border-radius: 12px; padding: 16px; display: flex; align-items: center; justify-content: space-between; }
.psc-left { display: flex; align-items: center; gap: 12px; }
.ps-icon { width: 44px; height: 44px; background: #262626; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; border: 1px solid #333; }
.psc-text h3 { font-size: 22px; font-weight: 900; color: #eab308; letter-spacing: 1px; }
.psc-text p { font-size: 10px; font-weight: 500; color: #6b7280; }
.psc-btn { background: var(--bg); color: #fff; border: 1px solid #333; padding: 6px 14px; border-radius: 6px; font-size: 11px; font-weight: 800; cursor: pointer; letter-spacing: 0.5px; transition: 0.2s; }
.psc-btn:hover { border-color: #555; }

.sec-title { padding: 0 16px; font-size: 11px; font-weight: 800; color: #9ca3af; letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }

.prof-list-card { background: var(--card-bg); border: 1px solid #1f1f1f; border-radius: 12px; margin: 16px; }
.pl-item { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid #1f1f1f; text-decoration: none; transition: 0.2s; }
.pl-item:last-child { border-bottom: none; }
.pl-item:hover { background: #141414; }
.pl-left { display: flex; align-items: center; gap: 16px; }
.pl-icon { font-size: 24px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.pl-text h4 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.pl-text p { font-size: 11px; font-weight: 500; color: #6b7280; }
.pl-arrow { font-size: 12px; color: #4b5563; font-weight: 900; }
.pl-item:nth-child(1) .pl-arrow, .pl-item:nth-child(2) .pl-arrow, .pl-item:nth-child(3) .pl-arrow, .pl-item:nth-child(4) .pl-arrow { color: #ef4444; }

.logout-btn-box { margin: 16px; margin-bottom: 28px; }
.logout-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--card-bg); border: 1px solid #1f1f1f; padding: 18px; border-radius: 12px; color: #ef4444; font-size: 14px; font-weight: 800; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: 0.2s; }
.logout-btn:hover { border-color: #ef4444; background: #1a0f0f; }

/* Wallet Specific */
.solid-wallet-card { margin: 16px; background: #eab308; border-radius: 14px; padding: 20px 16px; box-shadow: 0 8px 25px rgba(234,179,8,0.3); position: relative; }
.sw-label { font-size: 11px; font-weight: 800; color: rgba(0,0,0,0.6); text-transform: uppercase; letter-spacing: 0.5px; }
.sw-amount { font-size: 38px; font-weight: 900; color: #fff; display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.sw-amount .r-sym { font-size: 22px; color: rgba(255,255,255,0.8); }
.sw-icon { position: absolute; right: 20px; top: 20px; width: 42px; height: 32px; background: #1f2937; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }

.wallet-dual-btns { display: flex; gap: 12px; margin: 16px; }
.wdb-btn { flex: 1; background: var(--card-bg); border: 1px solid #1f1f1f; border-radius: 12px; padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-decoration: none; transition: 0.2s; }
.wdb-btn.btn-w { border-color: #1f1f1f; }
.wdb-btn:hover { border-color: #eab308; background: #141414; }
.wdb-icon { width: 44px; height: 44px; border: 1px solid #eab308; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; background: var(--bg); box-shadow: 0 0 15px rgba(234,179,8,0.1); }
.btn-w .wdb-icon { border-color: #ef4444; box-shadow: 0 0 15px rgba(239,68,68,0.1); color: #ef4444; }
.wdb-text { font-size: 13px; font-weight: 800; color: #fff; }

.section-title-d { padding: 0 16px; display: flex; justify-content: space-between; align-items: center; }
.section-title-d h3 { font-size: 14px; font-weight: 800; color: #fff; }
.section-title-d span { font-size: 11px; font-weight: 800; color: #eab308; cursor: pointer; text-transform: uppercase; }

.wallet-empty { background: var(--card-bg); border: 1px solid #1f1f1f; margin: 12px 16px; padding: 24px; border-radius: 12px; text-align: center; color: #6b7280; font-size: 13px; font-weight: 600; }

/* Support Specific */
.support-head-box { padding: 16px; background: var(--card-bg); border-bottom: 1px solid #1f1f1f; display: flex; align-items: center; gap: 14px; }
.sh-icon { width: 44px; height: 44px; border-radius: 50%; background: #eab308; display: flex; align-items: center; justify-content: center; font-size: 20px; position: relative; border: 2px solid #000; }
.sh-dot { position: absolute; right: 0; bottom: 0; width: 12px; height: 12px; background: #fff; border-radius: 50%; border: 3px solid #eab308; }
/* ─── RESPONSIVE ─── */
@media (max-width: 480px) {
  .auth-card { padding: 28px 20px 24px; border-radius: 18px; }
  .auth-card h1 { font-size: 24px; }
}

/* ─── ALERTS ─── */
.alert-error {
  background: rgba(127,29,29,0.25);
  border: 1px solid #7f1d1d;
  color: #fca5a5;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

/* ─── AWESOME TOAST POPUP ─── */
.toast-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.toast-overlay.show { opacity: 1; pointer-events: auto; }

.toast-modal {
  background: #181818;
  border-radius: 16px;
  padding: 30px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
  min-width: 280px;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.toast-overlay.show .toast-modal { transform: scale(1); }

.toast-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900;
  color: #fff;
}

.toast-modal.error { border-top: 3px solid #ef4444; }
.toast-modal.error .toast-icon { background: #ef4444; }

.toast-modal.success { border-top: 3px solid #00c853; }
.toast-modal.success .toast-icon { background: #00c853; }

.toast-text { color: #fff; font-size: 16px; font-weight: 700; letter-spacing: 0.5px; }

/* ─── PREMIUM OVERHAUL ─── */
.premium-top-bar {
  background: repeating-linear-gradient(-45deg, #111, #111 4px, #0a0a0a 4px, #0a0a0a 8px);
  padding: 12px 16px;
  border-bottom: 1px solid #1f1f1f;
}
.header-bal-chip {
  background: var(--bg);
  border: 1px solid #1f1f1f;
  border-radius: 50px;
  padding: 4px 6px 4px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.add-mini-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eab308;
  color: #000;
  border: none;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 10px rgba(234,179,8,0.4);
}
.header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0f766e;
  border: 2px solid #2dd4bf;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-left: 8px;
}

/* Profile Specific */
.premium-card {
  margin: 16px;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #1f1f1f;
  display: flex;
}
.profile-user-card { align-items: center; gap: 16px; }
.prof-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #d946ef, #7e22ce);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #eab308;
  font-size: 26px;
  border-color: #a855f7;
  box-shadow: 0 0 15px rgba(168,85,247,0.3);
}
.prof-info h2 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.prof-info p { font-size: 12px; font-weight: 600; color: #6b7280; letter-spacing: 0.5px; }

.prof-bal-card {
  margin: 16px; background: #0c0f0c;
  border: 1px solid #eab308;
  border-radius: 14px; padding: 20px 16px;
  box-shadow: 0 0 15px rgba(234,179,8,0.15);
  position: relative;
}
.prof-bal-label { font-size: 11px; font-weight: 800; color: #9ca3af; letter-spacing: 0.5px; text-transform: uppercase; }
.prof-bal-amount { font-size: 38px; font-weight: 900; color: #fff; margin-top: 4px; display: flex; align-items: center; gap: 4px; text-shadow: 0 0 10px rgba(255,255,255,0.1); }
.prof-bal-amount .r-sym { font-size: 22px; color: #eab308; }
.prof-bal-wallet-icon { position: absolute; top: 20px; right: 20px; font-size: 22px; opacity: 0.8; }

.prof-btn-row { display: flex; gap: 12px; margin-top: 20px; }
.p-btn {
  flex: 1; padding: 12px; border-radius: 10px; border: none; font-size: 14px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.2s; text-decoration: none;
}
.btn-dep { background: #eab308; color: #fff; box-shadow: 0 0 12px rgba(234,179,8,0.2); }
.btn-with { background: var(--bg); color: #ef4444; border: 1px solid #1f1f1f; }
.btn-with:hover { border-color: #ef4444; }

.prof-support-code { margin: 16px; background: var(--card-bg); border: 1px solid #1f1f1f; border-radius: 12px; padding: 16px; display: flex; align-items: center; justify-content: space-between; }
.psc-left { display: flex; align-items: center; gap: 12px; }
.ps-icon { width: 44px; height: 44px; background: #262626; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; border: 1px solid #333; }
.psc-text h3 { font-size: 22px; font-weight: 900; color: #eab308; letter-spacing: 1px; }
.psc-text p { font-size: 10px; font-weight: 500; color: #6b7280; }
.psc-btn { background: var(--bg); color: #fff; border: 1px solid #333; padding: 6px 14px; border-radius: 6px; font-size: 11px; font-weight: 800; cursor: pointer; letter-spacing: 0.5px; transition: 0.2s; }
.psc-btn:hover { border-color: #555; }

.sec-title { padding: 0 16px; font-size: 11px; font-weight: 800; color: #9ca3af; letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }

.prof-list-card { background: var(--card-bg); border: 1px solid #1f1f1f; border-radius: 12px; margin: 16px; }
.pl-item { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid #1f1f1f; text-decoration: none; transition: 0.2s; }
.pl-item:last-child { border-bottom: none; }
.pl-item:hover { background: #141414; }
.pl-left { display: flex; align-items: center; gap: 16px; }
.pl-icon { font-size: 24px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.pl-text h4 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.pl-text p { font-size: 11px; font-weight: 500; color: #6b7280; }
.pl-arrow { font-size: 12px; color: #4b5563; font-weight: 900; }
.pl-item:nth-child(1) .pl-arrow, .pl-item:nth-child(2) .pl-arrow, .pl-item:nth-child(3) .pl-arrow, .pl-item:nth-child(4) .pl-arrow { color: #ef4444; }

.logout-btn-box { margin: 16px; margin-bottom: 28px; }
.logout-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--card-bg); border: 1px solid #1f1f1f; padding: 18px; border-radius: 12px; color: #ef4444; font-size: 14px; font-weight: 800; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: 0.2s; }
.logout-btn:hover { border-color: #ef4444; background: #1a0f0f; }

/* Wallet Specific */
.solid-wallet-card { margin: 16px; background: #eab308; border-radius: 14px; padding: 20px 16px; box-shadow: 0 8px 25px rgba(234,179,8,0.3); position: relative; }
.sw-label { font-size: 11px; font-weight: 800; color: rgba(0,0,0,0.6); text-transform: uppercase; letter-spacing: 0.5px; }
.sw-amount { font-size: 38px; font-weight: 900; color: #fff; display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.sw-amount .r-sym { font-size: 22px; color: rgba(255,255,255,0.8); }
.sw-icon { position: absolute; right: 20px; top: 20px; width: 42px; height: 32px; background: #1f2937; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }

.wallet-dual-btns { display: flex; gap: 12px; margin: 16px; }
.wdb-btn { flex: 1; background: var(--card-bg); border: 1px solid #1f1f1f; border-radius: 12px; padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-decoration: none; transition: 0.2s; }
.wdb-btn.btn-w { border-color: #1f1f1f; }
.wdb-btn:hover { border-color: #eab308; background: #141414; }
.wdb-icon { width: 44px; height: 44px; border: 1px solid #eab308; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; background: var(--bg); box-shadow: 0 0 15px rgba(234,179,8,0.1); }
.btn-w .wdb-icon { border-color: #ef4444; box-shadow: 0 0 15px rgba(239,68,68,0.1); color: #ef4444; }
.wdb-text { font-size: 13px; font-weight: 800; color: #fff; }

.section-title-d { padding: 0 16px; display: flex; justify-content: space-between; align-items: center; }
.section-title-d h3 { font-size: 14px; font-weight: 800; color: #fff; }
.section-title-d span { font-size: 11px; font-weight: 800; color: #eab308; cursor: pointer; text-transform: uppercase; }

.wallet-empty { background: var(--card-bg); border: 1px solid #1f1f1f; margin: 12px 16px; padding: 24px; border-radius: 12px; text-align: center; color: #6b7280; font-size: 13px; font-weight: 600; }

/* Support Specific */
.support-head-box { padding: 16px; background: var(--card-bg); border-bottom: 1px solid #1f1f1f; display: flex; align-items: center; gap: 14px; }
.sh-icon { width: 44px; height: 44px; border-radius: 50%; background: #eab308; display: flex; align-items: center; justify-content: center; font-size: 20px; position: relative; border: 2px solid #000; }
.sh-dot { position: absolute; right: 0; bottom: 0; width: 12px; height: 12px; background: #fff; border-radius: 50%; border: 3px solid #eab308; }
.sh-text h3 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.sh-text p { font-size: 10px; font-weight: 800; color: #eab308; letter-spacing: 0.5px; text-transform: uppercase; }

.lang-prompt { margin: 24px 16px 16px; background: #1f2937; padding: 16px 20px; border-radius: 12px; font-size: 13px; font-weight: 700; color: #fff; line-height: 1.5; border: 1px solid #374151; display: inline-block; }
.lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px 40px; }
.lang-btn.premium { background: var(--card-bg); border: 1px solid #1f1f1f; padding: 14px; border-radius: 8px; color: #fff; font-size: 13px; font-weight: 800; display: flex; justify-content: center; align-items: center; cursor: pointer; transition: 0.2s; }
.lang-btn.premium:hover { border-color: #374151; background: #1a1a1a; }

/* ─── ADMIN MOBILE RESPONSIVE ─── */
@media (max-width: 768px) {
  .admin-layout { flex-direction: column !important; }
  
  .admin-layout .sidebar { 
    position: static !important; 
    width: 100% !important; 
    height: auto !important; 
    border-right: none !important; 
    border-bottom: 1px solid #1e1e1e !important; 
  }
  
  .admin-layout .sidebar-item span { display: inline !important; }
  
  .admin-layout .sidebar-menu { 
    display: flex !important; 
    flex-direction: row !important; 
    overflow-x: auto !important; 
    white-space: nowrap !important; 
    padding: 10px !important; 
  }
  
  .admin-layout .sidebar-item { 
    justify-content: flex-start !important; 
    padding: 10px 16px !important; 
    border-right: none !important; 
    border-bottom: 2px solid transparent !important; 
  }
  
  .admin-layout .sidebar-item.active { 
    border-right: none !important; 
    border-bottom: 2px solid #eab308 !important; 
    background: transparent !important; 
  }
  
  .admin-layout .sidebar-logo .logo-text, 
  .admin-layout .sidebar-logo span { display: inline-block !important; }
  
  .admin-layout .sidebar-logo { 
    padding: 16px !important; 
    justify-content: flex-start !important; 
    font-size: 22px !important; 
    display: flex !important; 
  }
  
  .admin-layout .sidebar-bottom { 
    display: flex !important; 
    justify-content: space-between !important; 
    align-items: center !important; 
    padding: 12px 16px !important; 
    border-top: none !important; 
    border-bottom: 1px solid #1e1e1e !important; 
  }
  .admin-layout .sidebar-bottom div { display: block !important; text-align: left !important; }
  .admin-layout .sidebar-bottom a { margin-top: 0 !important; font-size: 13px !important; }
  
  .admin-main { margin-left: 0 !important; padding: 16px !important; }
  .admin-page-title { font-size: 20px !important; flex-wrap: wrap !important; }
  .admin-page-sub { font-size: 12px !important; margin-bottom: 20px !important; }
  
  .stat-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; margin-bottom: 20px !important; }
  .stat-card .sc-val { font-size: 22px !important; }
  .stat-card .sc-icon { font-size: 28px !important; right: 10px !important; }
  
  .detail-grid { grid-template-columns: 1fr !important; gap: 16px !important; margin-bottom: 20px !important; }
  
  .admin-table-wrap, .table-wrap {
    overflow-x: auto !important;
    white-space: nowrap !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
  }
  
  .admin-table-head, .table-head { flex-direction: column !important; align-items: flex-start !important; gap: 10px !important; padding: 14px 16px !important; }
  
  .filter-bar { flex-direction: column !important; gap: 10px !important; }
  .filter-bar input, .filter-bar select, .filter-bar button { width: 100% !important; box-sizing: border-box !important; }
  
  th, td { padding: 10px 12px !important; font-size: 12px !important; }
  .btn-sm { font-size: 11px !important; padding: 4px 10px !important; }
}
/* NEW ICONS STYLES */
.svg-icon { width: 24px; height: 24px; object-fit: contain; filter: invert(0.6) sepia(0) saturate(1) hue-rotate(0deg); transition: filter 0.2s; }
.nav-item.active .svg-icon { filter: invert(0.8) sepia(1) saturate(5) hue-rotate(20deg) brightness(1.2); }
.svg-icon-lg { width: 36px; height: 36px; object-fit: contain; }
.svg-icon-md { width: 28px; height: 28px; object-fit: contain; }
.svg-icon-sm { width: 20px; height: 20px; object-fit: contain; }
.prof-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ps-icon img { width: 24px; height: 24px; }
.wdb-icon img { width: 24px; height: 24px; }
.sw-icon img { width: 32px; height: 32px; }
.logo img { height: 28px; object-fit: contain; margin-right: 6px; }

/* HEADER NEW STYLES */
.balance-area { display: flex; align-items: center; gap: 4px; height: 44px; }
.header-bal-chip { 
    background: #111; border: 1px solid #333; border-radius: 30px; 
    height: 38px; display: flex; align-items: center; padding: 0; padding-left: 14px; gap: 10px; 
}
.header-bal-chip span { color: #fff; font-size: 16px; font-weight: 900; letter-spacing: 0.5px; }
.add-mini-btn { 
    background: #eab308; box-shadow: inset 0 2px 0 rgba(255,255,255,0.4), 0 0 12px rgba(234,179,8,0.5); 
    border: none; border-radius: 50%; color: #fff; 
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; 
    font-size: 28px; font-weight: 500; cursor: pointer; line-height: 1; margin: 0; padding: 0; padding-bottom: 2px;
}
.header-avatar { 
    border: 3px solid #eab308; border-radius: 50%; width: 46px; height: 46px; 
    overflow: hidden; display: flex; align-items: center; justify-content: center; 
    background: #000; padding: 0; margin-left: 8px; box-shadow: 0 0 8px rgba(234,179,8,0.3); font-size: 0;
}
.header-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* PROFILE ICONS */
.pl-icon { background: none; -webkit-text-fill-color: initial;  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 24px; filter: none !important; }
.icon-trans { color: #ef4444; }
.icon-sec { color: #eab308; }
.icon-ref { color: #ef4444; }
.icon-sup { color: #3b82f6; }
