@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --bg-main: #020710;
  --bg-card: rgba(3, 12, 28, 0.96);
  --bg-card-glass: rgba(4, 16, 36, 0.88);
  --bg-input: rgba(2, 8, 18, 0.95);
  --bg-hover: rgba(0, 229, 255, 0.1);

  --border-neon: #00e5ff;
  --border-neon-bright: #38bdf8;
  --border-subtle: rgba(0, 229, 255, 0.35);
  --border-dim: rgba(0, 229, 255, 0.15);
  --border-card: #00e5ff;

  --accent-glow: rgba(0, 229, 255, 0.5);
  --accent-glow-strong: rgba(0, 229, 255, 0.9);
  --accent-ambient: rgba(0, 168, 255, 0.22);

  --gradient-btn: linear-gradient(135deg, #00f0ff 0%, #00a8ff 50%, #0066ff 100%);
  --gradient-btn-hover: linear-gradient(135deg, #33f3ff 0%, #38bdf8 50%, #1d4ed8 100%);
  --gradient-gold: linear-gradient(180deg, #ffffff 0%, #bae6fd 50%, #00e5ff 100%);
  --gradient-card: linear-gradient(180deg, rgba(4, 18, 40, 0.94) 0%, rgba(2, 8, 20, 0.98) 100%);

  --text-main: #f0f9ff;
  --text-muted: #93c5fd;
  --text-dim: #60a5fa;
  --text-gold: #00e5ff;
  --text-amber: #00e5ff;
  --text-neon: #00e5ff;
  --text-bright: #ffffff;

  --color-blue: #00e5ff;
  --color-cyan: #38bdf8;
  --color-telegram: #229ED9;
  --color-whatsapp: #00e5ff;
  --color-red: #ff3344;

  --font-cyber: 'Orbitron', 'Chakra Petch', sans-serif;
  --font-tech: 'Rajdhani', 'Chakra Petch', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-cyber: 8px;
  --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Cyberpunk Futuristic Aimbot Activating Loading Screen */
.ff-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 50%, #061938 0%, #020917 65%, #000308 100%);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.55s ease;
  overflow: hidden;
}

.ff-loader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Central Cyber HUD Ring Container */
.aimbot-loader-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(3, 14, 34, 0.88);
  border: 1.5px solid #00e5ff;
  border-radius: 20px;
  padding: 40px 50px;
  box-shadow: 
    0 0 50px rgba(0, 229, 255, 0.35),
    0 0 90px rgba(0, 102, 255, 0.2),
    inset 0 0 30px rgba(0, 229, 255, 0.1);
  backdrop-filter: blur(20px);
  max-width: 460px;
  width: 90%;
}

.aimbot-loader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00f0ff, #0066ff, #00f0ff);
  box-shadow: 0 0 16px #00e5ff;
  border-radius: 20px 20px 0 0;
}

/* Rotating Radar / Crosshair Reticle */
.aimbot-hud-ring {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 229, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  animation: hud-rotate 6s linear infinite;
}

@keyframes hud-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.aimbot-inner-circle {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  border: 2px solid #00e5ff;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.25) 0%, rgba(2, 10, 26, 0.9) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
  animation: hud-pulse 1.6s ease-in-out infinite alternate;
}

@keyframes hud-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 18px rgba(0, 229, 255, 0.5); }
  100% { transform: scale(1.05); box-shadow: 0 0 35px rgba(0, 229, 255, 0.95), 0 0 15px #ffffff; }
}

.aimbot-icon-target {
  font-size: 2.5rem;
  color: #00e5ff;
  filter: drop-shadow(0 0 12px #00e5ff);
}

/* Reticle Crosshairs */
.hud-crosshair-h {
  position: absolute;
  top: 50%;
  left: -15px;
  right: -15px;
  height: 1.5px;
  background: #00e5ff;
  box-shadow: 0 0 8px #00e5ff;
}

.hud-crosshair-v {
  position: absolute;
  left: 50%;
  top: -15px;
  bottom: -15px;
  width: 1.5px;
  background: #00e5ff;
  box-shadow: 0 0 8px #00e5ff;
}

/* Title & Subtitle */
.aimbot-loader-title {
  font-family: var(--font-cyber);
  font-size: 1.55rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-align: center;
}

.aimbot-loader-title span {
  color: #00e5ff;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.9);
}

.aimbot-loader-status {
  font-family: var(--font-tech);
  font-size: 0.92rem;
  font-weight: 700;
  color: #93c5fd;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00e5ff;
  box-shadow: 0 0 12px #00e5ff;
  animation: blink-dot 0.8s infinite alternate;
}

@keyframes blink-dot {
  0% { opacity: 0.3; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.3); }
}

/* High-Tech Progress Bar */
.aimbot-progress-track {
  width: 100%;
  height: 9px;
  background: #020814;
  border: 1.5px solid rgba(0, 229, 255, 0.5);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.9);
}

.aimbot-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00a8ff, #00f0ff, #ffffff);
  box-shadow: 0 0 20px #00e5ff;
  border-radius: 20px;
  transition: width 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.aimbot-progress-pct {
  font-family: var(--font-cyber);
  font-size: 0.85rem;
  font-weight: 800;
  color: #00e5ff;
  margin-top: 10px;
  letter-spacing: 0.08em;
}

/* Skip Button */
.loader-skip-btn {
  margin-top: 16px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 20px;
  padding: 6px 18px;
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 700;
  color: #7dd3fc;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: var(--transition-smooth);
}

.loader-skip-btn:hover {
  border-color: #00e5ff;
  background: rgba(0, 229, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.6);
}

/* Custom Electric Cyber Cursor Styles */
@media (pointer: fine) {
  body {
    cursor: default;
  }
}

.cyber-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 0 10px #00e5ff, 0 0 16px #00e5ff;
  transition: transform 0.04s ease-out, background 0.2s ease, width 0.2s ease;
  will-change: transform;
}

.cyber-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1.5px solid #00e5ff;
  background: rgba(0, 229, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.6), inset 0 0 8px rgba(0, 229, 255, 0.2);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.cyber-cursor-ring.cursor-hover {
  border-color: #ffffff;
  background: rgba(0, 229, 255, 0.22);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.95), 0 0 12px #ffffff;
}

.cyber-cursor-ring.cursor-click {
  transform: scale(0.75) !important;
  background: rgba(0, 229, 255, 0.5);
}

.cyber-cursor-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99997;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
}

body.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, #082044 0%, #030d1e 40%, #01040a 100%);
  position: relative;
  min-height: 100vh;
  padding: 20px;
}

/* Cyber Canvas Particle & Lightning Engine Background */
#cyber-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Background Ambient Glow Orbs - Electric Blue Thunderstorm */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 2;
  opacity: 0.45;
  animation: pulse-glow-blue 8s ease-in-out infinite alternate;
}

.ambient-orb-1 {
  width: 520px;
  height: 520px;
  top: 12%;
  left: 12%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.38) 0%, rgba(0, 102, 255, 0.08) 70%, transparent 100%);
}

.ambient-orb-2 {
  width: 580px;
  height: 580px;
  bottom: 12%;
  right: 12%;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.32) 0%, rgba(0, 80, 200, 0.05) 70%, transparent 100%);
  animation-delay: -4s;
}

@keyframes pulse-glow-blue {
  0% { transform: scale(0.9) translate(0, 0); opacity: 0.35; filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.3)); }
  50% { transform: scale(1.12) translate(25px, -25px); opacity: 0.65; filter: drop-shadow(0 0 45px rgba(0, 229, 255, 0.6)); }
  100% { transform: scale(0.95) translate(-20px, 20px); opacity: 0.4; filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.4)); }
}

/* ========================================================
   AUTHENTICATION / LOGIN CARD (Electric Blue Theme)
   ======================================================== */
.login-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 440px;
  perspective: 1000px;
}

/* Cyberpunk Chamfered Glow Card Frame */
.cyber-card {
  position: relative;
  background: var(--gradient-card);
  border: 1.5px solid var(--border-neon);
  border-radius: 12px;
  padding: 34px 30px 28px 30px;
  box-shadow: 
    0 0 45px var(--accent-ambient),
    0 0 30px rgba(0, 229, 255, 0.4),
    inset 0 0 30px rgba(0, 229, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

.cyber-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.7), transparent 40%, transparent 60%, rgba(0, 102, 255, 0.6));
  border-radius: 14px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
}

/* Chamfered Accent Corners */
.card-notch-corner-tl, .card-notch-corner-tr, .card-notch-corner-bl, .card-notch-corner-br {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.card-notch-corner-tl {
  top: -1px;
  left: -1px;
  border-top: 2.5px solid #00f0ff;
  border-left: 2.5px solid #00f0ff;
  border-top-left-radius: 8px;
}

.card-notch-corner-tr {
  top: -1px;
  right: -1px;
  border-top: 2.5px solid #00f0ff;
  border-right: 2.5px solid #00f0ff;
  border-top-right-radius: 8px;
}

.card-notch-corner-bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 2.5px solid #00e5ff;
  border-left: 2.5px solid #00e5ff;
  border-bottom-left-radius: 8px;
}

.card-notch-corner-br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2.5px solid #00e5ff;
  border-right: 2.5px solid #00e5ff;
  border-bottom-right-radius: 8px;
}

/* Top Sub-Header Tag */
.portal-tag {
  text-align: center;
  font-family: var(--font-cyber);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #00e5ff;
  opacity: 0.95;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
}

.portal-tag::before, .portal-tag::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: rgba(0, 229, 255, 0.7);
}

/* Main Titles */
.portal-title-wrapper {
  text-align: center;
  margin-bottom: 24px;
}

.portal-title {
  font-family: var(--font-cyber);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.15;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
}

.portal-subtitle {
  font-family: var(--font-cyber);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #00e5ff;
  text-transform: uppercase;
  margin-top: 4px;
  text-shadow: 0 0 18px rgba(0, 229, 255, 0.95), 0 0 35px rgba(0, 168, 255, 0.6);
  position: relative;
  display: inline-block;
}

.portal-subtitle::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: radial-gradient(circle, #00e5ff, transparent);
  box-shadow: 0 0 12px #00e5ff;
}

/* Form Groups & Inputs */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.cyber-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(0, 229, 255, 0.45);
  border-radius: 6px;
  padding: 13px 16px 13px 16px;
  font-family: var(--font-tech);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ffffff;
  outline: none;
  transition: var(--transition-smooth);
}

.cyber-input::placeholder {
  color: #60a5fa;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: normal;
}

.cyber-input:focus {
  border-color: #00e5ff;
  background: rgba(4, 18, 42, 0.98);
  box-shadow: 
    0 0 18px rgba(0, 229, 255, 0.55),
    inset 0 0 8px rgba(0, 229, 255, 0.2);
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #7dd3fc;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.password-toggle:hover {
  color: #00e5ff;
}

/* Authenticated User Session Navigation Badge & Logout Controls */
.nav-user-logged-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-user-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 18, 42, 0.9);
  border: 1px solid #00e5ff;
  border-radius: 20px;
  padding: 5px 12px;
  text-decoration: none;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.35);
  transition: var(--transition-smooth);
}

.nav-user-badge:hover {
  background: rgba(0, 229, 255, 0.2);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.8);
}

.user-avatar-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #00e5ff;
  color: #000814;
  font-family: var(--font-cyber);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px #00e5ff;
}

.user-name-text {
  font-family: var(--font-tech);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
}

.user-balance-pill {
  font-family: var(--font-cyber);
  font-size: 0.75rem;
  font-weight: 800;
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.15);
  padding: 2px 7px;
  border-radius: 12px;
  border: 1px solid rgba(0, 229, 255, 0.4);
}

.btn-nav-logout {
  background: rgba(255, 51, 68, 0.12);
  border: 1px solid rgba(255, 51, 68, 0.6);
  border-radius: 20px;
  padding: 6px 14px;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff4d5e;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-smooth);
}

.btn-nav-logout:hover {
  background: #ff3344;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(255, 51, 68, 0.8);
}

.nav-customer-profile-btn {
  background: rgba(3, 18, 42, 0.92);
  border: 1.5px solid #00e5ff;
  border-radius: 20px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
  transition: var(--transition-smooth);
}

.nav-customer-profile-btn:hover {
  background: rgba(0, 229, 255, 0.2);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.9);
}

.gamer-avatar-badge {
  font-size: 1rem;
}

.gamer-name-tag {
  font-family: var(--font-tech);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.gamer-vip-chip {
  font-family: var(--font-cyber);
  font-size: 0.7rem;
  font-weight: 800;
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.5);
  border-radius: 10px;
  padding: 2px 6px;
}

.btn-nav-signup-modal {
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid #00e5ff;
  border-radius: 20px;
  padding: 7px 16px;
  font-family: var(--font-tech);
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.25);
  transition: var(--transition-smooth);
}

.btn-nav-signup-modal:hover {
  background: #00e5ff;
  color: #000814;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.9);
}

.btn-nav-login-modal {
  background: rgba(3, 18, 42, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.5);
  border-radius: 20px;
  padding: 7px 16px;
  font-family: var(--font-tech);
  font-size: 0.82rem;
  font-weight: 700;
  color: #bae6fd;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.btn-nav-login-modal:hover {
  border-color: #00e5ff;
  color: #00e5ff;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.5);
}

.btn-nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.2) 0%, rgba(0, 102, 255, 0.35) 100%);
  border: 1.5px solid #00e5ff;
  border-radius: 20px;
  padding: 7px 15px;
  font-family: var(--font-cyber);
  font-size: 0.76rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-nav-whatsapp:hover {
  background: #00e5ff;
  color: #000814;
  border-color: #ffffff;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.95);
  transform: translateY(-1.5px);
}

.btn-nav-whatsapp .wa-icon {
  font-size: 0.85rem;
}

/* Modal Popup Overlay */
.cyber-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 6, 16, 0.88);
  backdrop-filter: blur(14px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cyber-modal-overlay.open {
  display: flex;
}

/* Exact Clean Modal Design Matching User Screenshot */
.clean-auth-card {
  position: relative;
  width: 100%;
  max-width: 430px;
  background: #090d16;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 34px 30px 30px 30px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 1px 1px rgba(255, 255, 255, 0.06);
  animation: modal-pop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
}

.clean-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  line-height: 1;
}

.clean-close-btn:hover {
  color: #ffffff;
}

.clean-brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 22px;
}

.clean-brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.clean-brand-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1.5px solid #00e5ff;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
}

.clean-brand-text {
  font-family: var(--font-cyber);
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  text-align: left;
}

.clean-brand-text span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #38bdf8;
  letter-spacing: 0.06em;
}

.clean-heading {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}

.clean-subtext {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.88rem;
  color: #9ca3af;
  margin: 0;
  font-weight: 400;
}

.clean-form-group {
  margin-bottom: 16px;
  text-align: left;
}

.clean-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}

.clean-label {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e5e7eb;
}

.clean-forgot-link {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.clean-forgot-link:hover {
  color: #38bdf8;
}

.clean-input-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.clean-input-icon {
  position: absolute;
  left: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.clean-input-field {
  width: 100%;
  background: #0f1523;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 14px 12px 42px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  outline: none;
  transition: all 0.2s ease;
}

.clean-input-field:focus {
  border-color: #2563eb;
  background: #111827;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.clean-input-field::placeholder {
  color: #4b5563;
}

.clean-btn-primary {
  width: 100%;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 13px 20px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 6px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.clean-btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.55);
  transform: translateY(-1px);
}

.clean-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #6b7280;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clean-divider::before,
.clean-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.clean-divider span {
  padding: 0 12px;
}

.clean-btn-google {
  width: 100%;
  background: #0f1523;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 11px 16px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clean-btn-google:hover {
  background: #172033;
  border-color: rgba(255, 255, 255, 0.25);
}

.clean-footer-text {
  margin-top: 22px;
  text-align: center;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.88rem;
  color: #9ca3af;
}

.clean-footer-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-left: 4px;
}

.clean-footer-link:hover {
  text-decoration: underline;
  color: #38bdf8;
}

/* Primary Sign In Button (Electric Blue Gradient) */
.btn-primary-signin {
  margin-top: 4px;
  width: 100%;
  background: var(--gradient-btn);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  padding: 13px 20px;
  font-family: var(--font-cyber);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #000814;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 
    0 0 30px rgba(0, 168, 255, 0.7),
    inset 0 1px 1px rgba(255, 255, 255, 0.7);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary-signin::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: rotate(30deg);
  transition: all 0.6s ease;
}

.btn-primary-signin:hover {
  background: var(--gradient-btn-hover);
  box-shadow: 
    0 0 45px rgba(0, 229, 255, 0.95),
    0 0 20px rgba(0, 102, 255, 0.95),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.btn-primary-signin:hover::after {
  left: 120%;
}

.btn-primary-signin:active {
  transform: translateY(1px);
  box-shadow: 0 0 15px rgba(0, 168, 255, 0.5);
}

/* Secondary Action Buttons (Telegram & WhatsApp) */
.support-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.btn-support {
  width: 100%;
  padding: 11px 16px;
  border-radius: 6px;
  font-family: var(--font-tech);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Telegram Button (Electric Blue) */
.btn-telegram {
  background: rgba(4, 18, 42, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.55);
  color: #f0f9ff;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.25);
}

.btn-telegram .btn-icon {
  color: #00e5ff;
  font-size: 1.1rem;
}

.btn-telegram:hover {
  background: rgba(0, 229, 255, 0.2);
  border-color: #00e5ff;
  color: #ffffff;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.55);
  transform: translateY(-1px);
}

/* WhatsApp Button (Electric Blue Highlight) */
.btn-whatsapp {
  background: rgba(3, 16, 36, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.55);
  color: #f0f9ff;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.25);
}

.btn-whatsapp .btn-icon {
  color: #00e5ff;
  font-size: 1.1rem;
}

.btn-whatsapp:hover {
  background: rgba(0, 229, 255, 0.2);
  border-color: #00e5ff;
  color: #ffffff;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.55);
  transform: translateY(-1px);
}

/* Card Footer Links */
.portal-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 229, 255, 0.25);
}

.portal-footer-link {
  font-size: 0.72rem;
  font-weight: 500;
  color: #7dd3fc;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.portal-footer-link:hover {
  color: #00e5ff;
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.8);
}

.footer-bullet {
  color: #00e5ff;
  opacity: 0.5;
  font-size: 0.6rem;
}

/* Demo Credentials Quick-Chip */
.demo-bar {
  margin-top: 18px;
  padding: 10px 14px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px dashed rgba(0, 229, 255, 0.45);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.demo-text {
  font-size: 0.75rem;
  color: #bae6fd;
  font-family: var(--font-tech);
}

.demo-text strong {
  color: #00e5ff;
}

.btn-demo-fill {
  background: rgba(0, 229, 255, 0.2);
  border: 1px solid rgba(0, 229, 255, 0.6);
  color: #00e5ff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-demo-fill:hover {
  background: #00e5ff;
  color: #000;
  box-shadow: 0 0 14px #00e5ff;
}

/* Sound and FX Toggle Pill */
.fx-toggle-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  background: rgba(4, 16, 36, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.45);
  border-radius: 20px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-family: var(--font-tech);
  color: #00e5ff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.fx-toggle-pill:hover {
  border-color: #00e5ff;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.6);
}

/* ========================================================
   RESELLER DASHBOARD LAYOUT (Electric Blue Theme)
   ======================================================== */
body.dashboard-body {
  background: #020710 radial-gradient(circle at 50% 35%, #082044 0%, #030d1e 45%, #01040a 100%) no-repeat fixed;
  color: #f0f9ff;
  min-height: 100vh;
  font-family: 'Rajdhani', 'Chakra Petch', sans-serif;
}

.dashboard-top-banner {
  background: rgba(4, 14, 32, 0.95);
  border: 1px solid rgba(0, 229, 255, 0.45);
  border-radius: 16px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.15), inset 0 0 15px rgba(0, 229, 255, 0.05);
  margin-bottom: 22px;
  position: relative;
}

.banner-brand-tag {
  font-family: 'Orbitron', 'Chakra Petch', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: #00e5ff;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.banner-brand-title {
  font-family: 'Orbitron', 'Chakra Petch', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.banner-brand-title span {
  color: #00e5ff;
  font-weight: 700;
  margin-left: 6px;
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.85);
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.balance-pill {
  background: #020814;
  border: 1.5px solid rgba(0, 229, 255, 0.7);
  border-radius: 30px;
  padding: 8px 22px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: #bae6fd;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.25), inset 0 0 10px rgba(0, 229, 255, 0.12);
}

.balance-pill strong, .balance-pill span {
  color: #00e5ff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.85);
}

.btn-banner-refresh {
  background: rgba(4, 18, 38, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.45);
  color: #bae6fd;
  border-radius: 30px;
  padding: 8px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-banner-refresh svg {
  color: #00e5ff;
}

.btn-banner-refresh:hover {
  border-color: #00e5ff;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.5);
}

.btn-banner-refresh.rotating svg {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.btn-banner-logout {
  background: rgba(30, 10, 14, 0.9);
  border: 1px solid rgba(255, 51, 68, 0.55);
  color: #ffa4ac;
  border-radius: 30px;
  padding: 8px 22px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-banner-logout:hover {
  background: rgba(255, 51, 68, 0.28);
  color: #ffffff;
  border-color: #ff3344;
  box-shadow: 0 0 18px rgba(255, 51, 68, 0.45);
}

/* Horizontal Nav Bar (Electric Blue Theme) */
.dashboard-nav-bar {
  background: rgba(3, 12, 28, 0.98);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  overflow-x: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.dashboard-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 9px 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #7dd3fc;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.dashboard-tab-btn:hover {
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.1);
}

.dashboard-tab-btn.active {
  background: rgba(4, 28, 60, 0.95);
  border: 1px solid #00e5ff;
  border-radius: 8px;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.5), inset 0 0 8px rgba(0, 229, 255, 0.2);
}

.nav-badge {
  background: #ff3344;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
}

/* Two Main Cards Grid */
.dashboard-twins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cyber-panel-card {
  background: rgba(4, 14, 32, 0.95);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.1);
  position: relative;
}

.card-heading {
  font-family: 'Rajdhani', 'Orbitron', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #00e5ff;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

/* Form Controls in Dashboard */
.form-cyber-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #bae6fd;
  margin-bottom: 8px;
  display: block;
}

.cyber-dropdown {
  width: 100%;
  background: #020814;
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 8px;
  padding: 13px 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: #00e5ff;
  outline: none;
  margin-bottom: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%2300e5ff' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}

.cyber-dropdown:focus {
  border-color: #00e5ff;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.45);
}

.cyber-dropdown option {
  background: #031024;
  color: #00e5ff;
  padding: 10px;
  font-size: 0.95rem;
}

.cyber-dropdown option:hover, .cyber-dropdown option:checked {
  background: #0055b3;
  color: #ffffff;
}

.cyber-number-input {
  width: 100%;
  max-width: 110px;
  background: #020814;
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 8px;
  padding: 11px 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  outline: none;
  margin-bottom: 24px;
  transition: all 0.25s ease;
}

.cyber-number-input:focus {
  border-color: #00e5ff;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.45);
}

/* Big Electric Blue Gradient Generate Button */
.btn-generate-keys {
  width: 100%;
  background: linear-gradient(90deg, #0055d4 0%, #0088ff 40%, #00b4d8 75%, #00e5ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 14px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 0 28px rgba(0, 168, 255, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  transition: all 0.25s ease;
}

.btn-generate-keys:hover {
  background: linear-gradient(90deg, #0066ff 0%, #0099ff 40%, #00d2ff 75%, #33f3ff 100%);
  box-shadow: 0 0 38px rgba(0, 229, 255, 0.8), 0 0 18px rgba(0, 102, 255, 0.7);
  transform: translateY(-1px);
}

/* Generated Key Result Display */
.key-result-box {
  margin-top: 20px;
  background: rgba(2, 10, 22, 0.95);
  border: 1px solid #00e5ff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.25);
  display: none;
  animation: fadeIn 0.3s ease;
}

.key-result-box.show {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.key-code-display {
  font-family: 'Courier New', monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: #00e5ff;
  letter-spacing: 0.15em;
  background: #01060e;
  padding: 12px;
  border-radius: 6px;
  border: 1px dashed rgba(0, 229, 255, 0.5);
  text-align: center;
  margin-bottom: 12px;
  user-select: all;
  word-break: break-all;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.key-actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cyber-action {
  flex: 1;
  min-width: 130px;
  padding: 9px 12px;
  border-radius: 6px;
  font-family: var(--font-tech);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.btn-copy {
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid #00e5ff;
  color: #00e5ff;
}

.btn-copy:hover {
  background: #00e5ff;
  color: #000;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.6);
}

.btn-whatsapp-share {
  background: rgba(0, 229, 255, 0.2);
  border: 1px solid #00e5ff;
  color: #00e5ff;
}

.btn-whatsapp-share:hover {
  background: #00e5ff;
  color: #000;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
}

/* Download Hub Card */
.download-item {
  background: rgba(4, 18, 38, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: var(--transition-smooth);
}

.download-item:hover {
  border-color: #00e5ff;
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

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

.file-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00e5ff;
  font-size: 1.2rem;
}

.file-title {
  font-family: var(--font-cyber);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.file-meta {
  font-size: 0.75rem;
  color: #93c5fd;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.badge-antiban {
  background: rgba(0, 229, 255, 0.2);
  border: 1px solid #00e5ff;
  color: #00e5ff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
}

.btn-download {
  background: var(--gradient-btn);
  border: none;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--font-cyber);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-download:hover {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.75);
  transform: translateY(-1px);
}

/* Key Management Table */
.table-panel {
  background: rgba(4, 14, 30, 0.95);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 12px;
  padding: 24px;
  backdrop-filter: blur(12px);
}

.table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  min-width: 260px;
}

.table-search-input {
  width: 100%;
  background: #020814;
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 6px;
  padding: 9px 14px 9px 36px;
  font-family: var(--font-tech);
  font-size: 0.92rem;
  color: #ffffff;
  outline: none;
  transition: var(--transition-smooth);
}

.table-search-input:focus {
  border-color: #00e5ff;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.35);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #7dd3fc;
  font-size: 0.9rem;
}

.table-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-table-action {
  background: rgba(4, 22, 48, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: #f0f9ff;
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--font-tech);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.btn-table-action:hover {
  border-color: #00e5ff;
  color: #00e5ff;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.3);
}

/* Responsive Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.cyber-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.cyber-table th {
  background: rgba(0, 229, 255, 0.12);
  padding: 12px 14px;
  font-family: var(--font-cyber);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #00e5ff;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
}

.cyber-table td {
  padding: 14px;
  font-family: var(--font-tech);
  font-size: 0.95rem;
  color: #f0f9ff;
  border-bottom: 1px solid rgba(0, 229, 255, 0.14);
}

.cyber-table tr:hover td {
  background: rgba(0, 229, 255, 0.06);
}

.key-mono {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: #00e5ff;
  letter-spacing: 0.05em;
  background: rgba(0, 229, 255, 0.12);
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-active {
  background: rgba(0, 229, 255, 0.22);
  color: #00e5ff;
  border: 1px solid rgba(0, 229, 255, 0.6);
}

.status-expired {
  background: rgba(255, 51, 68, 0.2);
  color: #ff3344;
  border: 1px solid rgba(255, 51, 68, 0.5);
}

.status-unused {
  background: rgba(0, 229, 255, 0.2);
  color: #00e5ff;
  border: 1px solid rgba(0, 229, 255, 0.5);
}

.btn-icon-action {
  background: transparent;
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: #93c5fd;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-icon-action:hover {
  border-color: #00e5ff;
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.15);
}

.btn-icon-danger:hover {
  border-color: #ff3344;
  color: #ff3344;
  background: rgba(255, 51, 68, 0.15);
}

/* Modals & Popups Architecture - Fully Scrollable on All Screen Heights */
.cyber-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(2, 6, 16, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 999999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 14px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cyber-modal-overlay.open,
.cyber-modal-overlay[style*="display: flex"],
.cyber-modal-overlay[style*="display: block"] {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.cyber-modal-overlay[style*="display: none"] {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.cyber-modal-card {
  width: 100%;
  max-width: 540px;
  background: var(--gradient-card);
  border: 1.5px solid var(--border-neon);
  border-radius: 14px;
  padding: 26px 20px;
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.35);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
  max-height: 90vh;
  max-height: 92dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.cyber-modal-overlay.open .cyber-modal-card {
  transform: scale(1);
}

/* Custom Sleek Cyber Scrollbar for Modals & Overlay */
.cyber-modal-overlay::-webkit-scrollbar,
.cyber-modal-card::-webkit-scrollbar,
.clean-auth-card::-webkit-scrollbar,
.modal-auth-card::-webkit-scrollbar,
.google-auth-card::-webkit-scrollbar,
.gcloud-config-card::-webkit-scrollbar,
.admin-slip-modal-card::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.cyber-modal-overlay::-webkit-scrollbar-track,
.cyber-modal-card::-webkit-scrollbar-track,
.clean-auth-card::-webkit-scrollbar-track,
.modal-auth-card::-webkit-scrollbar-track,
.google-auth-card::-webkit-scrollbar-track,
.gcloud-config-card::-webkit-scrollbar-track,
.admin-slip-modal-card::-webkit-scrollbar-track {
  background: rgba(2, 8, 22, 0.75);
  border-radius: 4px;
}

.cyber-modal-overlay::-webkit-scrollbar-thumb,
.cyber-modal-card::-webkit-scrollbar-thumb,
.clean-auth-card::-webkit-scrollbar-thumb,
.modal-auth-card::-webkit-scrollbar-thumb,
.google-auth-card::-webkit-scrollbar-thumb,
.gcloud-config-card::-webkit-scrollbar-thumb,
.admin-slip-modal-card::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00f0ff, #0066ff);
  border-radius: 4px;
  border: 1px solid rgba(0, 229, 255, 0.4);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.3);
}

.modal-title {
  font-family: var(--font-cyber);
  font-size: 1.15rem;
  font-weight: 700;
  color: #00e5ff;
}

.modal-close {
  background: transparent;
  border: none;
  color: #93c5fd;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: #ff3344;
  background: rgba(255, 51, 68, 0.15);
}

.modal-auth-card {
  width: 100%;
  max-width: 500px;
  background: rgba(6, 18, 42, 0.98);
  border: 1.5px solid #00e5ff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 
    0 0 50px rgba(0, 229, 255, 0.4),
    0 0 80px rgba(0, 102, 255, 0.25),
    inset 0 0 25px rgba(0, 229, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  color: #ffffff;
  margin: auto;
  max-height: 90vh;
  max-height: 92dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  animation: modal-pop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: #bae6fd;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: #ff3344;
  border-color: #ff3344;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(255, 51, 68, 0.8);
}

/* Authentic Google Account Selection Dialog */
.google-auth-card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 28px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
  color: #1f1f1f;
  font-family: 'Roboto', 'Inter', -apple-system, sans-serif;
  position: relative;
  animation: modal-pop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.google-auth-card .clean-close-btn {
  color: #5f6368;
}

.google-auth-card .clean-close-btn:hover {
  color: #202124;
}

.google-header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.google-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f1f1f;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.google-subtitle {
  font-size: 0.92rem;
  color: #5f6368;
  margin: 0 0 20px 0;
}

.google-account-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.google-account-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #dadce0;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
}

.google-account-item:hover {
  background: #f8fafd;
  border-color: #1a73e8;
  box-shadow: 0 1px 6px rgba(26, 115, 232, 0.2);
}

.google-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a73e8;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-user-avatar.avatar-t {
  background: #e37400;
}

.google-user-details {
  flex: 1;
}

.google-user-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #202124;
}

.google-user-email {
  font-size: 0.78rem;
  color: #5f6368;
}

.google-custom-input-group {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #ebebeb;
}

.google-text-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dadce0;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #202124;
  outline: none;
  transition: border-color 0.2s ease;
}

.google-text-input:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.google-btn-submit {
  width: 100%;
  background: #1a73e8;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 11px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s ease;
}

.google-btn-submit:hover {
  background: #1557b0;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.35);
}

.google-disclaimer {
  font-size: 0.72rem;
  color: #70757a;
  line-height: 1.4;
  margin-top: 18px;
  text-align: center;
}

.google-disclaimer a {
  color: #1a73e8;
  text-decoration: none;
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.cyber-toast {
  pointer-events: auto;
  background: rgba(4, 18, 38, 0.98);
  border: 1px solid #00e5ff;
  border-radius: 8px;
  padding: 12px 18px;
  min-width: 280px;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cyber-toast.toast-error {
  border-color: #ff3344;
  box-shadow: 0 0 25px rgba(255, 51, 68, 0.4);
}

.cyber-toast.toast-success {
  border-color: #00e5ff;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast-icon {
  font-size: 1.2rem;
}

.toast-message {
  font-family: var(--font-tech);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

/* Bottom-Right Live Sync Equalizer Widget */
.live-sync-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(4, 14, 30, 0.95);
  border: 1.5px solid #00e5ff;
  border-radius: 28px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.45);
  backdrop-filter: blur(12px);
  z-index: 50;
}

.equalizer-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.eq-bar {
  width: 3px;
  background: #00e5ff;
  border-radius: 2px;
  animation: eq-anim 1s infinite ease-in-out;
  box-shadow: 0 0 8px #00e5ff;
}

.eq-bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.eq-bar:nth-child(2) { height: 90%; animation-delay: 0.3s; }
.eq-bar:nth-child(3) { height: 40%; animation-delay: 0.2s; }
.eq-bar:nth-child(4) { height: 100%; animation-delay: 0.4s; }
.eq-bar:nth-child(5) { height: 70%; animation-delay: 0.15s; }

@keyframes eq-anim {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

.sync-text-group {
  display: flex;
  flex-direction: column;
}

.sync-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.sync-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  color: #00e5ff;
}

@media (max-width: 900px) {
  .dashboard-twins-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-top-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* Google Cloud Console OAuth Configuration Modal */
.gcloud-config-card {
  width: 100%;
  max-width: 520px;
  background: rgba(4, 16, 38, 0.98);
  border: 1.5px solid #00e5ff;
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 
    0 0 50px rgba(0, 229, 255, 0.4),
    0 0 90px rgba(0, 102, 255, 0.25);
  backdrop-filter: blur(20px);
  position: relative;
  color: #ffffff;
  animation: modal-pop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.gcloud-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.3);
}

.gcloud-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid #00e5ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.5);
}

.gcloud-title {
  font-family: var(--font-cyber);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.gcloud-title span {
  color: #00e5ff;
}

.gcloud-guide-box {
  background: rgba(2, 10, 24, 0.95);
  border: 1px dashed rgba(0, 229, 255, 0.4);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  color: #bae6fd;
  line-height: 1.6;
}

.gcloud-guide-box ol {
  padding-left: 18px;
  margin-top: 6px;
}

.gcloud-guide-box a {
  color: #00e5ff;
  font-weight: 700;
  text-decoration: underline;
}

.gcloud-input-group {
  margin-bottom: 14px;
}

.gcloud-label {
  font-family: var(--font-tech);
  font-size: 0.88rem;
  font-weight: 700;
  color: #7dd3fc;
  margin-bottom: 6px;
  display: block;
}

.gcloud-input {
  width: 100%;
  background: #020814;
  border: 1px solid rgba(0, 229, 255, 0.45);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Courier New', monospace;
  font-size: 0.88rem;
  color: #00e5ff;
  outline: none;
  transition: var(--transition-smooth);
}

.gcloud-input:focus {
  border-color: #00e5ff;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.5);
  background: rgba(3, 16, 36, 0.95);
}

.gcloud-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.btn-gcloud-save {
  flex: 1.2;
  background: var(--gradient-btn);
  border: none;
  color: #000814;
  border-radius: 8px;
  padding: 12px;
  font-family: var(--font-cyber);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.7);
  transition: var(--transition-smooth);
}

.btn-gcloud-save:hover {
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.95);
  transform: translateY(-1px);
}

.btn-gcloud-reset {
  flex: 0.8;
  background: rgba(3, 16, 36, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: #7dd3fc;
  border-radius: 8px;
  padding: 12px;
  font-family: var(--font-tech);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-gcloud-reset:hover {
  border-color: #00e5ff;
  color: #ffffff;
  background: rgba(0, 229, 255, 0.15);
}

/* Wallet Top-Up Amount Selection Grid matching Screenshot 2 */
.topup-section-heading {
  font-family: var(--font-cyber);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.topup-subheading {
  font-family: var(--font-tech);
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffaa00;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.topup-amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .topup-amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.topup-amount-card {
  background: rgba(6, 18, 42, 0.95);
  border: 1.5px solid rgba(0, 229, 255, 0.3);
  border-radius: 12px;
  padding: 22px 14px;
  text-align: center;
  font-family: var(--font-cyber);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.topup-amount-card:hover {
  border-color: #00e5ff;
  background: rgba(0, 229, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
}

.topup-amount-card.active {
  border-color: #00e5ff;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.25) 0%, rgba(2, 12, 30, 0.98) 100%);
  color: #00e5ff;
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.6), inset 0 0 20px rgba(0, 229, 255, 0.25);
  transform: scale(1.02);
}

.topup-divider {
  border: none;
  height: 1px;
  background: rgba(0, 229, 255, 0.2);
  margin: 28px 0;
}

.topup-recent-empty {
  text-align: center;
  padding: 40px 20px;
  color: #64748b;
  font-family: var(--font-tech);
}

.topup-recent-empty h4 {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 4px;
  font-weight: 600;
}

.topup-recent-empty p {
  font-size: 0.82rem;
  color: #475569;
}

/* Blockchain Transfer QR Screen matching Screenshot */
.transfer-card-wrapper {
  background: rgba(4, 14, 34, 0.95);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}

.transfer-breadcrumb-btn {
  background: transparent;
  border: none;
  color: #ffaa00;
  font-family: var(--font-cyber);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  transition: var(--transition-smooth);
  padding: 0;
}

.transfer-breadcrumb-btn:hover {
  color: #ffffff;
  transform: translateX(-3px);
}

.transfer-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  background: rgba(2, 8, 20, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .transfer-summary-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.transfer-summary-item label {
  display: block;
  font-size: 0.75rem;
  color: #7dd3fc;
  margin-bottom: 4px;
}

.transfer-summary-item .val {
  font-family: var(--font-cyber);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.transfer-summary-item .val-order {
  color: #00e5ff;
  font-family: monospace;
}

.qr-box-container {
  background: #020814;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 20px;
}

.qr-box-title {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qr-image-wrap {
  display: inline-block;
  background: #ffffff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
  margin-bottom: 18px;
}

.qr-image-wrap img {
  width: 170px;
  height: 170px;
  display: block;
  object-fit: contain;
}

.wallet-address-box {
  background: rgba(4, 16, 38, 0.95);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}

.wallet-address-text {
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  color: #ffaa00;
  word-break: break-all;
  text-align: left;
}

.btn-copy-address {
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid #00e5ff;
  color: #00e5ff;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.btn-copy-address:hover {
  background: #00e5ff;
  color: #000814;
}

.transfer-actions-row {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.btn-transfer-cancel {
  flex: 1;
  background: rgba(255, 51, 68, 0.15);
  border: 1.5px solid #ff3344;
  color: #ff3344;
  border-radius: 8px;
  padding: 12px;
  font-family: var(--font-cyber);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-transfer-cancel:hover {
  background: #ff3344;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 51, 68, 0.6);
}

.btn-transfer-confirm {
  flex: 1.6;
  background: linear-gradient(90deg, #00e5ff, #00ff88);
  border: none;
  color: #000814;
  border-radius: 8px;
  padding: 12px;
  font-family: var(--font-cyber);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
  transition: var(--transition-smooth);
}

.btn-transfer-confirm:hover {
  background: #ffffff;
  box-shadow: 0 0 35px rgba(0, 255, 136, 0.9);
  transform: translateY(-1px);
}

/* Method Selection Stage matching Screenshot 1 */
.method-amount-alert {
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 8px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #bae6fd;
  font-size: 0.88rem;
}

.method-amount-alert strong {
  color: #00e5ff;
  font-family: var(--font-cyber);
  font-size: 1rem;
}

.method-cards-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.method-select-card {
  background: rgba(4, 16, 38, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 10px;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.method-select-card:hover {
  background: rgba(0, 229, 255, 0.14);
  border-color: #00e5ff;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.35);
}

.method-card-title {
  font-family: var(--font-cyber);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffaa00;
  margin-bottom: 4px;
}

.method-card-sub {
  font-size: 0.8rem;
  color: #94a3b8;
}

.method-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 4px;
  padding: 3px 8px;
}

.method-category-group {
  background: rgba(4, 16, 38, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.method-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-cyber);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffaa00;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
}

.method-sub-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.method-nested-card {
  background: rgba(10, 25, 55, 0.7);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.method-nested-card:hover {
  background: rgba(0, 229, 255, 0.15);
  border-color: #00e5ff;
  transform: translateX(4px);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.3);
}

/* ========================================================
   DYNAMIC PAYMENT GATEWAY CARDS & SLIP UPLOAD SYSTEM
   ======================================================== */

.gateway-display-pane {
  animation: fadeInPane 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInPane {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bank Details Card */
.bank-details-card {
  background: rgba(4, 18, 44, 0.95);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.bank-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.bank-card-title {
  font-family: var(--font-cyber);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffaa00;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bank-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

@media (max-width: 580px) {
  .bank-info-grid {
    grid-template-columns: 1fr;
  }
}

.bank-info-item {
  background: rgba(2, 10, 26, 0.7);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 8px;
  padding: 10px 14px;
}

.bank-info-label {
  font-size: 0.72rem;
  color: #7dd3fc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.bank-info-val {
  font-family: var(--font-cyber);
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 700;
}

.bank-account-highlight {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(255, 170, 0, 0.1));
  border: 1.5px solid rgba(0, 229, 255, 0.5);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.bank-acc-number {
  font-family: 'Courier New', monospace;
  font-size: 1.15rem;
  font-weight: 900;
  color: #00ff88;
  letter-spacing: 0.08em;
}

/* PayPal Details Card */
.paypal-details-card {
  background: rgba(4, 18, 44, 0.95);
  border: 1px solid rgba(0, 164, 255, 0.4);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(0, 164, 255, 0.2);
}

.paypal-email-highlight {
  background: rgba(0, 112, 186, 0.18);
  border: 1.5px solid #0070ba;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.paypal-email-text {
  font-family: monospace;
  font-size: 1.05rem;
  font-weight: 800;
  color: #38bdf8;
}

/* eZ Cash Details Card & Instructions */
.ezcash-details-card {
  background: rgba(4, 18, 44, 0.95);
  border: 1px solid rgba(255, 170, 0, 0.4);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(255, 170, 0, 0.2);
}

.ezcash-number-highlight {
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.15), rgba(0, 229, 255, 0.1));
  border: 1.5px solid #ffaa00;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.ezcash-number-text {
  font-family: 'Courier New', monospace;
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffaa00;
  letter-spacing: 0.1em;
}

.ezcash-instructions-box {
  background: rgba(2, 10, 26, 0.85);
  border: 1px solid rgba(255, 170, 0, 0.25);
  border-left: 4px solid #ffaa00;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 12px;
}

.ezcash-instructions-title {
  font-family: var(--font-cyber);
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffaa00;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ezcash-instructions-list {
  margin: 0;
  padding-left: 18px;
  font-size: 0.78rem;
  color: #cbd5e1;
  line-height: 1.55;
}

.ezcash-instructions-list li {
  margin-bottom: 4px;
}

.ezcash-instructions-list strong {
  color: #00e5ff;
}

/* Slip Upload Component */
.slip-upload-wrapper {
  margin-bottom: 14px;
}

.slip-dropzone {
  background: rgba(2, 10, 26, 0.8);
  border: 1.5px dashed rgba(0, 229, 255, 0.4);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.slip-dropzone:hover,
.slip-dropzone.drag-over {
  background: rgba(0, 229, 255, 0.08);
  border-color: #00e5ff;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
}

.slip-dropzone-icon {
  font-size: 1.6rem;
  color: #00e5ff;
}

.slip-dropzone-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e2e8f0;
}

.slip-dropzone-sub {
  font-size: 0.7rem;
  color: #94a3b8;
}

.slip-preview-card {
  background: rgba(4, 18, 44, 0.9);
  border: 1px solid rgba(0, 255, 136, 0.4);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.slip-preview-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.slip-preview-thumb {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #00ff88;
  cursor: pointer;
  flex-shrink: 0;
}

.slip-preview-info {
  min-width: 0;
}

.slip-preview-filename {
  font-size: 0.78rem;
  font-weight: 700;
  color: #00ff88;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.slip-preview-size {
  font-size: 0.68rem;
  color: #94a3b8;
}

.btn-slip-remove {
  background: rgba(255, 51, 68, 0.15);
  border: 1px solid #ff3344;
  color: #ff3344;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.btn-slip-remove:hover {
  background: #ff3344;
  color: #ffffff;
}

/* Admin Slip Viewer Modal & Table Badge */
.btn-view-slip-badge {
  background: rgba(0, 255, 136, 0.15);
  border: 1px solid #00ff88;
  color: #00ff88;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.btn-view-slip-badge:hover {
  background: #00ff88;
  color: #000814;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

.admin-slip-modal-card {
  background: #020814;
  border: 1.5px solid #00e5ff;
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.4);
  max-width: 650px;
  width: 95%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.admin-slip-image-view {
  max-height: 65vh;
  object-fit: contain;
  width: 100%;
  background: #000000;
  display: block;
}

/* Admin Table Inline Editable Amount */
.admin-table-inline-amount {
  width: 78px;
  padding: 4px 6px;
  font-size: 0.92rem;
  font-weight: 800;
  font-family: 'Courier New', monospace;
  color: #00ff88;
  background: rgba(0, 255, 136, 0.08);
  border: 1.5px solid rgba(0, 255, 136, 0.45);
  border-radius: 6px;
  text-align: left;
  transition: all 0.2s ease;
}

.admin-table-inline-amount:hover {
  background: rgba(0, 255, 136, 0.14);
  border-color: #00ff88;
}

.admin-table-inline-amount:focus {
  border-color: #00ff88 !important;
  background: rgba(0, 255, 136, 0.22) !important;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.6) !important;
  outline: none !important;
}

/* ========================================================
   MOBILE NAVIGATION DRAWER & TOGGLE COMPONENT
   ======================================================== */

.btn-mobile-nav-toggle {
  display: none;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid #00e5ff;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  transition: var(--transition-smooth);
}

.btn-mobile-nav-toggle:hover {
  background: rgba(0, 229, 255, 0.25);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.btn-mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #00e5ff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 6, 16, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-drawer-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-nav-drawer {
  position: fixed !important;
  top: 0;
  right: -340px;
  width: 300px;
  max-width: 86vw;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #030f24 0%, #020712 100%);
  border-left: 1.5px solid #00e5ff;
  box-shadow: -10px 0 40px rgba(0, 229, 255, 0.35);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  padding: 20px 18px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.mobile-nav-drawer.open {
  right: 0 !important;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.25);
  margin-bottom: 18px;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-drawer-close {
  background: rgba(255, 51, 68, 0.15);
  border: 1px solid #ff3344;
  color: #ff3344;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-drawer-close:hover {
  background: #ff3344;
  color: #ffffff;
}

.mobile-nav-menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.15);
  color: #bae6fd;
  text-decoration: none;
  font-family: var(--font-tech);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
}

.mobile-menu-item:hover,
.mobile-menu-item.active {
  background: rgba(0, 229, 255, 0.18);
  border-color: #00e5ff;
  color: #ffffff;
  transform: translateX(4px);
}

.mobile-menu-item.highlight-reseller {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.25), rgba(0, 102, 255, 0.2));
  border-color: #00e5ff;
  color: #00e5ff;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 229, 255, 0.2);
}

/* ========================================================
   COMPREHENSIVE MOBILE VIEW RESPONSIVENESS (All Devices 320px - 1080px)
   ======================================================== */

@media (max-width: 1080px) {
  .dashboard-wrapper {
    padding: 14px 12px 40px;
  }
  
  .dashboard-twins-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .admin-dashboard-layout {
    flex-direction: column;
    padding: 14px 12px 50px;
    gap: 16px;
  }
  
  .admin-sidebar {
    width: 100%;
    position: static;
    top: auto;
  }

  .admin-sidebar-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
  }

  .admin-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .store-nav-links {
    display: none !important;
  }

  .btn-mobile-nav-toggle {
    display: flex !important;
  }

  .store-navbar {
    padding: 10px 16px;
  }

  .hero-container {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 28px;
    padding: 30px 16px;
  }

  .hero-title {
    font-size: 2.65rem !important;
    line-height: 1.16 !important;
  }

  .hero-subtitle {
    margin: 0 auto 24px auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .trust-metrics-grid {
    margin: 0 auto;
  }

  .aimbot-panel-showcase {
    max-width: 100%;
    margin: 0 auto;
  }

  .reseller-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 26px 20px;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  /* Storefront Mobile Optimizations */
  .store-navbar {
    padding: 8px 12px !important;
  }

  .store-logo {
    gap: 8px !important;
  }

  .store-logo-text {
    font-size: 1.12rem !important;
    line-height: 1.1;
  }

  .store-logo-sub {
    font-size: 0.48rem !important;
    letter-spacing: 0.08em !important;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .store-logo-img {
    width: 36px !important;
    height: 36px !important;
    border-radius: 9px !important;
  }

  .store-nav-actions {
    gap: 7px !important;
  }

  .store-nav-actions .btn-nav-login-modal,
  .store-nav-actions .btn-nav-signup-modal {
    display: none !important;
  }

  .btn-nav-whatsapp {
    padding: 6px 11px !important;
    font-size: 0.72rem !important;
    border-radius: 18px !important;
    gap: 5px !important;
  }

  .btn-mobile-nav-toggle {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    padding: 6px !important;
  }

  .hero-title {
    font-size: 2.15rem !important;
    line-height: 1.18 !important;
  }

  .hero-subtitle {
    font-size: 0.92rem !important;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group a, 
  .hero-cta-group button {
    width: 100%;
    justify-content: center;
  }

  .trust-metrics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .metric-card {
    padding: 10px 8px;
  }

  .metric-value {
    font-size: 1.2rem;
  }

  .metric-label {
    font-size: 0.68rem;
  }

  .panel-modules-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .store-products-grid,
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .store-filter-bar,
  .catalog-filters-bar {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .section-header-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .catalog-search-box {
    min-width: 100%;
  }

  /* Reseller Portal Mobile Navigation */
  .dashboard-top-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
  }

  .banner-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
  }

  .dashboard-nav-bar {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 4px 0 10px;
    display: flex;
    gap: 6px;
  }

  .dashboard-tab-btn {
    flex-shrink: 0;
    padding: 8px 12px;
    font-size: 0.76rem;
  }

  /* Wallet Top-up Mobile Grid */
  .topup-amount-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gateway-select-grid {
    grid-template-columns: 1fr;
  }

  .bank-info-grid {
    grid-template-columns: 1fr;
  }

  /* Modals Full-Width & Scrollable on Mobile */
  .clean-auth-card,
  .modal-auth-card,
  .cyber-modal-card,
  .google-auth-card,
  .gcloud-config-card,
  .admin-slip-modal-card {
    width: 96% !important;
    max-width: 520px !important;
    margin: 8px auto !important;
    padding: 18px 14px !important;
    max-height: 90vh !important;
    max-height: 92dvh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .transfer-actions-row {
    flex-direction: column;
    gap: 8px;
  }

  .btn-transfer-cancel,
  .btn-transfer-confirm {
    width: 100%;
    flex: none;
  }

  /* Tables Responsive Touch Scrolling */
  .table-responsive,
  .user-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-bottom: 12px;
  }

  .cyber-table {
    min-width: 620px;
  }

  /* Sound pill positioning on mobile */
  #sound-toggle-container {
    top: 8px;
    right: 8px;
  }

  .btn-sound-pill {
    padding: 4px 8px;
    font-size: 0.7rem;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 1.45rem !important;
  }

  .trust-metrics-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .radar-canvas-screen {
    width: 110px;
    height: 110px;
  }

  .admin-metrics-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar-nav {
    grid-template-columns: 1fr;
  }

  .admin-navbar {
    padding: 10px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .admin-nav-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
  }

  .topup-amount-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .topup-amount-card {
    padding: 12px 6px;
    font-size: 1.05rem;
  }

  .bank-account-highlight,
  .ezcash-number-highlight {
    font-size: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .bank-account-highlight button,
  .ezcash-number-highlight button {
    align-self: flex-end;
  }

  .login-container {
    padding: 12px;
  }

  .cyber-card {
    padding: 24px 16px;
  }

  .portal-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 440px) {
  .hero-title {
    font-size: 1.88rem !important;
    line-height: 1.18 !important;
    letter-spacing: 0.02em !important;
  }
}

/* ========================================================
   UNIVERSAL TOUCH & TAP RESPONSIVENESS ARCHITECTURE
   ======================================================== */
button,
a,
input,
select,
textarea,
.btn-primary-signin,
.btn-generate-keys,
.btn-support,
.btn-demo-fill,
.btn-table-action,
.btn-icon-action,
.btn-cyber-action,
.btn-admin-nav,
.btn-admin-logout,
.btn-action-edit,
.btn-action-delete,
.btn-qr-action,
.btn-qr-clear,
.btn-transfer-confirm,
.btn-transfer-cancel,
.btn-copy-address,
.btn-slip-remove,
.btn-banner-refresh,
.btn-banner-logout,
.dashboard-tab-btn,
.admin-tab-btn,
.user-subtab-btn,
.topup-amount-card,
.method-nested-card,
.store-filter-pill,
.hitbox-pill-btn,
.feature-toggle-row,
.store-nav-link,
.mobile-menu-item,
.password-toggle,
.clean-btn-primary,
.clean-btn-google,
.clean-close-btn,
.fx-toggle-pill {
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: rgba(0, 229, 255, 0.35) !important;
  cursor: pointer !important;
  user-select: none;
  -webkit-user-select: none;
}

/* Touch active feedback */
button:active,
a:active,
.dashboard-tab-btn:active,
.admin-tab-btn:active,
.user-subtab-btn:active,
.topup-amount-card:active,
.btn-primary-signin:active,
.btn-generate-keys:active,
.btn-support:active,
.clean-btn-primary:active {
  transform: scale(0.97) !important;
  transition: transform 0.08s ease !important;
}

/* Ensure background canvases/orbs NEVER block clicks */
#cyber-canvas,
.ambient-orb,
.ambient-orb-1,
.ambient-orb-2,
.cyber-cursor-canvas,
.cyber-cursor-dot,
.cyber-cursor-ring {
  pointer-events: none !important;
}

/* Ensure main containers are above canvas background */
.login-container,
.cyber-panel-card,
.admin-dashboard-layout,
.store-navbar,
.clean-auth-card,
.cyber-modal-card {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}