/* ==========================================================================
   RETAKE CYBER CLUB (retake.kz) — ROKU Cyber Lounge Inspired Design
   Palette: Deep Obsidian Black, Electric Cyber Purple (#b11dff), Neon Cyan (#00f0ff)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* ROKU Theme Colors */
  --bg-darkest: #000000;
  --bg-main: #050409;
  --bg-card: rgba(14, 10, 22, 0.72);
  --bg-card-hover: rgba(22, 16, 35, 0.88);
  --bg-glass: rgba(18, 13, 30, 0.6);

  /* Cyber Neons */
  --color-brand: #b11dff;
  --brand-rgb: 177, 29, 255;
  --brand-glow: rgba(177, 29, 255, 0.4);
  --brand-light: #c084fc;
  --brand-dark: #7928ca;

  --cyan: #00f0ff;
  --cyan-rgb: 0, 240, 255;
  --cyan-glow: rgba(0, 240, 255, 0.35);

  --pink: #ff007a;
  --pink-rgb: 255, 0, 122;
  --pink-glow: rgba(255, 0, 122, 0.35);

  --gold: #ffb703;
  --gold-glow: rgba(255, 183, 3, 0.3);

  --green: #10b981;
  --green-glow: rgba(16, 185, 129, 0.3);

  /* Neutrals */
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-brand: rgba(177, 29, 255, 0.3);
  --border-neon: rgba(177, 29, 255, 0.5);

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(177, 29, 255, 0.16) 0%, transparent 55%),
    radial-gradient(circle at 85% 25%, rgba(0, 240, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 15% 65%, rgba(121, 40, 202, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 95%, rgba(177, 29, 255, 0.1) 0%, transparent 55%);
  background-attachment: fixed;
}

/* Subtle Cyber Grid Background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   BADGE SYSTEM (ROKU HUD Aesthetic)
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  white-space: nowrap;
  line-height: 1.3;
}

.badge i {
  font-size: 0.85em;
}

.badge-brand, .badge-purple {
  background: rgba(177, 29, 255, 0.12);
  color: #c084fc;
  border-color: rgba(177, 29, 255, 0.45);
  box-shadow: 0 0 16px rgba(177, 29, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.badge-brand:hover {
  border-color: #b11dff;
  background: rgba(177, 29, 255, 0.22);
  box-shadow: 0 0 24px rgba(177, 29, 255, 0.5);
  color: #ffffff;
  transform: translateY(-1px);
}

.badge-cyan {
  background: rgba(0, 240, 255, 0.09);
  color: #00f0ff;
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.2);
}

.badge-cyan:hover {
  border-color: #00f0ff;
  background: rgba(0, 240, 255, 0.18);
  color: #ffffff;
  transform: translateY(-1px);
}

.badge-pink {
  background: rgba(255, 0, 122, 0.1);
  color: #ff007a;
  border-color: rgba(255, 0, 122, 0.45);
  box-shadow: 0 0 16px rgba(255, 0, 122, 0.2);
}

.badge-gold {
  background: rgba(255, 183, 3, 0.1);
  color: #ffb703;
  border-color: rgba(255, 183, 3, 0.45);
  box-shadow: 0 0 16px rgba(255, 183, 3, 0.2);
}

.badge-live {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.45);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.22);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #34d399;
  animation: radar-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes radar-ping {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(2.3); opacity: 0; }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 38px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(177, 29, 255, 0.3));
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.02);
}

.footer-logo-img {
  height: 44px;
  max-width: 260px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #b11dff, #00f0ff);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

/* ==========================================================================
   BUTTONS (ROKU Neon Glow Aesthetic)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

/* Purple Brand Button */
.btn-brand, .btn-purple {
  background: linear-gradient(135deg, #b11dff 0%, #7928ca 100%);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(177, 29, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-brand:hover, .btn-purple:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #c084fc 0%, #b11dff 100%);
  box-shadow: 0 6px 32px rgba(177, 29, 255, 0.65);
  color: #fff;
}

/* Cyan Button */
.btn-cyan {
  background: linear-gradient(135deg, #00f0ff 0%, #00a8ff 100%);
  color: #000000;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
  font-weight: 800;
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 28px rgba(0, 240, 255, 0.55);
}

/* Outline Button */
.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: #b11dff;
  color: #ffffff;
  background: rgba(177, 29, 255, 0.12);
  box-shadow: 0 0 20px rgba(177, 29, 255, 0.25);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
}

.mobile-menu {
  display: none;
}

/* ==========================================================================
   HERO SECTION (ROKU Style Headline & Stats)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 70px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    radial-gradient(circle at 50% 10%, rgba(177, 29, 255, 0.22) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(121, 40, 202, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 20%, #c084fc 60%, #b11dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 30px rgba(177, 29, 255, 0.3);
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 720px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px 28px;
  background: rgba(14, 10, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(177, 29, 255, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 4px;
  letter-spacing: 0.02em;
}

.stat-val span {
  color: #c084fc;
  font-size: 1.15rem;
}

.stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
section {
  padding: 100px 0;
  position: relative;
  scroll-margin-top: 80px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.section-tag {
  margin-bottom: 14px;
}

.section-tag .badge {
  padding: 7px 20px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.section-title {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   ZONES SECTION (ROKU Spec Cards)
   ========================================================================== */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.zone-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
}

.zone-card:hover {
  transform: translateY(-8px);
  border-color: rgba(177, 29, 255, 0.6);
  box-shadow: 0 16px 40px rgba(177, 29, 255, 0.25), inset 0 0 20px rgba(177, 29, 255, 0.06);
  background: var(--bg-card-hover);
}

.zone-card.featured {
  border-color: rgba(177, 29, 255, 0.35);
  box-shadow: 0 10px 30px rgba(177, 29, 255, 0.15);
}

.zone-card.featured:hover {
  border-color: #b11dff;
  box-shadow: 0 18px 45px rgba(177, 29, 255, 0.4);
}

.zone-header {
  padding: 24px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
}

.zone-card.featured .zone-header {
  background: linear-gradient(180deg, rgba(177, 29, 255, 0.1) 0%, transparent 100%);
}

.zone-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.zone-name {
  font-size: 1.5rem;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.zone-sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.zone-specs {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.spec-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(177, 29, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  font-size: 0.95rem;
  flex-shrink: 0;
  border: 1px solid rgba(177, 29, 255, 0.2);
}

.spec-item strong {
  color: #ffffff;
  font-weight: 600;
}

.zone-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   PACKAGES SECTION (Тарифные предложения)
   ========================================================================== */
.bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bar-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
  backdrop-filter: blur(14px);
}

.bar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(177, 29, 255, 0.5);
  box-shadow: 0 12px 30px rgba(177, 29, 255, 0.2);
  background: var(--bg-card-hover);
}

.bar-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.bar-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.bar-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   DEPOSIT BONUS SECTION
   ========================================================================== */
.deposit-box {
  background: var(--bg-card);
  border: 1px solid rgba(177, 29, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 44px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.deposit-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.deposit-stat-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.deposit-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(177, 29, 255, 0.5);
}

.deposit-stat-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.deposit-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
}

.deposit-stat-num.highlight-bonus {
  color: #34d399;
  text-shadow: 0 0 15px rgba(52, 211, 153, 0.4);
}

.deposit-stat-num.highlight-total {
  color: #c084fc;
  text-shadow: 0 0 15px rgba(177, 29, 255, 0.4);
}

/* ==========================================================================
   FAQ ACCORDION (ROKU Cyber Lounge Style)
   ========================================================================== */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(177, 29, 255, 0.35);
}

.faq-item.open {
  border-color: #b11dff;
  box-shadow: 0 0 25px rgba(177, 29, 255, 0.2);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  outline: none;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(180deg);
  background: #b11dff;
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

/* ==========================================================================
   CONTACTS & LOCATION SECTION (ROKU High-Tech Card)
   ========================================================================== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card:hover {
  border-color: rgba(177, 29, 255, 0.3);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(177, 29, 255, 0.12);
  border: 1px solid rgba(177, 29, 255, 0.25);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-info-value {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
  margin-top: 2px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #000000;
  padding: 60px 0 30px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-title {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: #c084fc;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-dialog {
  background: #0a0812;
  border: 1px solid rgba(177, 29, 255, 0.5);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 34px;
  position: relative;
  box-shadow: 0 24px 70px rgba(177, 29, 255, 0.25);
  transform: translateY(20px) scale(0.96);
  transition: transform var(--transition-smooth);
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: #fff;
}

.modal-title {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}

.form-input, .form-select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus, .form-select:focus {
  border-color: #b11dff;
  box-shadow: 0 0 16px rgba(177, 29, 255, 0.3);
}

.form-select option {
  background: #0a0812;
  color: #fff;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(14, 10, 22, 0.95);
  border: 1px solid #b11dff;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  animation: slide-in 0.3s ease forwards;
}

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

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */
@media (max-width: 1024px) {
  .zones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .deposit-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-links, .nav-actions .btn-outline {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .zones-grid {
    grid-template-columns: 1fr;
  }
  .deposit-results-grid {
    grid-template-columns: 1fr;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }

  /* Mobile Nav Drawer */
  .mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    z-index: 999;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu .nav-link {
    font-size: 1.25rem;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .bar-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   INTERACTIVE BOOKING WIZARD & KASPI PAY CHECKOUT
   ========================================================================== */

.step-indicator {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.step-badge {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.step-badge.active {
  background: rgba(121, 40, 202, 0.25);
  color: #fff;
  border-color: rgba(121, 40, 202, 0.6);
  box-shadow: 0 0 16px rgba(121, 40, 202, 0.25);
}

.zone-picker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.zone-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.zone-pill:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.zone-pill.selected {
  background: rgba(121, 40, 202, 0.2);
  border-color: #a855f7;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 16px;
  max-width: 220px;
}

.btn-counter {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.btn-counter:hover {
  background: rgba(255, 255, 255, 0.16);
}

.counter-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.tariff-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.tariff-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tariff-pill:hover {
  background: rgba(255, 255, 255, 0.06);
}

.tariff-pill.selected {
  background: rgba(255, 0, 122, 0.15);
  border-color: #ff007a;
  box-shadow: 0 0 18px rgba(255, 0, 122, 0.2);
}

.payment-method-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pay-option:hover {
  background: rgba(255, 255, 255, 0.06);
}

.pay-option.selected {
  background: rgba(241, 70, 53, 0.15);
  border-color: #f14635;
  box-shadow: 0 0 20px rgba(241, 70, 53, 0.2);
}

.btn-kaspi {
  background: #f14635;
  color: #fff;
}

.btn-kaspi:hover {
  background: #d93828;
}

.booking-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  gap: 12px;
}

.kaspi-timer-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #f14635;
  box-shadow: 0 0 24px rgba(241, 70, 53, 0.4);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto;
}

.qr-container-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px;
  display: inline-block;
  margin-top: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.qr-img {
  width: 200px;
  height: 200px;
  display: block;
}

.ticket-card {
  background: linear-gradient(145deg, rgba(26, 21, 40, 0.95), rgba(13, 10, 22, 0.95));
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 14px;
  padding: 20px;
  margin-top: 18px;
  text-align: left;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.ticket-lbl {
  color: var(--text-muted);
}

.ticket-val {
  font-weight: 700;
  color: #fff;
}

