/* =========================================================
   WINTINO CASINO — Wine Cellar Theme
   Pure CSS, no JS animations.
   ========================================================= */

:root {
  --wine-50:  #f9eaea;
  --wine-100: #f0c9c9;
  --wine-300: #c46c6c;
  --wine-400: #a33f44;
  --wine-500: #7a1f2b;
  --wine-600: #5e1822;
  --wine-700: #481319;
  --wine-800: #330d12;
  --wine-900: #1f070a;

  --oak-100: #e6d2b3;
  --oak-200: #cdae82;
  --oak-300: #a98556;
  --oak-400: #82643d;
  --oak-500: #5e472a;
  --oak-700: #372818;
  --oak-800: #251a10;

  --cream:  #f5ead2;
  --ivory:  #fbf6e9;
  --brick:  #7a3326;
  --brick-dark: #5a261c;
  --choco:  #2b1810;
  --choco-2:#1a0e07;

  --gold:   #c9a14a;
  --gold-2: #e0bd6a;
  --amber:  #e6a93b;
  --copper: #b86b3a;

  --shadow-warm: 0 20px 50px -20px rgba(122, 31, 43, .55);
  --shadow-deep: 0 30px 60px -20px rgba(0, 0, 0, .65);
  --inner-glow:  inset 0 0 60px rgba(230, 169, 59, .08);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --container: 1200px;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Cinzel', 'Cormorant Garamond', serif;
  --sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* =========================================================
   GLOBAL
   ========================================================= */

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

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--cream);
  background:
    radial-gradient(ellipse at top, rgba(122,31,43,.18), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(184,107,58,.10), transparent 55%),
    linear-gradient(180deg, #1a0e07 0%, #2b1810 40%, #1a0e07 100%);
  background-attachment: fixed;
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--choco);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

::selection { background: var(--gold); color: var(--choco); }

/* =========================================================
   COMMON SECTION TYPOGRAPHY
   ========================================================= */
section { position: relative; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 12.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding: 8px 16px;
  border: 1px solid rgba(201, 161, 74, .35);
  border-radius: 999px;
  background: rgba(0, 0, 0, .25);
  box-shadow: 0 0 30px rgba(230, 169, 59, .08) inset;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: .02em;
  color: var(--ivory);
  margin: 0 0 18px;
  text-shadow: 0 2px 0 rgba(0,0,0,.4), 0 0 30px rgba(230, 169, 59, .12);
}

.section-desc {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(245, 234, 210, .8);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

/* =========================================================
   BUTTONS — wooden plates with warm glow
   ========================================================= */
.btn-gold,
.btn-wood,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
  border: 1px solid transparent;
  position: relative;
  isolation: isolate;
}

.btn-lg { padding: 18px 34px; font-size: 15px; }

.btn-gold {
  background: linear-gradient(180deg, #e0bd6a 0%, #c9a14a 60%, #9a7b34 100%);
  color: #2b1810;
  border-color: rgba(255, 235, 180, .55);
  box-shadow:
    0 1px 0 rgba(255, 235, 180, .8) inset,
    0 -2px 0 rgba(0, 0, 0, .25) inset,
    0 14px 32px -10px rgba(230, 169, 59, .55),
    0 0 0 1px rgba(0, 0, 0, .25);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 235, 180, 1) inset,
    0 -2px 0 rgba(0, 0, 0, .25) inset,
    0 18px 38px -10px rgba(230, 169, 59, .85),
    0 0 0 1px rgba(0, 0, 0, .25);
}

.btn-wood {
  color: var(--ivory);
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,.04) 0 2px, transparent 2px 6px),
    linear-gradient(180deg, #6a4f31 0%, #4a371f 100%);
  border-color: rgba(201, 161, 74, .45);
  box-shadow:
    0 1px 0 rgba(255, 220, 170, .12) inset,
    0 -2px 0 rgba(0, 0, 0, .35) inset,
    0 14px 32px -14px rgba(0, 0, 0, .65);
}
.btn-wood:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow:
    0 1px 0 rgba(255, 220, 170, .18) inset,
    0 -2px 0 rgba(0, 0, 0, .35) inset,
    0 18px 38px -10px rgba(230, 169, 59, .35),
    0 0 0 1px rgba(201, 161, 74, .35);
}

.btn-ghost {
  color: var(--cream);
  background: transparent;
  border-color: rgba(201, 161, 74, .55);
}
.btn-ghost:hover {
  color: var(--gold-2);
  border-color: var(--gold);
  background: rgba(201, 161, 74, .08);
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  background:
    linear-gradient(180deg, rgba(43, 24, 16, .92), rgba(43, 24, 16, .78)),
    repeating-linear-gradient(90deg, rgba(255, 220, 170, .03) 0 2px, transparent 2px 6px);
  border-bottom: 1px solid rgba(201, 161, 74, .25);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.7);
}
.site-header::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(230, 169, 59, .55), transparent);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 44px; height: 44px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(230, 169, 59, .35), rgba(0,0,0,.4));
  box-shadow:
    0 0 0 1px rgba(201, 161, 74, .55),
    0 0 28px rgba(230, 169, 59, .25);
  animation: candleFlicker 4.5s infinite ease-in-out;
}
.brand-svg { width: 30px; height: 30px; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ivory);
  letter-spacing: .04em;
}
.brand-sub {
  font-size: 9.5px;
  letter-spacing: .42em;
  color: var(--gold-2);
  margin-top: 4px;
}

.brand--footer .brand-mark { animation: none; }

/* nav */
.nav-toggle { display: none; }
.nav-burger { display: none; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.primary-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
}
.primary-nav ul a {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  font-size: 14px;
  letter-spacing: .04em;
  color: rgba(245, 234, 210, .85);
  border-radius: var(--r-sm);
  transition: color .25s ease, background .25s ease;
}
.primary-nav ul a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s ease;
}
.primary-nav ul a:hover {
  color: var(--gold-2);
  background: rgba(201, 161, 74, .07);
  text-shadow: 0 0 12px rgba(230, 169, 59, .45);
}
.primary-nav ul a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-cta .btn-ghost,
.nav-cta .btn-gold { padding: 10px 18px; font-size: 12.5px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 110px 24px 90px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(230,169,59,.18), transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(122, 31, 43, .55), transparent 60%),
    linear-gradient(180deg, #2b1810 0%, #1a0e07 100%);
}

/* brick wall texture using CSS */
.hero-bricks {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(43, 24, 16, .55), rgba(26, 14, 7, .85)),
    repeating-linear-gradient(0deg,
      #5a261c 0,
      #5a261c 38px,
      #3b1612 38px,
      #3b1612 41px),
    repeating-linear-gradient(90deg,
      #6a3326 0, #6a3326 110px,
      #3b1612 110px, #3b1612 113px);
  background-blend-mode: multiply, normal, normal;
  opacity: .55;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 40%, transparent 90%);
}
/* offset row */
.hero-bricks::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg,
      transparent 0 41px,
      transparent 41px 79px,
      transparent 79px 82px),
    repeating-linear-gradient(90deg,
      #6a3326 55px, #6a3326 165px,
      #3b1612 165px, #3b1612 168px);
  background-size: 100% 82px;
  background-position: 0 41px;
  background-repeat: repeat;
  mix-blend-mode: multiply;
  opacity: .5;
}

/* arch */
.hero-arch {
  position: absolute;
  left: 50%; top: 60px;
  transform: translateX(-50%);
  width: min(900px, 90%);
  height: 700px;
  background:
    radial-gradient(ellipse 50% 70% at 50% 100%, rgba(230, 169, 59, .12), transparent 70%);
  border-top-left-radius: 50% 70%;
  border-top-right-radius: 50% 70%;
  border: 1px solid rgba(201, 161, 74, .12);
  box-shadow:
    inset 0 -120px 120px -40px rgba(0,0,0,.6),
    inset 0 60px 80px -20px rgba(230, 169, 59, .08);
  pointer-events: none;
}

/* barrels */
.hero-barrels {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  pointer-events: none;
}
.barrel {
  position: absolute;
  bottom: 0;
  width: 180px;
  height: 200px;
  border-radius: 35% / 18%;
  background:
    repeating-linear-gradient(180deg,
      #5e472a 0, #5e472a 14px,
      #4a371f 14px, #4a371f 16px),
    linear-gradient(90deg, #2b1810, #5e472a 30%, #82643d 50%, #5e472a 70%, #2b1810);
  background-blend-mode: multiply, normal;
  box-shadow:
    inset 0 12px 28px rgba(255, 220, 170, .08),
    inset 0 -20px 40px rgba(0, 0, 0, .6),
    0 -10px 30px rgba(0, 0, 0, .5);
  border: 1px solid rgba(0, 0, 0, .35);
  filter: brightness(.85);
}
.barrel::before, .barrel::after {
  content: "";
  position: absolute;
  left: -6px; right: -6px;
  height: 10px;
  background: linear-gradient(180deg, #c9a14a, #82643d);
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.3);
}
.barrel::before { top: 24px; }
.barrel::after  { bottom: 24px; }
.barrel--l { left: 4%; transform: translateY(40px) rotate(-2deg); }
.barrel--m { left: 50%; transform: translateX(-50%) translateY(20px); width: 220px; height: 240px; z-index: 2; }
.barrel--r { right: 4%; transform: translateY(40px) rotate(2deg); }

/* lanterns */
.hero-lantern {
  position: absolute;
  top: 130px;
  width: 60px; height: 80px;
  background: linear-gradient(180deg, #2b1810, #1a0e07);
  border: 2px solid rgba(201, 161, 74, .45);
  border-radius: 8px;
  box-shadow:
    0 0 80px 30px rgba(230, 169, 59, .22),
    inset 0 0 24px rgba(230, 169, 59, .35);
  pointer-events: none;
}
.hero-lantern::before {
  content: "";
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 40px;
  background: rgba(201, 161, 74, .55);
}
.hero-lantern--l { left: 8%; }
.hero-lantern--r { right: 8%; }
.lantern-flame {
  position: absolute;
  left: 50%; bottom: 16px;
  width: 14px; height: 22px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 70%, #fff7c2, #e6a93b 40%, #7a1f2b 80%, transparent 100%);
  border-radius: 50% 50% 40% 40%;
  filter: blur(.5px);
  animation: candleFlicker 1.6s infinite ease-in-out;
}

/* vignette */
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, transparent 30%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

/* hero content */
.hero-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border: 1px solid rgba(201, 161, 74, .45);
  background: rgba(0, 0, 0, .35);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .32em;
  color: var(--gold-2);
  text-transform: uppercase;
  box-shadow: 0 0 40px rgba(230, 169, 59, .12);
  margin-bottom: 28px;
}
.hero-eyebrow i { color: var(--amber); }

.hero-title {
  margin: 0 auto 20px;
  font-family: var(--display);
  color: var(--ivory);
  text-shadow: 0 2px 0 rgba(0,0,0,.55), 0 0 50px rgba(230, 169, 59, .15);
}
.hero-title__line {
  display: block;
  font-size: clamp(40px, 7vw, 86px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.05;
  background: linear-gradient(180deg, #fbe9b5 0%, #c9a14a 70%, #8a6a2a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title__sub {
  display: block;
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2.4vw, 26px);
  color: rgba(245, 234, 210, .9);
  letter-spacing: .02em;
}

.hero-lead {
  max-width: 720px;
  margin: 0 auto 40px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: rgba(245, 234, 210, .82);
}

/* hero bonus card */
.hero-bonus-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 28px 26px;
  background:
    linear-gradient(180deg, rgba(43, 24, 16, .92), rgba(26, 14, 7, .92)),
    repeating-linear-gradient(90deg, rgba(255, 220, 170, .03) 0 2px, transparent 2px 6px);
  border: 1px solid rgba(201, 161, 74, .45);
  border-radius: var(--r-lg);
  box-shadow:
    0 1px 0 rgba(255, 220, 170, .12) inset,
    0 30px 60px -20px rgba(0,0,0,.7),
    0 0 80px rgba(230, 169, 59, .08);
  position: relative;
}
.hero-bonus-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(180deg, rgba(230, 169, 59, .55), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.hero-bonus-badge {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .36em;
  background: linear-gradient(180deg, #e0bd6a, #9a7b34);
  color: #2b1810;
  border-radius: 999px;
  margin-bottom: 14px;
  text-shadow: 0 1px 0 rgba(255,255,255,.3);
}
.hero-bonus-line1 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: .03em;
}
.hero-bonus-line2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(245, 234, 210, .88);
}
.hero-bonus-line2 strong {
  color: var(--gold-2);
  font-weight: 700;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}
.hero-bonus-note {
  margin: 0;
  font-size: 12px;
  letter-spacing: .14em;
  color: rgba(245, 234, 210, .55);
  text-transform: uppercase;
}

.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 36px 0 0;
  padding: 0;
}
.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: rgba(245, 234, 210, .82);
  background: rgba(43, 24, 16, .65);
  border: 1px solid rgba(201, 161, 74, .25);
  border-radius: 999px;
}
.hero-pills i { color: var(--gold-2); }

/* =========================================================
   INTRO
   ========================================================= */
.intro {
  padding: 96px 0 80px;
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(122, 31, 43, .15), transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(43, 24, 16, .55) 30%, transparent 100%);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-text p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: rgba(245, 234, 210, .8);
  margin: 0 0 16px;
}
.text-link {
  color: var(--gold-2);
  border-bottom: 1px dashed rgba(201, 161, 74, .55);
  transition: color .2s ease, border-color .2s ease;
}
.text-link:hover { color: var(--amber); border-color: var(--amber); }

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  padding: 26px 20px;
  border-radius: var(--r-md);
  background:
    linear-gradient(180deg, rgba(43, 24, 16, .9), rgba(26, 14, 7, .9));
  border: 1px solid rgba(201, 161, 74, .25);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 170, .08),
    0 18px 40px -18px rgba(0,0,0,.7);
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: .03em;
  text-shadow: 0 0 20px rgba(230, 169, 59, .15);
}
.stat-label {
  display: block;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245, 234, 210, .65);
  margin-top: 6px;
}

/* =========================================================
   BONUSES
   ========================================================= */
.bonuses {
  padding: 96px 0 80px;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(184,107,58,.12), transparent 60%),
    linear-gradient(180deg, transparent, rgba(26, 14, 7, .6) 50%, transparent);
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.bonus-card {
  position: relative;
  padding: 30px 24px 24px;
  border-radius: var(--r-md);
  background:
    repeating-linear-gradient(90deg, rgba(255, 220, 170, .03) 0 2px, transparent 2px 6px),
    linear-gradient(180deg, #5e472a 0%, #3a2a17 100%);
  border: 1px solid rgba(201, 161, 74, .35);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 170, .12),
    inset 0 -2px 0 rgba(0,0,0,.35),
    0 24px 50px -20px rgba(0,0,0,.7);
  transition: transform .4s ease, box-shadow .4s ease;
  display: flex;
  flex-direction: column;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 170, .18),
    inset 0 -2px 0 rgba(0,0,0,.35),
    0 30px 60px -20px rgba(230, 169, 59, .25);
}
.bonus-card--main {
  background:
    repeating-linear-gradient(90deg, rgba(255, 220, 170, .04) 0 2px, transparent 2px 6px),
    linear-gradient(180deg, #6a1a26 0%, #3b0d12 100%);
  border-color: rgba(230, 169, 59, .55);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 170, .14),
    0 30px 60px -18px rgba(122, 31, 43, .55),
    0 0 60px rgba(230, 169, 59, .12);
}
.bonus-tag {
  position: absolute;
  top: -10px; left: 22px;
  padding: 5px 12px;
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #e0bd6a, #9a7b34);
  color: #2b1810;
  border-radius: 999px;
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
  box-shadow: 0 8px 18px -8px rgba(230, 169, 59, .65);
}
.bonus-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.bonus-header i {
  font-size: 22px;
  color: var(--gold-2);
  text-shadow: 0 0 16px rgba(230, 169, 59, .35);
}
.bonus-header h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  color: var(--ivory);
  letter-spacing: .02em;
}
.bonus-amount {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--ivory);
  margin: 0 0 12px;
  line-height: 1.2;
  background: linear-gradient(180deg, #fbe9b5 0%, #c9a14a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bonus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(245, 234, 210, .85);
}
.bonus-list i { color: var(--amber); margin-right: 8px; }

.bonus-card .btn-gold,
.bonus-card .btn-wood { margin-top: auto; }

.bonus-bottom-note {
  margin: 36px auto 0;
  text-align: center;
  font-size: 13.5px;
  color: rgba(245, 234, 210, .55);
  max-width: 780px;
}

/* =========================================================
   GAMES
   ========================================================= */
.games {
  padding: 96px 0 90px;
  background:
    radial-gradient(ellipse 70% 80% at 0% 100%, rgba(122, 31, 43, .18), transparent 60%);
}

.game-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.game-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: var(--display);
  font-size: 12.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245, 234, 210, .8);
  background:
    repeating-linear-gradient(90deg, rgba(255, 220, 170, .03) 0 2px, transparent 2px 6px),
    linear-gradient(180deg, #4a371f, #2b1810);
  border: 1px solid rgba(201, 161, 74, .25);
  border-radius: var(--r-sm);
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}
.game-tab i { color: var(--gold-2); }
.game-tab:hover { color: var(--gold-2); border-color: var(--gold); transform: translateY(-2px); }
.game-tab.is-active {
  color: #2b1810;
  background: linear-gradient(180deg, #e0bd6a, #9a7b34);
  border-color: rgba(255, 235, 180, .65);
  text-shadow: 0 1px 0 rgba(255,255,255,.3);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.game-card {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: var(--r-md);
  background:
    repeating-linear-gradient(90deg, rgba(255, 220, 170, .025) 0 2px, transparent 2px 6px),
    linear-gradient(180deg, #4a371f 0%, #2b1810 100%);
  border: 1px solid rgba(201, 161, 74, .25);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 170, .08),
    0 20px 45px -20px rgba(0,0,0,.7);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  overflow: hidden;
}
.game-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(201, 161, 74, .25);
  border-radius: 10px;
  pointer-events: none;
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 169, 59, .55);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 170, .12),
    0 30px 60px -20px rgba(230, 169, 59, .3);
}
.game-art {
  position: relative;
  height: 130px;
  border-radius: var(--r-sm);
  margin-bottom: 14px;
  background:
    radial-gradient(circle at 50% 40%, var(--accent, #7a1f2b) 0%, transparent 60%),
    linear-gradient(180deg, #1a0e07, #2b1810);
  display: grid; place-items: center;
  border: 1px solid rgba(201, 161, 74, .2);
  overflow: hidden;
}
.game-art::before {
  content: "";
  position: absolute; inset: -20%;
  background: radial-gradient(circle, rgba(230, 169, 59, .25), transparent 60%);
  filter: blur(20px);
  opacity: .55;
}
.game-symbol {
  position: relative;
  display: grid; place-items: center;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(201, 161, 74, .35);
  color: var(--gold-2);
  font-size: 30px;
  box-shadow: inset 0 0 24px rgba(230, 169, 59, .25), 0 0 30px rgba(230, 169, 59, .15);
  transition: transform .5s ease;
}
.game-card:hover .game-symbol {
  transform: rotate(8deg) scale(1.06);
}
.game-title {
  margin: 4px 0 4px;
  font-family: var(--display);
  font-size: 17px;
  color: var(--ivory);
  letter-spacing: .02em;
}
.game-meta {
  margin: 0;
  font-size: 13px;
  color: rgba(245, 234, 210, .65);
  font-family: var(--serif);
}
.game-rtp {
  margin: 6px 0 14px;
  font-size: 12.5px;
  color: var(--gold-2);
  letter-spacing: .08em;
}
.game-cta {
  display: inline-block;
  padding: 9px 18px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--ivory);
  border: 1px solid rgba(201, 161, 74, .55);
  border-radius: var(--r-sm);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.game-card:hover .game-cta,
.game-cta:hover {
  background: linear-gradient(180deg, #e0bd6a, #9a7b34);
  color: #2b1810;
  border-color: rgba(255, 235, 180, .65);
}
.games-cta { text-align: center; margin-top: 50px; }

/* =========================================================
   BENEFITS
   ========================================================= */
.benefits {
  padding: 96px 0 80px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit-tile {
  padding: 32px 26px;
  border-radius: var(--r-md);
  background:
    linear-gradient(180deg, rgba(43, 24, 16, .92), rgba(26, 14, 7, .92));
  border: 1px solid rgba(201, 161, 74, .2);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 170, .08),
    0 24px 50px -22px rgba(0,0,0,.7);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  text-align: center;
}
.benefit-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 169, 59, .45);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 170, .12),
    0 30px 60px -22px rgba(230, 169, 59, .22);
}
.benefit-tile i {
  display: inline-grid; place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(230, 169, 59, .25), rgba(0,0,0,.4));
  border: 1px solid rgba(201, 161, 74, .45);
  color: var(--gold-2);
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 0 30px rgba(230, 169, 59, .15);
}
.benefit-tile h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 19px;
  color: var(--ivory);
  letter-spacing: .02em;
}
.benefit-tile p {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(245, 234, 210, .78);
  line-height: 1.55;
}

/* =========================================================
   VIP
   ========================================================= */
.vip {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
}
.vip-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(230, 169, 59, .14), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 10%, rgba(122, 31, 43, .25), transparent 60%),
    linear-gradient(180deg, rgba(26, 14, 7, .92), rgba(43, 24, 16, .92));
}
.vip-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.vip-text p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: rgba(245, 234, 210, .82);
  margin: 0 0 20px;
}
.vip-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.vip-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px;
  color: rgba(245, 234, 210, .9);
}
.vip-list i { color: var(--gold-2); }

.vip-tiers {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 220, 170, .03) 0 2px, transparent 2px 6px),
    linear-gradient(180deg, #4a371f, #2b1810);
  border: 1px solid rgba(201, 161, 74, .25);
  border-radius: var(--r-sm);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.tier:hover {
  transform: translateX(6px);
  border-color: rgba(230, 169, 59, .55);
  box-shadow: 0 18px 40px -22px rgba(230, 169, 59, .35);
}
.tier-name {
  font-family: var(--display);
  letter-spacing: .14em;
  color: var(--gold-2);
  font-size: 16px;
}
.tier-perk {
  font-family: var(--serif);
  font-size: 15px;
  color: rgba(245, 234, 210, .8);
}
.tier--top {
  background:
    repeating-linear-gradient(90deg, rgba(255, 220, 170, .04) 0 2px, transparent 2px 6px),
    linear-gradient(180deg, #6a1a26, #3b0d12);
  border-color: rgba(230, 169, 59, .55);
}
.tier--top .tier-name { color: var(--ivory); }

/* =========================================================
   PAYMENTS
   ========================================================= */
.payments {
  padding: 96px 0 80px;
  background:
    radial-gradient(ellipse 60% 60% at 100% 50%, rgba(184,107,58,.10), transparent 60%);
}
.pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pay-card {
  padding: 22px 20px;
  border-radius: var(--r-md);
  background:
    repeating-linear-gradient(90deg, rgba(255, 220, 170, .03) 0 2px, transparent 2px 6px),
    linear-gradient(180deg, #4a371f 0%, #2b1810 100%);
  border: 1px solid rgba(201, 161, 74, .25);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 170, .08),
    0 18px 40px -22px rgba(0,0,0,.7);
  transition: transform .35s ease, border-color .35s ease;
  text-align: center;
}
.pay-card:hover { transform: translateY(-3px); border-color: rgba(230, 169, 59, .55); }
.pay-name {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  color: var(--ivory);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.pay-meta {
  display: block;
  font-size: 12.5px;
  color: rgba(245, 234, 210, .6);
  letter-spacing: .04em;
}
.pay-note {
  margin: 36px auto 0;
  max-width: 760px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--r-md);
  background: rgba(43, 24, 16, .8);
  border: 1px solid rgba(201, 161, 74, .25);
  font-size: 14px;
  color: rgba(245, 234, 210, .78);
}
.pay-note i { color: var(--gold-2); margin-top: 3px; }
.pay-note p { margin: 0; }

/* =========================================================
   TRUST
   ========================================================= */
.trust { padding: 96px 0 80px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.trust-tile {
  padding: 30px 26px;
  border-radius: var(--r-md);
  background:
    linear-gradient(180deg, rgba(43, 24, 16, .92), rgba(26, 14, 7, .92));
  border: 1px solid rgba(201, 161, 74, .2);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 170, .08),
    0 24px 50px -22px rgba(0,0,0,.7);
}
.trust-tile i {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(180deg, #6a4f31, #4a371f);
  border: 1px solid rgba(201, 161, 74, .45);
  color: var(--gold-2);
  font-size: 20px;
  margin-bottom: 14px;
}
.trust-tile h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 18px;
  color: var(--ivory);
  letter-spacing: .02em;
}
.trust-tile p {
  margin: 0;
  font-family: var(--serif);
  font-size: 15.5px;
  color: rgba(245, 234, 210, .78);
  line-height: 1.55;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  position: relative;
  padding: 110px 0 110px;
  overflow: hidden;
  text-align: center;
}
.final-bg { position: absolute; inset: 0; z-index: -1; }
.final-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg,
      #5a261c 0,
      #5a261c 38px,
      #3b1612 38px,
      #3b1612 41px),
    repeating-linear-gradient(90deg,
      #6a3326 0, #6a3326 110px,
      #3b1612 110px, #3b1612 113px);
  opacity: .5;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 95%);
}
.final-glow {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 169, 59, .18), transparent 60%);
  filter: blur(40px);
  animation: glowPulse 6s ease-in-out infinite;
}
.final-inner { max-width: 820px; margin: 0 auto; }
.final-cta-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0 24px;
}
.final-disclaimer {
  font-size: 12px;
  letter-spacing: .14em;
  color: rgba(245, 234, 210, .55);
  text-transform: uppercase;
  margin: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  padding: 80px 0 30px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 220, 170, .025) 0 2px, transparent 2px 6px),
    linear-gradient(180deg, #1a0e07 0%, #0d0703 100%);
  border-top: 1px solid rgba(201, 161, 74, .25);
  overflow: hidden;
  isolation: isolate;
}
.footer-glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 120%; height: 200px;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(230, 169, 59, .12), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand-col .brand-name { color: var(--ivory); }
.footer-tagline {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 15.5px;
  color: rgba(245, 234, 210, .68);
  line-height: 1.55;
  max-width: 380px;
}
.footer-social {
  display: flex; gap: 10px;
  margin-top: 18px;
}
.social-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #4a371f, #2b1810);
  border: 1px solid rgba(201, 161, 74, .35);
  color: var(--gold-2);
  transition: transform .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.social-icon:hover {
  transform: translateY(-2px);
  color: var(--ivory);
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(230, 169, 59, .35);
}

.footer-title {
  font-family: var(--display);
  font-size: 14.5px;
  letter-spacing: .2em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-list a {
  font-size: 14.5px;
  color: rgba(245, 234, 210, .72);
  transition: color .2s ease, padding-left .2s ease;
}
.footer-list a:hover { color: var(--gold-2); padding-left: 6px; }

.footer-trust {
  max-width: var(--container);
  margin: 60px auto 30px;
  padding: 30px 24px 0;
  border-top: 1px solid rgba(201, 161, 74, .15);
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 22px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(43, 24, 16, .65);
  border: 1px solid rgba(201, 161, 74, .25);
  border-radius: 999px;
  font-size: 12.5px;
  color: rgba(245, 234, 210, .82);
}
.trust-badge i { color: var(--gold-2); }
.trust-badge.age { color: var(--ivory); border-color: rgba(230, 169, 59, .55); }

.responsible-text,
.bonus-disclaimer {
  margin: 12px auto;
  max-width: 920px;
  font-size: 13px;
  color: rgba(245, 234, 210, .58);
  line-height: 1.55;
  text-align: center;
}
.bonus-disclaimer { color: rgba(245, 234, 210, .5); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px 0;
  border-top: 1px solid rgba(201, 161, 74, .15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(245, 234, 210, .55);
}
.age-block {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ivory);
  background: rgba(122, 31, 43, .35);
  margin: 0;
  letter-spacing: 0;
}
.age-block span { color: var(--gold-2); margin-left: 1px; }

/* =========================================================
   PARTICLES (cellar dust)
   ========================================================= */
.cellar-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.cellar-particles span {
  position: absolute;
  bottom: -10px;
  display: block;
  width: 4px; height: 4px;
  background: radial-gradient(circle, rgba(230, 169, 59, .55), transparent 70%);
  border-radius: 50%;
  filter: blur(.5px);
  animation: dustFloat 22s linear infinite;
  opacity: .55;
}
.cellar-particles span:nth-child(1) { left: 8%;  animation-delay: 0s;   animation-duration: 26s; }
.cellar-particles span:nth-child(2) { left: 18%; animation-delay: 4s;   animation-duration: 22s; }
.cellar-particles span:nth-child(3) { left: 32%; animation-delay: 8s;   animation-duration: 30s; }
.cellar-particles span:nth-child(4) { left: 45%; animation-delay: 2s;   animation-duration: 24s; }
.cellar-particles span:nth-child(5) { left: 58%; animation-delay: 6s;   animation-duration: 28s; }
.cellar-particles span:nth-child(6) { left: 68%; animation-delay: 10s;  animation-duration: 32s; }
.cellar-particles span:nth-child(7) { left: 78%; animation-delay: 1s;   animation-duration: 25s; }
.cellar-particles span:nth-child(8) { left: 86%; animation-delay: 5s;   animation-duration: 27s; }
.cellar-particles span:nth-child(9) { left: 92%; animation-delay: 9s;   animation-duration: 23s; }
.cellar-particles span:nth-child(10){ left: 4%;  animation-delay: 12s;  animation-duration: 31s; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes candleFlicker {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 24px 6px rgba(230, 169, 59, .55);
    filter: brightness(1) blur(.5px);
  }
  20% {
    transform: translateX(-50%) scale(1.05) skewX(2deg);
    filter: brightness(1.15) blur(.5px);
  }
  40% {
    transform: translateX(-50%) scale(.96) skewX(-1deg);
    filter: brightness(.92) blur(.6px);
  }
  60% {
    transform: translateX(-50%) scale(1.04);
    filter: brightness(1.1) blur(.5px);
  }
  80% {
    transform: translateX(-50%) scale(.98) skewX(1deg);
    filter: brightness(.96) blur(.7px);
  }
}

@keyframes glowPulse {
  0%, 100% { opacity: .85; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes dustFloat {
  0%   { transform: translate(0, 0)   scale(.6); opacity: 0; }
  10%  { opacity: .6; }
  50%  { transform: translate(20px, -50vh) scale(1); opacity: .8; }
  90%  { opacity: .4; }
  100% { transform: translate(-10px, -110vh) scale(.8); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .bonus-grid     { grid-template-columns: repeat(2, 1fr); }
  .game-grid      { grid-template-columns: repeat(3, 1fr); }
  .pay-grid       { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid,
  .trust-grid     { grid-template-columns: repeat(2, 1fr); }
  .intro-grid,
  .vip-grid       { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 72px; }

  .header-inner { padding: 12px 18px; }
  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px; height: 22px;
    cursor: pointer;
    z-index: 80;
  }
  .nav-burger span {
    display: block; height: 2px; width: 100%;
    background: var(--gold-2);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
  }

  .primary-nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    gap: 18px;
    padding: 24px 24px 30px;
    background:
      linear-gradient(180deg, rgba(43, 24, 16, .98), rgba(26, 14, 7, .98));
    border-bottom: 1px solid rgba(201, 161, 74, .25);
    box-shadow: 0 24px 50px -10px rgba(0,0,0,.7);
    transform: translateY(-110%);
    transition: transform .35s ease;
  }
  .primary-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }
  .primary-nav ul a {
    display: block;
    padding: 12px 14px;
    text-align: center;
  }
  .nav-cta { width: 100%; justify-content: center; }
  .nav-cta a { flex: 1; }

  .nav-toggle:checked ~ .primary-nav { transform: translateY(0); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

  .hero { min-height: auto; padding: 80px 18px 70px; }
  .hero-bonus-card { padding: 26px 20px; }
  .hero-pills { gap: 8px; }
  .hero-pills li { font-size: 12px; padding: 6px 12px; }

  .game-grid      { grid-template-columns: repeat(2, 1fr); }
  .pay-grid       { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid,
  .trust-grid,
  .bonus-grid     { grid-template-columns: 1fr; }

  .footer-inner   { grid-template-columns: 1fr; }

  .barrel--l, .barrel--r { display: none; }
  .barrel--m { width: 180px; height: 200px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-eyebrow { font-size: 10px; padding: 8px 16px; }
  .hero-title__sub { font-size: 17px; }
  .hero-bonus-card { border-radius: var(--r-md); }
  .game-grid      { grid-template-columns: 1fr; }
  .pay-grid       { grid-template-columns: 1fr; }
  .game-tab { padding: 10px 14px; font-size: 11px; letter-spacing: .14em; }
  .trust-badges { gap: 8px; }
  .trust-badge { font-size: 11.5px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
