/* ============================================
   Winum Casino — Official Site Styles
   Exact color palette from official winum.com source:
   --main-loader-bg: #141415  (near-black bg)
   --main-loader-caption-color: #b6b6d2  (secondary text)
   Logo: fill="#0165fb" (brand blue), fill="#010720" (dark bg)
   Core scheme: BLACK + BLUE (#0165fb accent)
   ============================================ */

:root {
  /* ── Core Backgrounds (from --main-loader-bg: #141415) ── */
  --bg-primary:    #141415;
  --bg-secondary:  #0e0e10;
  --bg-card:       #1a1a1e;
  --bg-card-hover: #202028;
  --bg-nav:        rgba(20, 20, 21, 0.96);

  /* ── Brand Blue (from fill="#0165fb" in official SVG logo) ── */
  --blue:          #0165fb;
  --blue-light:    #3d8dff;
  --blue-dark:     #0050cc;
  --blue-glow:     rgba(1, 101, 251, 0.30);

  /* ── Dark Logo BG Blue (from fill="#010720") ── */
  --navy:          #010720;
  --navy-light:    #050e35;

  /* ── Gold Accents ── */
  --gold:          #F2C14B;
  --gold-light:    #F9DC7A;
  --gold-dark:     #D59A22;
  --gold-glow:     rgba(242, 193, 75, 0.25);

  /* ── Text (--main-loader-caption-color: #b6b6d2) ── */
  --text-primary:  #FFFFFF;
  --text-secondary:#b6b6d2;
  --text-muted:    #6e6e8a;

  /* ── Borders ── */
  --border:        rgba(1, 101, 251, 0.18);
  --border-light:  rgba(1, 101, 251, 0.36);
  --border-gold:   rgba(242, 193, 75, 0.30);

  /* ── Status ── */
  --green:         #2ECC71;
  --red:           #E74C3C;

  /* ── Gradients ── */
  --gradient-gold:   linear-gradient(135deg, #D59A22 0%, #F9DC7A 50%, #D59A22 100%);
  --gradient-blue:   linear-gradient(135deg, #0050cc 0%, #3d8dff 100%);
  --gradient-blue2:  linear-gradient(135deg, #0165fb 0%, #49C8FF 100%);
  --gradient-hero:   radial-gradient(ellipse at 55% 40%, #010e2e 0%, #0a0a0c 45%, #141415 100%);
  --gradient-card:   linear-gradient(145deg, #1a1a1e 0%, #0e0e10 100%);

  /* ── Shadows ── */
  --shadow-gold:   0 0 40px rgba(242, 193, 75, 0.20);
  --shadow-blue:   0 0 40px rgba(1, 101, 251, 0.28);
  --shadow-blue2:  0 0 30px rgba(61, 141, 255, 0.22);
  --shadow-card:   0 8px 32px rgba(0, 0, 0, 0.55);

  /* ── Radii ── */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* ── Font (official site uses Inter Variable) ── */
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: color .3s; }
ul, ol { list-style: none; }

/* ─── Typography ──────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -.02em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--text-secondary); }

/* ─── Container ──────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Header ─────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.site-header.scrolled {
  background: rgba(20, 20, 21, 0.99);
  box-shadow: 0 4px 40px rgba(1,101,251,.18), 0 1px 0 var(--border-light);
}

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

/* ─── Logo — remove dark background via blend mode ────── */
img[src*="winum-logo"] {
  mix-blend-mode: screen;
  filter: brightness(1.4) contrast(1.3) saturate(1.2);
}

.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img  {
  height: 58px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.4) contrast(1.3) saturate(1.2);
}

/* Age-gate и footer лого */
.site-footer img[src*="winum-logo"] {
  mix-blend-mode: screen;
  filter: brightness(1.4) contrast(1.3) saturate(1.2);
  display: block;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color .3s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-blue);
  border-radius: 2px;
  transition: width .3s;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue-light); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

/* Header buttons */
.header-actions { display: flex; align-items: center; gap: 10px; }

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
  letter-spacing: .02em;
}

/* Primary – Gold */
.btn-primary {
  background: var(--gradient-gold);
  color: #1a0e00;
  box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(242,193,75,.45);
  filter: brightness(1.08);
}

/* Secondary – Blue (for CTA) */
.btn-blue {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: 0 4px 24px var(--blue-glow);
}
.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(46,166,255,.45);
}

/* Outline – Blue */
.btn-outline {
  background: transparent;
  border: 2px solid var(--blue-light);
  color: var(--blue-light);
}
.btn-outline:hover {
  background: rgba(1,101,251,.14);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.btn-lg  { padding: 16px 42px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm  { padding: 9px 20px;  font-size: .85rem; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s;
}

/* ─── Hero ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  overflow: hidden;
  background-color: var(--bg-primary);
}

/* Real background image with dark overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/hero-bg-v2.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  filter: saturate(0.75) brightness(0.55);
}
.hero:hover .hero-bg {
  transform: scale(1.08);
}
/* Dark gradient overlay for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(1,101,251,.18) 0%, transparent 65%),
    linear-gradient(180deg,
      rgba(20,20,21,.62) 0%,
      rgba(20,20,21,.38) 40%,
      rgba(20,20,21,.62) 80%,
      rgba(20,20,21,.92) 100%
    );
}

/* Background particles / orbs — above overlay */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 70%; height: 70%;
  background: radial-gradient(ellipse, rgba(1,101,251,.14) 0%, transparent 65%);
  animation: heroOrb1 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 2;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%; right: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse, rgba(61,141,255,.10) 0%, transparent 65%);
  animation: heroOrb2 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 2;
}
@keyframes heroOrb1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(5%,8%) scale(1.1); }
}
@keyframes heroOrb2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-5%,-6%) scale(1.15); }
}


.hero-content {
  position: relative;
  z-index: 4;
  max-width: 840px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  background: rgba(1,101,251,.14);
  border: 1px solid rgba(61,141,255,.42);
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 22px;
  background: linear-gradient(135deg, #fff 20%, #6ab0ff 60%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: .9rem;
  font-weight: 500;
}
.hero-feat i { color: var(--gold); font-size: 1.1rem; }

/* ─── Sections ───────────────────────────── */
.section     { padding: 86px 0; position: relative; }
.section-alt { background: var(--bg-secondary); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header h2 span {
  background: var(--gradient-blue2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

.section-divider {
  width: 56px; height: 3px;
  background: var(--gradient-blue);
  border-radius: 2px;
  margin: 0 auto 16px;
  box-shadow: 0 0 18px var(--blue-glow);
}

/* ─── Info Table ─────────────────────────── */
.info-table-wrap {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,.35);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
}
.info-table th, .info-table td {
  padding: 14px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.info-table th {
  background: rgba(1,101,251,.14);
  color: var(--blue-light);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.info-table td {
  color: var(--text-secondary);
  background: rgba(26,26,30,.55);
}
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td {
  background: rgba(1,101,251,.08);
  color: var(--text-primary);
}

/* ─── Cards Grid ─────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .35s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-blue);
  opacity: 0;
  transition: opacity .35s;
}
.card:hover {
  border-color: var(--border-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(1,101,251,.14);
  border: 1px solid rgba(1,101,251,.28);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--blue-light);
  transition: all .3s;
}
.card:hover .card-icon {
  background: rgba(1,101,251,.26);
  box-shadow: 0 0 20px var(--blue-glow);
}
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p  { font-size: .9rem; color: var(--text-muted); }

/* ─── Games Grid ─────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .35s;
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-7px);
  border-color: var(--blue-light);
  box-shadow: var(--shadow-blue);
}
.game-thumb {
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative; overflow: hidden;
  background-color: #1a1a1e;
}
.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.game-card:hover .game-thumb img {
  transform: scale(1.07);
}

/* India highlight image */
.local-highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.game-overlay {
  position: absolute; inset: 0;
  background: rgba(1,101,251,.60);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.game-card:hover .game-overlay { opacity: 1; }
.game-info { padding: 14px 16px; }
.game-info h4 { font-size: .92rem; margin-bottom: 4px; }
.game-info .game-provider { font-size: .78rem; color: var(--text-muted); }

/* ─── Payment Grid ───────────────────────── */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: all .3s;
}
.payment-item:hover {
  border-color: var(--gold-dark);
  background: rgba(242,193,75,.07);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-3px);
}
.payment-item i { font-size: 2rem; color: var(--gold); margin-bottom: 8px; }
.payment-item span { display: block; font-size: .85rem; font-weight: 600; color: var(--text-secondary); }

/* ─── Steps ──────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 32px; }
.step-item  { display: flex; gap: 24px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-blue);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 0 24px var(--blue-glow);
}
.step-content h3 { margin-bottom: 6px; }
.step-content p  { color: var(--text-muted); font-size: .93rem; }

/* ─── FAQ ────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.active { border-color: var(--blue-light); box-shadow: 0 0 18px var(--blue-glow); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  background: none; border: none;
  color: var(--text-primary);
  font-size: .98rem; font-weight: 700;
  font-family: var(--font);
  cursor: pointer; text-align: left; gap: 12px;
}
.faq-question i { color: var(--blue-light); transition: transform .3s; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: .93rem; line-height: 1.75;
}

/* ─── CTA Banner ─────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0a0e1f 0%, #010e30 50%, #0a0e1f 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 56px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; left: 20%;
  width: 60%; height: 160%;
  background: radial-gradient(ellipse, rgba(1,101,251,.20) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; right: 10%;
  width: 50%; height: 120%;
  background: radial-gradient(ellipse, rgba(61,141,255,.10) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2, .cta-banner p, .cta-banner .btn { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p  { margin-bottom: 30px; font-size: 1.05rem; }

/* ─── Trust Strip ────────────────────────── */
.trust-strip {
  display: flex; justify-content: center;
  gap: 40px; flex-wrap: wrap; padding: 30px 0;
}
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-secondary); font-size: .9rem; font-weight: 500;
}
.trust-badge i { color: var(--green); font-size: 1.2rem; }

/* ─── Content List ───────────────────────── */
.content-list { margin: 16px 0 24px; padding-left: 0; }
.content-list li {
  position: relative; padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-secondary); font-size: .93rem; line-height: 1.65;
}
.content-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--blue-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue-glow);
}

/* ─── India Local ────────────────────────── */
.local-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.local-highlight-image {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-blue);
}
.local-highlight-content h3 { margin-bottom: 16px; }

.flag-strip {
  display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0;
}
.flag-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(1,101,251,.10);
  padding: 7px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: .85rem; font-weight: 600; color: var(--text-secondary);
  transition: all .25s;
}
.flag-item:hover {
  border-color: var(--blue-light);
  color: var(--text-primary);
  background: rgba(1,101,251,.20);
}

/* ─── Footer ─────────────────────────────── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--blue-light);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.footer-col p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
  transition: color .3s;
}
.footer-links a:hover { color: var(--blue-light); }
.footer-links a i { color: var(--blue); font-size: .85rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: .83rem; color: var(--text-muted);
}
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-weight: 700; font-size: .78rem;
  flex-shrink: 0;
}

.footer-disclaimer {
  margin-top: 24px; padding: 18px 20px;
  background: rgba(231,76,60,.05);
  border: 1px solid rgba(231,76,60,.18);
  border-radius: var(--radius-md);
  font-size: .8rem; color: var(--text-muted); line-height: 1.65;
}





/* ─── Utilities ──────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ─── IntersectionObserver Reveal Animations ─ */
.reveal-init {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal-init.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Disable all motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .reveal-init {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero::before, .hero::after {
    animation: none;
  }
}

/* ─── Neon Glow Dividers ─────────────────── */
.neon-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
  opacity: .5; margin: 0;
}

/* ════════════════════════════════════════════
   RESPONSIVE — full mobile-first optimisation
   ════════════════════════════════════════════ */

/* ── Tablet ≤ 1024px ──────────────────────── */
@media (max-width: 1024px) {
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .local-highlight   { grid-template-columns: 1fr; }
  .local-highlight-image { aspect-ratio: 16/7; }
  .cards-grid        { grid-template-columns: repeat(2, 1fr); }
  .container         { padding: 0 24px; }
}

/* ── Mobile ≤ 768px ───────────────────────── */
@media (max-width: 768px) {

  /* ── Header ── */
  .site-header { backdrop-filter: blur(20px); }
  .main-nav {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: rgba(20,20,21,.99);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 20px 20px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    width: 100%;
    text-align: left;
  }
  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(1,101,251,.12);
  }
  .mobile-toggle { display: flex; }
  .header-actions .btn-outline { display: none; }
  .header-actions .btn-primary { padding: 10px 18px; font-size: .85rem; }

  /* ── Hero ── */
  .hero {
    padding: 90px 16px 52px;
    min-height: 100svh;
    align-items: center;
  }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); line-height: 1.2; margin-bottom: 16px; }
  .hero-subtitle { font-size: .95rem; margin-bottom: 28px; }
  .hero-badge { font-size: .75rem; padding: 6px 14px; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { padding: 14px 24px; font-size: .95rem; }
  .hero-features {
    gap: 14px;
    margin-top: 36px;
    flex-direction: column;
    align-items: flex-start;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-feat { font-size: .85rem; }

  /* ── Sections ── */
  .section { padding: 48px 0; }
  .section-alt { padding: 48px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .container { padding: 0 16px; }

  /* ── Info Tables — horizontal scroll ── */
  .info-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
  }
  .info-table { min-width: 520px; font-size: .82rem; }
  .info-table th,
  .info-table td { padding: 11px 14px; }
  /* Scroll hint shadow */
  .info-table-wrap::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 32px; height: 100%;
    background: linear-gradient(to left, rgba(20,20,21,.8), transparent);
    pointer-events: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
  }
  .info-table-wrap { position: relative; }

  /* ── Cards Grid ── */
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 24px 20px; }

  /* ── Games Grid ── */
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .game-info h4 { font-size: .85rem; }

  /* ── Payment Grid ── */
  .payment-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .payment-item { padding: 16px 10px; }
  .payment-item i { font-size: 1.6rem; }
  .payment-item span { font-size: .78rem; }

  /* ── Steps ── */
  .steps-list { gap: 20px; }
  .step-item { gap: 14px; }
  .step-num { width: 44px; height: 44px; font-size: 1.1rem; flex-shrink: 0; }
  .step-content h3 { font-size: 1rem; }
  .step-content p { font-size: .88rem; }

  /* ── FAQ ── */
  .faq-question { font-size: .92rem; padding: 16px 18px; }
  .faq-answer-inner { padding: 0 18px 16px; font-size: .88rem; }

  /* ── CTA Banner ── */
  .cta-banner { padding: 32px 20px; border-radius: var(--radius-lg); }
  .cta-banner h2 { font-size: 1.4rem; margin-bottom: 10px; }
  .cta-banner p { font-size: .9rem; margin-bottom: 20px; }
  .cta-banner .btn { width: 100%; justify-content: center; }

  /* ── India Highlight ── */
  .local-highlight { grid-template-columns: 1fr; gap: 28px; }
  .local-highlight-image { aspect-ratio: 16/7; }
  .flag-strip { gap: 8px; }
  .flag-item { font-size: .8rem; padding: 6px 12px; }

  /* ── Trust Strip ── */
  .trust-strip { gap: 20px; }
  .trust-badge { font-size: .82rem; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-links a { font-size: .85rem; padding: 4px 0; }
  .site-footer { padding: 48px 0 24px; }
}

/* ── Small Mobile ≤ 480px ─────────────────── */
@media (max-width: 480px) {

  /* ── Header ── */
  .header-inner { height: 64px; }
  .logo-img {
    height: 38px;
    mix-blend-mode: screen;
    filter: brightness(1.4) contrast(1.3) saturate(1.2);
  }
  .header-actions .btn-primary { padding: 9px 14px; font-size: .8rem; }

  /* ── Hero ── */
  .hero { padding: 80px 14px 44px; }
  .hero h1 { font-size: 1.65rem; }
  .hero-subtitle { font-size: .88rem; line-height: 1.65; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { width: 100%; padding: 15px 20px; font-size: .95rem; }
  .hero-features { max-width: 240px; }

  /* ── Typography ── */
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.05rem; }
  p  { font-size: .9rem; }

  /* ── Tables ── */
  .info-table { min-width: 460px; font-size: .78rem; }
  .info-table th,
  .info-table td { padding: 9px 12px; }

  /* ── Games ── */
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .game-info { padding: 10px 12px; }

  /* ── Payment ── */
  .payment-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* ── Cards ── */
  .card { padding: 20px 16px; }
  .card-icon { width: 46px; height: 46px; font-size: 1.25rem; }

  /* ── Steps ── */
  .step-item { flex-direction: column; gap: 10px; }
  .step-num { width: 40px; height: 40px; font-size: 1rem; }

  /* ── Sections ── */
  .section { padding: 40px 0; }
  .container { padding: 0 14px; }


  /* ── Btn sizes on small screens ── */
  .btn-lg { padding: 14px 28px; font-size: .95rem; }
  .btn    { min-height: 44px; } /* iOS tap target */

  /* ── Neon line ── */
  .neon-line { display: none; }

  /* ── Section divider ── */
  .section-divider { margin-bottom: 12px; }
  .section-header { margin-bottom: 28px; }
}

/* ── Extra-small ≤ 360px ──────────────────── */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.45rem; }
  h2 { font-size: 1.2rem; }
  .container { padding: 0 12px; }
  .hero { padding: 76px 12px 36px; }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid   { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-cta .btn { font-size: .88rem; padding: 13px 16px; }
}

/* ── iOS Safari specifics ─────────────────── */
@supports (-webkit-touch-callout: none) {
  .hero { min-height: 100svh; }
  .main-nav { padding-bottom: env(safe-area-inset-bottom, 28px); }
  .site-footer { padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px)); }
}

/* ── Landscape mobile ─────────────────────── */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .hero h1 { font-size: 1.5rem; }
  .hero-features { flex-direction: row; flex-wrap: wrap; max-width: 100%; }
}
