/* ==========================================================================
   UNKNOWN CHEATS - CYBERPUNK AUTHENTICATION (LOGIN / REGISTER)
   Interactive Canvas Particle Background & Official Holographic Logo
   ========================================================================== */

:root {
  --bg-deep: #06070b;
  --bg-card: rgba(13, 16, 26, 0.88);
  --bg-input: #080912;
  --bg-pill: rgba(18, 22, 36, 0.7);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: #8b5cf6;
  
  --purple-neon: #a855f7;
  --purple-bright: #c084fc;
  --purple-deep: #7c3aed;
  --purple-gradient: linear-gradient(135deg, #9333ea 0%, #7c3aed 50%, #4f46e5 100%);
  --cyan-neon: #06b6d4;
  --cyan-bright: #22d3ee;
  
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-light: #cbd5e1;

  --success-green: #10b981;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-cyber: 'Orbitron', 'Inter', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-white);
  font-family: var(--font-main);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  padding: 30px 16px;
}

/* ==========================================================================
   INTERACTIVE CYBER CANVAS & ANIMATED BACKGROUND
   ========================================================================== */
.cyber-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: auto;
}

/* Ambient Radial Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
  z-index: 1;
  opacity: 0.6;
  animation: glowFloat 12s ease-in-out infinite alternate;
}

.glow-top-left {
  top: -150px;
  left: -150px;
  width: 550px;
  height: 550px;
  background: rgba(124, 58, 237, 0.25);
}

.glow-bottom-right {
  bottom: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: rgba(6, 182, 212, 0.18);
  animation-delay: -6s;
}

.glow-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
}

@keyframes glowFloat {
  0% { transform: scale(0.9) translate(0, 0); }
  50% { transform: scale(1.1) translate(20px, -20px); }
  100% { transform: scale(0.95) translate(-15px, 25px); }
}

/* Cyber Scanlines Effect */
.cyber-scanlines {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    rgba(18, 16, 38, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%
  );
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}

/* Animated Horizon Grid */
.cyber-perspective-grid {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35vh;
  background-image: 
    linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
  z-index: 1;
  transform: perspective(300px) rotateX(45deg);
  transform-origin: bottom center;
}

/* Main Container */
.login-page-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
  margin: auto;
}

.auth-wrapper {
  display: grid;
  grid-template-columns: 1fr 490px;
  gap: 60px;
  align-items: center;
}

/* ==========================================================================
   LEFT COLUMN: BRAND SHOWCASE WITH OFFICIAL LOGO
   ========================================================================== */
.brand-showcase-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0;
}

/* Live Server Status Pill */
.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 12, 22, 0.85);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #34d399;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
  backdrop-filter: blur(12px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.85); opacity: 0.7; box-shadow: 0 0 5px #10b981; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 14px #10b981; }
  100% { transform: scale(0.85); opacity: 0.7; box-shadow: 0 0 5px #10b981; }
}

.status-divider {
  color: var(--text-dim);
}

.live-ping {
  font-family: var(--font-mono);
  color: var(--cyan-bright);
}

/* Official Logo Hologram Container */
.logo-hologram-container {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 24px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.logo-hologram-container:hover {
  transform: translateY(-6px) scale(1.03);
}

.logo-back-glow {
  position: absolute;
  inset: -15px;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, rgba(6, 182, 212, 0.3) 50%, transparent 75%);
  filter: blur(18px);
  opacity: 0.8;
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.6; filter: blur(14px); transform: scale(0.96); }
  100% { opacity: 0.95; filter: blur(24px); transform: scale(1.06); }
}

.logo-rotating-border {
  position: absolute;
  inset: -3px;
  border-radius: 28px;
  background: conic-gradient(from 0deg, #a855f7, #06b6d4, #d946ef, #6366f1, #a855f7);
  animation: rotateBorder 8s linear infinite;
  opacity: 0.75;
}

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

.logo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background: #090a12;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.9),
    inset 0 0 25px rgba(139, 92, 246, 0.25);
}

.official-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4));
  transition: transform 0.3s ease;
}

.logo-hologram-container:hover .official-logo-img {
  transform: scale(1.05);
}

/* Futuristic Tech Corners on Logo */
.logo-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--cyan-bright);
  border-style: solid;
  pointer-events: none;
  z-index: 3;
}

.corner-tl { top: -6px; left: -6px; border-width: 2px 0 0 2px; }
.corner-tr { top: -6px; right: -6px; border-width: 2px 2px 0 0; }
.corner-bl { bottom: -6px; left: -6px; border-width: 0 0 2px 2px; }
.corner-br { bottom: -6px; right: -6px; border-width: 0 2px 2px 0; }

/* Brand Heading */
.brand-heading {
  font-size: 2.85rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.1;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.neon-text {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.neon-purple {
  background: linear-gradient(135deg, #c084fc 0%, #a855f7 60%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(192, 132, 252, 0.5);
}

.brand-exclamation {
  color: var(--cyan-bright);
  text-shadow: 0 0 15px rgba(6, 182, 212, 0.8);
}

/* Slogan */
.brand-tagline {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 26px;
}

/* Feature Pills */
.feature-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 480px;
  margin-bottom: 36px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-pill);
  border: 1px solid rgba(168, 85, 247, 0.28);
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-pill:hover {
  border-color: rgba(6, 182, 212, 0.7);
  background: rgba(139, 92, 246, 0.2);
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.35);
  transform: translateY(-3px) scale(1.03);
  color: #fff;
}

.pill-icon {
  font-size: 0.95rem;
}

/* 3-Column Stats Row */
.stats-counter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 460px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.28);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon-wrap {
  background: rgba(6, 182, 212, 0.2);
  border-color: var(--cyan-bright);
  color: var(--cyan-bright);
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.4);
  transform: scale(1.1);
}

.stat-number {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* ==========================================================================
   RIGHT COLUMN: AUTH CARD PANEL
   ========================================================================== */
.auth-card-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 26px;
  padding: 38px 34px;
  box-shadow: 
    0 25px 65px -15px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(124, 58, 237, 0.15);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.auth-card-panel:hover {
  border-color: rgba(168, 85, 247, 0.35);
}

.auth-card-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.6), rgba(168, 85, 247, 0.8), transparent);
}

/* Header */
.panel-header {
  text-align: center;
  margin-bottom: 24px;
}

.header-logo-badge {
  position: relative;
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
}

.badge-mini-logo {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: #090a12;
  border: 1px solid rgba(168, 85, 247, 0.4);
  padding: 4px;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.35);
  display: block;
}

.badge-glow-ring {
  position: absolute;
  inset: -3px;
  border-radius: 19px;
  background: linear-gradient(135deg, #a855f7, #06b6d4);
  opacity: 0.5;
  filter: blur(6px);
  z-index: -1;
}

.panel-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #ffffff 0%, #c084fc 60%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.panel-subtitle {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Auth Tabs Navigation */
.auth-tabs-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #080910;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 24px;
}

.tab-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.tab-nav-btn:hover {
  color: var(--text-light);
}

.tab-nav-btn.active {
  background: rgba(139, 92, 246, 0.16);
  border-color: rgba(168, 85, 247, 0.5);
  color: var(--text-white);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.25);
}

.tab-arrow {
  color: #c084fc;
  font-size: 1.05rem;
}

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

.auth-form-content.hidden {
  display: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}

.input-field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-dim);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.cyber-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 42px 12px 42px;
  font-size: 0.9rem;
  color: var(--text-white);
  font-family: inherit;
  outline: none;
  transition: all 0.25s ease;
}

.cyber-input::placeholder {
  color: #475569;
}

.cyber-input:focus {
  border-color: var(--purple-neon);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2), 0 0 20px rgba(168, 85, 247, 0.2);
  background: #0b0d18;
}

.password-toggle-btn {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.password-toggle-btn:hover {
  color: var(--purple-bright);
}

.hidden {
  display: none !important;
}

/* Actions Row: Remember Me & Forgot Password */
.form-row-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-top: -2px;
}

.remember-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}

.remember-label input[type="checkbox"] {
  accent-color: #8b5cf6;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.forgot-pass-link, .terms-inline-link {
  color: #a855f7;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.forgot-pass-link:hover, .terms-inline-link:hover {
  color: var(--cyan-bright);
  text-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
  text-decoration: underline;
}

/* ==========================================================================
   CLOUDFLARE TURNSTILE BOX (INTERACTIVE HUMAN VERIFICATION)
   ========================================================================== */
.turnstile-box {
  background: #080912;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 2px;
  cursor: pointer;
  user-select: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.turnstile-box:hover {
  border-color: rgba(6, 182, 212, 0.45);
  background: #0b0e1a;
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.15);
}

.turnstile-box:active {
  transform: scale(0.99);
}

.turnstile-box.verified {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(8, 16, 20, 0.95);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
  cursor: default;
}

.turnstile-box.verified:hover {
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

.turnstile-box.shake-warning {
  animation: turnstileShake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  border-color: #f59e0b !important;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4) !important;
}

@keyframes turnstileShake {
  10%, 90% { transform: translateX(-3px); }
  20%, 80% { transform: translateX(5px); }
  30%, 50%, 70% { transform: translateX(-5px); }
  40%, 60% { transform: translateX(5px); }
}

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

/* Checkbox, Spinner & Checkmark Container */
.turnstile-check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.turnstile-checkbox-icon {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease;
}

.turnstile-box:hover .turnstile-checkbox-icon {
  border-color: var(--cyan-bright);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

/* Turnstile Spinner */
.turnstile-spinner {
  width: 22px;
  height: 22px;
  border: 2.5px solid rgba(255, 255, 255, 0.12);
  border-top-color: #f38020;
  border-right-color: #faad3f;
  border-radius: 50%;
  animation: cfSpin 0.75s linear infinite;
}

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

/* Success Checkmark */
.turnstile-check.verified-badge {
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1.5px solid #10b981;
  color: #10b981;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.35);
  animation: popIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.turnstile-text {
  display: flex;
  flex-direction: column;
}

.turnstile-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #e2e8f0;
  transition: color 0.2s ease;
}

.turnstile-box.verified .turnstile-title {
  color: #ffffff;
  font-weight: 700;
}

.turnstile-ray {
  font-size: 0.68rem;
  color: #64748b;
  font-family: var(--font-mono);
  margin-top: 1px;
}

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

.cloudflare-logo {
  display: block;
}

.turnstile-legal {
  display: flex;
  flex-direction: column;
  text-align: right;
  line-height: 1.1;
}

.cf-brand {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
}

.cf-links {
  font-size: 0.62rem;
  color: #64748b;
}

/* ==========================================================================
   BUTTONS: SIGN IN WITH LIGHT SWEEP
   ========================================================================== */
.btn-cyber-submit {
  position: relative;
  width: 100%;
  background: var(--purple-gradient);
  border: none;
  border-radius: 12px;
  padding: 13px 20px;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.45);
  transition: all 0.25s ease;
  font-family: inherit;
  margin-top: 4px;
  overflow: hidden;
}

.btn-cyber-submit::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(255, 255, 255, 0.35), 
    transparent
  );
  transform: rotate(25deg);
  animation: lightSweep 4s infinite;
}

@keyframes lightSweep {
  0% { left: -60%; }
  30% { left: 140%; }
  100% { left: 140%; }
}

.btn-cyber-submit:hover {
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.8), 0 0 20px rgba(6, 182, 212, 0.4);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-cyber-submit:active {
  transform: translateY(0);
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.btn-cyber-submit:hover .btn-arrow {
  transform: translateX(4px);
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 6px 0;
  color: var(--text-dim);
  font-size: 0.78rem;
}

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

.auth-divider span {
  padding: 0 14px;
}

/* Google Button */
.btn-social-google {
  width: 100%;
  background: #0f111e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 11px 20px;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-social-google:hover {
  background: #15182a;
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.google-svg {
  flex-shrink: 0;
}

/* Back to Store Link */
.back-link-box {
  text-align: center;
  margin-top: 10px;
}

.back-store-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.back-store-link:hover {
  color: var(--cyan-bright);
  transform: translateX(-3px);
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.back-dash {
  font-weight: 900;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.cyber-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(13, 16, 26, 0.95);
  border: 1px solid rgba(168, 85, 247, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(139, 92, 246, 0.3);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.cyber-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

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

.toast-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.toast-msg {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile Phones)
   ========================================================================== */
@media (max-width: 992px) {
  .auth-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 520px;
    margin: 0 auto;
  }

  .brand-showcase-column {
    padding-bottom: 0;
  }

  .brand-heading {
    font-size: 2.2rem;
  }

  .logo-hologram-container {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 540px) {
  body {
    padding: 16px 12px;
  }

  .auth-card-panel {
    padding: 26px 18px;
    border-radius: 20px;
  }

  .logo-hologram-container {
    width: 130px;
    height: 130px;
    margin-bottom: 16px;
  }

  .brand-heading {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .brand-tagline {
    font-size: 0.88rem;
  }

  .stats-counter-row {
    gap: 10px;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .turnstile-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .turnstile-right {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ==========================================================================
   FEATURE 1: CYBER KERNEL PRELOADER (1:1 Matching Image 1)
   ========================================================================== */
.preloader-portal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #060813;
  background-image: 
    radial-gradient(circle at 50% 35%, rgba(139, 92, 246, 0.18) 0%, transparent 65%),
    radial-gradient(circle at 50% 70%, rgba(0, 240, 255, 0.08) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-portal.fade-out {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

.preloader-center-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 520px;
  width: 100%;
}

.preloader-radar-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-glow-disc {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, rgba(0, 240, 255, 0.1) 50%, transparent 70%);
  filter: blur(8px);
  animation: radarPulse 2.4s ease-in-out infinite alternate;
}

.orbit-track-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(168, 85, 247, 0.45);
  animation: orbitRotate 3.6s linear infinite;
}

.orbit-particle {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00f0ff;
  box-shadow: 0 0 14px #00f0ff, 0 0 24px #00f0ff;
}

.orbit-track-ring-inner {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.25);
  animation: orbitRotateRev 5s linear infinite;
}

.orbit-particle-reverse {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c084fc;
  box-shadow: 0 0 10px #c084fc;
}

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

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

@keyframes radarPulse {
  from { opacity: 0.6; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1.08); }
}

.preloader-logo-squircle {
  width: 78px;
  height: 78px;
  background: #0b0e1e;
  border-radius: 20px;
  border: 1.5px solid rgba(168, 85, 247, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 18px rgba(139, 92, 246, 0.35);
  overflow: hidden;
  z-index: 2;
}

.preloader-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preloader-kernel-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-family: monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #94a3b8;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.12);
}

.live-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 1.4s infinite;
}

.preloader-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #ffffff;
  text-shadow: 0 0 25px rgba(168, 85, 247, 0.65), 0 0 50px rgba(0, 240, 255, 0.35);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.title-decor {
  color: #a855f7;
  font-size: 1.6rem;
  opacity: 0.85;
}

.preloader-subtitle {
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #94a3b8;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.preloader-terminal-card {
  width: 100%;
  max-width: 440px;
  background: rgba(13, 17, 38, 0.75);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 240, 255, 0.04);
}

.terminal-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: monospace;
  font-size: 0.76rem;
  margin-bottom: 0.7rem;
}

.terminal-prompt {
  color: #c084fc;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.terminal-percent {
  color: #00f0ff;
  font-weight: 800;
}

.terminal-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.85rem;
  position: relative;
}

.terminal-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00f0ff, #8b5cf6, #ec4899);
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.9);
  transition: width 0.12s linear;
}

.terminal-log-row {
  font-family: monospace;
  font-size: 0.68rem;
  color: #64748b;
  letter-spacing: 0.5px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.preloader-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.p-badge {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 12px;
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45), 0 0 15px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  animation: waPulseGlow 2.5s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65), 0 0 25px rgba(37, 211, 102, 0.5);
}

.floating-wa-svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(37, 211, 102, 0.4);
  font-family: sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPulseGlow {
  0%, 100% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 640px) {
  .floating-whatsapp-btn {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
  .floating-wa-svg {
    width: 28px;
    height: 28px;
  }
  .preloader-title {
    font-size: 1.6rem;
  }
  .preloader-terminal-card {
    padding: 1rem;
  }
}
