*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0c;
  --surface: #141418;
  --surface-2: #1c1c22;
  --red: #ff2d2d;
  --red-dark: #e53935;
  --red-neon: #ff4444;
  --red-glow: rgba(255, 45, 45, 0.55);
  --red-glow-soft: rgba(255, 45, 45, 0.18);
  --text: #f0f0f2;
  --muted: #8a8a96;
  --shadow-dark: #050506;
  --shadow-light: #222228;
  --neo-raised: 5px 5px 12px var(--shadow-dark), -3px -3px 10px var(--shadow-light);
  --neo-raised-sm: 3px 3px 8px var(--shadow-dark), -2px -2px 6px var(--shadow-light);
  --neo-inset: inset 3px 3px 8px var(--shadow-dark), inset -2px -2px 6px var(--shadow-light);
  --neo-pressed: inset 4px 4px 10px var(--shadow-dark), inset -3px -3px 8px var(--shadow-light);
  --neon-border: 1px solid rgba(255, 45, 45, 0.25);
  --radius: 16px;
  --radius-sm: 12px;
}

html, body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--red-neon); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: #ff6b6b; }
img { display: block; max-width: 100%; }

.app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  padding-bottom: 72px;
  background: var(--bg);
}

/* ── Keyframes ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 12px var(--red-glow-soft), 0 0 24px var(--red-glow-soft); }
  50% { box-shadow: 0 0 20px var(--red-glow), 0 0 40px var(--red-glow-soft); }
}

@keyframes floatBtn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes marqueeScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes bannerZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

@keyframes balanceGlow {
  0%, 100% { box-shadow: var(--neo-raised), 0 0 8px var(--red-glow-soft); }
  50% { box-shadow: var(--neo-raised), 0 0 18px var(--red-glow-soft); }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-3px); }
}

.animate-in {
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Header ── */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideDown 0.45s ease forwards;
  border-bottom: var(--neon-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.icon-btn {
  background: var(--surface-2);
  border: var(--neon-border);
  color: var(--text);
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  box-shadow: var(--neo-raised-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.icon-btn:active { box-shadow: var(--neo-pressed); transform: scale(0.96); }

.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  text-decoration: none;
}

.brand-icon { font-size: 20px; animation: iconBounce 2.5s ease-in-out infinite; }

.brand-text { font-size: 14px; letter-spacing: 1px; font-weight: 600; }
.brand-text strong {
  background: linear-gradient(90deg, var(--red), #ff6b6b, var(--red));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  filter: drop-shadow(0 0 8px var(--red-glow-soft));
}

.login-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--red-neon);
  font-size: 13px;
  font-weight: 700;
  background: var(--surface-2);
  border: var(--neon-border);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: var(--neo-raised-sm), 0 0 12px var(--red-glow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--neo-raised-sm), 0 0 20px var(--red-glow);
}

.logout-form { margin: 0; }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 16px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(10,10,12,0.88) 0%, rgba(20,20,24,0.75) 60%, rgba(255,45,45,0.15) 100%),
    url('https://images.unsplash.com/photo-1542751371-adc38448a05e?w=800&h=400&fit=crop') center/cover;
  box-shadow: var(--neo-inset), 0 0 30px var(--red-glow-soft);
  border: var(--neon-border);
}

.hero-content { position: relative; z-index: 1; padding: 16px 8px 8px; }

.welcome-label { color: var(--red-neon); font-size: 14px; font-weight: 700; text-shadow: 0 0 12px var(--red-glow-soft); }
.welcome-name { font-size: 28px; font-weight: 800; margin: 2px 0 14px; color: var(--text); }

.balance-row { display: flex; align-items: flex-end; gap: 10px; }

.balance-box {
  flex: 1;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border: var(--neon-border);
  box-shadow: var(--neo-raised);
  animation: balanceGlow 3s ease-in-out infinite;
}

.balance-label { font-size: 12px; color: var(--muted); display: block; margin-bottom: 4px; font-weight: 600; }

.balance-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--red-neon);
  text-shadow: 0 0 16px var(--red-glow-soft);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--surface-2);
  border: var(--neon-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  cursor: pointer;
  color: var(--text);
  box-shadow: var(--neo-raised-sm);
  transition: transform 0.2s ease;
}

.lang-btn:active { box-shadow: var(--neo-pressed); transform: scale(0.97); }

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--surface);
  margin: 12px 16px 0;
  border-radius: 10px;
  border: var(--neon-border);
  box-shadow: var(--neo-inset);
  padding: 10px 0;
}

.marquee {
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  font-size: 12px;
  color: var(--red-neon);
  font-weight: 600;
  text-shadow: 0 0 8px var(--red-glow-soft);
}

/* ── Banner ── */
.banner-slider { padding: 16px; }

.slider-track {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
  border: var(--neon-border);
  box-shadow: var(--neo-raised), 0 0 20px var(--red-glow-soft);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.active { opacity: 1; transform: scale(1); z-index: 1; }
.slide.active img { animation: bannerZoom 5s ease-out forwards; }
.slide img { width: 100%; height: 100%; object-fit: cover; }

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--surface-2);
  box-shadow: var(--neo-inset);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--red);
  box-shadow: 0 0 10px var(--red-glow);
  animation: dotPulse 1.5s ease infinite;
}

/* ── Sections ── */
.section { padding: 8px 16px 20px; }

.section-title {
  color: var(--red-neon);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
  padding-left: 12px;
  position: relative;
  text-shadow: 0 0 12px var(--red-glow-soft);
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: var(--red);
  border-radius: 4px;
  box-shadow: 0 0 10px var(--red-glow);
}

.categories-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar { display: none; }

.category-card {
  flex: 0 0 110px;
  background: var(--surface);
  border: var(--neon-border);
  border-radius: var(--radius-sm);
  padding: 18px 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--neo-raised-sm);
  cursor: pointer;
  animation: fadeUp 0.5s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--neo-raised-sm), 0 0 16px var(--red-glow-soft);
}

.category-card:active { transform: scale(0.96); box-shadow: var(--neo-pressed); }

.cat-icon { margin-bottom: 8px; display: flex; justify-content: center; }

/* ── Games ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.game-card {
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  border: var(--neon-border);
  box-shadow: var(--neo-raised-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--neo-raised-sm), 0 0 20px var(--red-glow-soft);
}

.game-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.game-card:hover img { transform: scale(1.04); }

.game-card p {
  font-size: 10px;
  margin: 8px 6px 10px;
  line-height: 1.3;
  color: var(--muted);
  font-weight: 600;
}

/* ── Bottom Nav (flat, no tilt) ── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 60px;
  padding-bottom: env(safe-area-inset-bottom, 0);
  background: var(--surface);
  border-top: var(--neon-border);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.7), 0 0 20px var(--red-glow-soft);
  z-index: 100;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  text-decoration: none;
  flex: 1;
  height: 100%;
  transition: color 0.25s ease;
}

.nav-item:hover { color: var(--red-neon); }
.nav-item.active { color: var(--red-neon); }
.nav-item.active svg { filter: drop-shadow(0 0 6px var(--red-glow)); }

.nav-topup {
  flex: 0 0 auto;
  height: auto;
  margin-top: -24px;
}

.topup-btn {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, #ff4444, var(--red-dark));
  border-radius: 50%;
  border: 2px solid rgba(255, 80, 80, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--red-glow), 0 0 30px var(--red-glow-soft);
  animation: floatBtn 3s ease-in-out infinite, neonPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.nav-topup:active .topup-btn { transform: scale(0.92); }

/* ── Auth ── */
.auth-page { padding-bottom: 40px; }

.auth-card {
  margin: 24px 16px;
  padding: 28px 20px;
  background: var(--surface);
  border: var(--neon-border);
  border-radius: var(--radius);
  box-shadow: var(--neo-raised), 0 0 24px var(--red-glow-soft);
  animation: fadeUp 0.5s ease forwards;
}

.auth-card h1 { font-size: 24px; margin-bottom: 6px; color: var(--red-neon); font-weight: 800; text-shadow: 0 0 12px var(--red-glow-soft); }
.auth-sub { color: var(--muted); font-size: 13px; margin-bottom: 20px; line-height: 1.5; }

.auth-form label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  margin-top: 14px;
  font-weight: 600;
}

.auth-form input,
.select-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface-2);
  border: var(--neon-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  outline: none;
  box-shadow: var(--neo-inset);
  transition: box-shadow 0.25s ease;
}

.auth-form input:focus,
.select-input:focus {
  box-shadow: var(--neo-inset), 0 0 0 2px var(--red-glow-soft);
}

.otp-input {
  text-align: center;
  font-size: 24px !important;
  letter-spacing: 8px;
  font-weight: 700;
  color: var(--red-neon);
}

.btn-primary {
  width: 100%;
  margin-top: 22px;
  padding: 15px;
  background: linear-gradient(145deg, #ff4444, var(--red-dark));
  color: #fff;
  border: 1px solid rgba(255, 80, 80, 0.35);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--red-glow), 0 0 16px var(--red-glow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--red-glow), 0 0 24px var(--red-glow-soft);
}

.btn-primary:active { transform: scale(0.98); }

.alert {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  margin-bottom: 12px;
  animation: fadeIn 0.35s ease;
}

.alert-error { background: rgba(255, 45, 45, 0.12); color: #ff8a80; border: 1px solid rgba(255, 45, 45, 0.3); }
.alert-success { background: rgba(76, 175, 80, 0.12); color: #81c784; border: 1px solid rgba(76, 175, 80, 0.3); }

.auth-footer { text-align: center; margin-top: 20px; font-size: 13px; color: var(--muted); }

/* ── Pages ── */
.page-header { padding: 20px 16px 8px; animation: fadeUp 0.45s ease forwards; }
.page-header h1 { font-size: 22px; color: var(--red-neon); font-weight: 800; }
.page-header p { color: var(--muted); font-size: 13px; margin-top: 4px; }

.balance-display {
  background: var(--surface-2);
  border: var(--neon-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--neo-inset);
}

.balance-display strong { font-size: 18px; color: var(--red-neon); font-weight: 800; }

.payment-info {
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  box-shadow: var(--neo-inset);
  border-left: 3px solid var(--red);
}

.list-wrap { padding: 8px 16px 20px; }

.list-card {
  background: var(--surface);
  border: var(--neon-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--neo-raised-sm);
  transition: box-shadow 0.25s ease;
  animation: fadeUp 0.45s ease both;
}

.list-card:hover { box-shadow: var(--neo-raised-sm), 0 0 12px var(--red-glow-soft); }

.list-row { display: flex; justify-content: space-between; align-items: center; }
.list-amount { font-weight: 700; font-size: 15px; }
.list-meta { display: flex; gap: 12px; font-size: 12px; color: var(--muted); margin: 6px 0; }
.list-date { font-size: 11px; color: var(--muted); }

.badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 8px;
}

.badge-pending { background: rgba(255, 193, 7, 0.15); color: #ffc107; }
.badge-approved, .badge-completed { background: rgba(76, 175, 80, 0.15); color: #81c784; }
.badge-rejected, .badge-failed { background: rgba(255, 45, 45, 0.15); color: #ff8a80; }
.badge-processing { background: rgba(33, 150, 243, 0.15); color: #64b5f6; }

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 14px;
  background: var(--surface);
  border: var(--neon-border);
  border-radius: var(--radius);
  box-shadow: var(--neo-inset);
}

.profile-card {
  margin: 16px;
  padding: 28px 20px;
  background: var(--surface);
  border: var(--neon-border);
  border-radius: var(--radius);
  box-shadow: var(--neo-raised), 0 0 20px var(--red-glow-soft);
  text-align: center;
  animation: fadeUp 0.5s ease forwards;
}

.profile-avatar {
  width: 84px;
  height: 84px;
  background: var(--surface-2);
  border-radius: 50%;
  border: var(--neon-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: var(--neo-raised), 0 0 16px var(--red-glow-soft);
  animation: floatBtn 4s ease-in-out infinite;
}

.profile-email { color: var(--muted); font-size: 13px; margin: 4px 0 20px; }

.profile-balance {
  background: var(--surface-2);
  border: var(--neon-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: var(--neo-inset);
}

.profile-balance span { display: block; font-size: 12px; color: var(--muted); font-weight: 600; }
.profile-balance strong { font-size: 22px; color: var(--red-neon); font-weight: 800; }

.profile-btn { display: block; text-align: center; text-decoration: none; }

/* ── Side Menu ── */
.side-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.side-menu-overlay.open { opacity: 1; visibility: visible; }

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: var(--surface);
  border-right: var(--neon-border);
  box-shadow: 4px 0 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--red-glow-soft);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.side-menu.open { transform: translateX(0); }

.side-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  border-bottom: var(--neon-border);
}

.side-menu-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--red-neon);
  text-shadow: 0 0 10px var(--red-glow-soft);
}

.side-menu-close {
  background: var(--surface-2);
  border: var(--neon-border);
  color: var(--text);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  box-shadow: var(--neo-raised-sm);
}

.side-menu-links { padding: 12px 10px; flex: 1; }

.side-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.side-link:hover { background: var(--surface-2); color: var(--red-neon); }

.side-link-admin {
  color: var(--red-neon);
  background: rgba(255, 45, 45, 0.08);
  border: 1px solid rgba(255, 45, 45, 0.2);
  box-shadow: 0 0 16px var(--red-glow-soft);
}

.side-link-admin:hover {
  background: rgba(255, 45, 45, 0.15);
  box-shadow: 0 0 24px var(--red-glow-soft);
}

.side-link-danger { color: #ff8a80; }
.side-logout-form { margin: 0; }
.side-divider { height: 1px; background: rgba(255, 45, 45, 0.12); margin: 8px 14px; }

/* ── Admin Panel ── */
.admin-app { padding-bottom: 32px; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 16px 16px;
}

.admin-stat-card {
  background: var(--surface);
  border: var(--neon-border);
  border-radius: var(--radius-sm);
  padding: 16px 10px;
  text-align: center;
  box-shadow: var(--neo-raised-sm);
}

.admin-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--red-neon);
  text-shadow: 0 0 10px var(--red-glow-soft);
}

.admin-stat-label { font-size: 10px; color: var(--muted); font-weight: 600; margin-top: 4px; display: block; }

.admin-actions {
  display: flex;
  gap: 10px;
  padding: 0 16px 20px;
}

.admin-btn { flex: 1; text-align: center; text-decoration: none; font-size: 13px; padding: 12px; }

.btn-secondary {
  display: inline-block;
  padding: 14px;
  background: var(--surface-2);
  color: var(--text);
  border: var(--neon-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--neo-raised-sm);
}

.admin-filters {
  display: flex;
  gap: 8px;
  padding: 0 16px 14px;
  overflow-x: auto;
}

.filter-btn {
  flex: 0 0 auto;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  border: var(--neon-border);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.filter-btn.active, .filter-btn:hover {
  color: var(--red-neon);
  border-color: rgba(255, 45, 45, 0.4);
  box-shadow: 0 0 12px var(--red-glow-soft);
}

.admin-card { margin-bottom: 12px; }

.admin-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 45, 45, 0.1);
}

.admin-card-actions form { flex: 1; margin: 0; }

.btn-approve, .btn-reject {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.btn-approve {
  background: linear-gradient(145deg, #43a047, #2e7d32);
  color: #fff;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.btn-reject {
  background: var(--surface-2);
  color: #ff8a80;
  border: 1px solid rgba(255, 45, 45, 0.3);
}

/* ── Deposit Settings (Admin) ── */
.ds-tabs {
  display: flex;
  gap: 8px;
  padding: 0 16px 14px;
}

.ds-tab {
  flex: 1;
  padding: 12px 8px;
  background: var(--surface);
  border: var(--neon-border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--neo-raised-sm);
  transition: all 0.25s ease;
  font-family: inherit;
}

.ds-tab:hover { color: var(--red-neon); }

.ds-tab.active {
  color: #fff;
  background: linear-gradient(145deg, #ff4444, var(--red-dark));
  border-color: rgba(255, 80, 80, 0.4);
  box-shadow: 0 4px 20px var(--red-glow), 0 0 16px var(--red-glow-soft);
}

.ds-panel { display: none; }
.ds-panel.active { display: block; }

.ds-info {
  margin: 0 16px 16px;
  padding: 12px 14px;
  background: rgba(255, 45, 45, 0.08);
  border: 1px solid rgba(255, 45, 45, 0.2);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.ds-currency-block {
  margin: 0 16px 20px;
  padding: 18px;
  background: var(--surface);
  border: var(--neon-border);
  border-radius: var(--radius);
  box-shadow: var(--neo-raised-sm);
}

.ds-currency-head h2 {
  font-size: 17px;
  color: var(--red-neon);
  font-weight: 800;
  margin-bottom: 4px;
}

.ds-rate-hint { font-size: 12px; color: var(--muted); }

.ds-rate-form { margin: 16px 0; }
.ds-rate-form label { font-size: 12px; color: var(--muted); font-weight: 600; display: block; margin-bottom: 8px; }

.ds-rate-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.ds-rate-eq { font-size: 13px; color: var(--text); font-weight: 600; white-space: nowrap; }

.ds-rate-input {
  width: 120px;
  padding: 10px 12px;
  background: var(--surface-2);
  border: var(--neon-border);
  border-radius: 10px;
  color: var(--red-neon);
  font-size: 16px;
  font-weight: 700;
  box-shadow: var(--neo-inset);
}

.ds-save-btn { padding: 10px 16px !important; font-size: 12px !important; flex: 0 0 auto; }

.ds-subtitle {
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
  margin: 16px 0 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 45, 45, 0.1);
}

.ds-empty { font-size: 12px; color: var(--muted); margin-bottom: 10px; }

.ds-account-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--surface-2);
  border: var(--neon-border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}

.ds-account-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 45, 45, 0.2);
  flex-shrink: 0;
}

.ds-account-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  min-width: 0;
}

.ds-account-info strong { color: var(--text); font-size: 13px; }
.ds-acc-num { color: var(--red-neon); font-weight: 700; word-break: break-all; }
.ds-del-btn { padding: 8px 12px !important; font-size: 11px !important; flex-shrink: 0; }

.ds-add-panel {
  margin-top: 12px;
  background: var(--surface-2);
  border: var(--neon-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.ds-add-panel summary {
  padding: 12px 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--red-neon);
  list-style: none;
}

.ds-add-panel summary::-webkit-details-marker { display: none; }
.ds-add-form { padding: 0 14px 14px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
