/* ==========================================================================
   Lukki Casino — bespoke stylesheet
   Identity: deep navy (#102756 / #163779) + gold (#bb9b49 / #ebd197)
   VIP / luxe casino-club aesthetic.
   ========================================================================== */

:root{
  --navy-deep:#0c1d40;
  --navy:#102756;
  --navy-light:#163779;
  --navy-lift:#1d4590;
  --gold-dark:#bb9b49;
  --gold:#d4b567;
  --gold-light:#ebd197;
  --cream:#f7f1e3;
  --ink:#0a1730;
  --text-body:#c9d3ea;
  --text-muted:#8fa0c7;
  --white:#ffffff;
  --success:#3fbf7f;
  --danger:#e2604f;

  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-card: 0 12px 30px -12px rgba(4,10,26,0.55);
  --shadow-gold: 0 0 0 1px rgba(212,181,103,0.35), 0 14px 34px -14px rgba(187,155,73,0.45);
  --container: 1200px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
html,body{ max-width:100%; overflow-x:hidden; }

body{
  margin:0;
  background:
    radial-gradient(1100px 620px at 12% -8%, rgba(212,181,103,0.10), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(29,69,144,0.35), transparent 55%),
    var(--navy-deep);
  color:var(--text-body);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }
ul{ margin:0; padding:0; list-style:none; }

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

.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Skip link */
.skip-link{
  position:absolute; left:12px; top:-60px;
  background:var(--gold); color:var(--ink); padding:10px 16px;
  border-radius:var(--radius-s); font-weight:700; z-index:1000;
  transition:top .15s ease;
}
.skip-link:focus{ top:12px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; border:none; cursor:pointer;
  font-weight:700; font-size:.95rem; letter-spacing:.01em;
  padding:12px 22px; border-radius:999px;
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }

.btn--gold{
  background:linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color:var(--ink);
  box-shadow:var(--shadow-gold);
}
.btn--gold:hover{ filter:brightness(1.06); }

.btn--ghost{
  background:rgba(235,209,151,0.06);
  color:var(--gold-light);
  border:1px solid rgba(212,181,103,0.5);
}
.btn--ghost:hover{ background:rgba(235,209,151,0.12); }

.btn--block{ width:100%; }
.btn--lg{ padding:15px 30px; font-size:1.05rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:200;
  background:rgba(12,29,64,0.86);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(212,181,103,0.18);
}
.site-header__bar{
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; padding:14px 0;
}

.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand__mark{ width:34px; height:34px; flex-shrink:0; }
.brand__mark img{ width:100%; height:100%; }
.brand__word{
  font-family:var(--font-display);
  font-size:1.5rem; font-weight:700; letter-spacing:.02em;
  color:var(--white);
}
.brand__word em{
  font-style:normal;
  background:linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.main-nav{ display:flex; align-items:center; gap:26px; }
.main-nav a{
  font-size:.92rem; font-weight:600; color:var(--text-body);
  padding:6px 2px; border-bottom:2px solid transparent;
  transition:color .15s ease, border-color .15s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"]{
  color:var(--gold-light); border-color:var(--gold-dark);
}

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

/* Locale switch — segmented control, reused desktop + mobile */
.locale-switch{
  display:inline-flex; align-items:center;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(212,181,103,0.3);
  border-radius:999px; padding:3px; gap:2px;
}
.locale-switch__item{
  padding:6px 12px; border-radius:999px;
  font-size:.78rem; font-weight:700; letter-spacing:.04em;
  color:var(--text-muted);
  min-height:28px; display:inline-flex; align-items:center;
  transition:background .15s ease, color .15s ease;
}
.locale-switch__item:hover{ color:var(--gold-light); }
.locale-switch__item.is-active{
  background:linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color:var(--ink);
}

.header-cta{ display:flex; align-items:center; gap:10px; }
.btn--login{
  background:transparent; color:var(--text-body);
  padding:10px 16px; font-weight:600;
}
.btn--login:hover{ color:var(--gold-light); }

/* Burger — hidden on desktop */
.burger{
  display:none;
  width:44px; height:44px;
  align-items:center; justify-content:center;
  background:transparent; border:1px solid rgba(212,181,103,0.35);
  border-radius:var(--radius-s);
  flex-shrink:0;
}
.burger__box{ width:20px; height:14px; position:relative; }
.burger__line{
  position:absolute; left:0; width:100%; height:2px;
  background:var(--gold-light); border-radius:2px;
  transition:transform .2s ease, opacity .2s ease, top .2s ease;
}
.burger__line:nth-child(1){ top:0; }
.burger__line:nth-child(2){ top:6px; }
.burger__line:nth-child(3){ top:12px; }
.burger[aria-expanded="true"] .burger__line:nth-child(1){ top:6px; transform:rotate(45deg); }
.burger[aria-expanded="true"] .burger__line:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] .burger__line:nth-child(3){ top:6px; transform:rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav{
  display:none;
  position:fixed; inset:0; top:0;
  background:rgba(8,17,38,0.6);
  z-index:300;
}
.mobile-nav.is-open{ display:block; }
.mobile-nav__panel{
  position:absolute; top:0; right:0; bottom:0;
  width:min(86vw, 360px);
  background:linear-gradient(180deg, var(--navy-light), var(--navy-deep));
  border-left:1px solid rgba(212,181,103,0.25);
  padding:20px;
  overflow-y:auto;
  display:flex; flex-direction:column; gap:22px;
  box-shadow:-20px 0 50px rgba(0,0,0,0.4);
}
.mobile-nav__top{ display:flex; align-items:center; justify-content:space-between; }
.mobile-nav__close{
  width:40px; height:40px; border-radius:var(--radius-s);
  background:rgba(255,255,255,0.06); border:1px solid rgba(212,181,103,0.3);
  color:var(--gold-light); font-size:1.2rem; line-height:1;
}
.mobile-nav__links{ display:flex; flex-direction:column; gap:4px; }
.mobile-nav__links a{
  display:block; padding:13px 4px; font-weight:700; font-size:1.02rem;
  color:var(--text-body); border-bottom:1px solid rgba(255,255,255,0.06);
  min-height:44px;
}
.mobile-nav__links a[aria-current="page"]{ color:var(--gold-light); }
.mobile-nav__section-label{
  font-size:.72rem; text-transform:uppercase; letter-spacing:.12em;
  color:var(--text-muted); margin-bottom:8px;
}
.mobile-nav__cta{ display:flex; flex-direction:column; gap:10px; margin-top:auto; }
.mobile-nav .locale-switch{ align-self:flex-start; }

/* ==========================================================================
   Hero — gold-on-navy premium statement band
   ========================================================================== */
.hero{
  position:relative; overflow:hidden;
  padding:64px 0 56px;
  background:
    radial-gradient(700px 380px at 85% 15%, rgba(212,181,103,0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 55%, var(--navy-deep) 100%);
  border-bottom:1px solid rgba(212,181,103,0.18);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(115deg, rgba(212,181,103,0.05) 0 1px, transparent 1px 90px);
  pointer-events:none;
}
.hero__inner{
  position:relative; display:grid;
  grid-template-columns:1.1fr .9fr; gap:40px; align-items:center;
}
.hero__eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.72rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase;
  color:var(--gold-light);
  padding:6px 14px; border-radius:999px;
  border:1px solid rgba(212,181,103,0.4);
  background:rgba(212,181,103,0.08);
  margin:0 0 18px;
}
.hero__title{
  margin:0 0 16px;
  font-family:var(--font-display);
  font-size:clamp(2rem, 4vw, 3.1rem);
  line-height:1.08; font-weight:700; color:var(--white);
  letter-spacing:.01em;
}
.hero__title em{
  font-style:normal;
  background:linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero__subtitle{
  margin:0 0 28px; font-size:1.05rem; color:var(--text-body);
  max-width:52ch;
}
.hero__actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:26px; }
.hero__stats{ display:flex; gap:28px; flex-wrap:wrap; }
.hero__stat-value{
  font-family:var(--font-display); font-size:1.5rem; font-weight:700;
  color:var(--gold-light); display:block;
}
.hero__stat-label{ font-size:.78rem; color:var(--text-muted); }

.hero__panel{
  position:relative;
  background:linear-gradient(165deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  border:1px solid rgba(212,181,103,0.3);
  border-radius:var(--radius-l);
  padding:22px;
  box-shadow:var(--shadow-card);
}
.hero__panel-banner{
  border-radius:var(--radius-m); overflow:hidden;
  border:1px solid rgba(212,181,103,0.25);
}
.hero__panel-banner img{ width:100%; height:auto; }
.hero__panel-caption{
  display:flex; align-items:center; justify-content:space-between;
  margin-top:14px; gap:10px;
}
.hero__panel-name{ font-weight:700; color:var(--white); font-size:.95rem; }
.hero__panel-provider{ font-size:.78rem; color:var(--text-muted); }
.hero__panel-tag{
  font-size:.7rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  color:var(--ink); background:linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  padding:5px 10px; border-radius:999px;
}

/* ==========================================================================
   Section shells
   ========================================================================== */
.section{ padding:60px 0; }
.section--tight{ padding:44px 0; }
.section--alt{
  background:linear-gradient(180deg, rgba(16,39,86,0.5), transparent);
}
.section__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:20px; margin-bottom:30px; flex-wrap:wrap;
}
.section__kicker{
  font-size:.72rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase;
  color:var(--gold-dark); margin:0 0 8px;
}
.section__title{
  margin:0; font-family:var(--font-display); font-weight:700;
  font-size:clamp(1.5rem,2.6vw,2rem); color:var(--white);
}
.section__lead{ margin:10px 0 0; color:var(--text-muted); max-width:60ch; }
.section__link{
  font-weight:700; font-size:.9rem; color:var(--gold-light);
  border-bottom:1px solid rgba(212,181,103,0.5); padding-bottom:2px;
  white-space:nowrap;
}

/* Category chips */
.chip-row{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:30px; }
.chip{
  padding:9px 18px; border-radius:999px;
  font-size:.85rem; font-weight:700; color:var(--text-body);
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(212,181,103,0.22);
}
.chip.is-active{
  background:linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color:var(--ink); border-color:transparent;
}

/* ==========================================================================
   Game grid
   ========================================================================== */
.game-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.game-card{
  position:relative; border-radius:var(--radius-m); overflow:hidden;
  border:1px solid rgba(212,181,103,0.2);
  background:var(--navy-light);
  aspect-ratio:448/648;
  box-shadow:var(--shadow-card);
  transition:transform .18s ease, border-color .18s ease;
}
.game-card:hover{ transform:translateY(-4px); border-color:rgba(212,181,103,0.55); }
.game-card img{ width:100%; height:100%; object-fit:cover; }
.game-card__overlay{
  position:absolute; left:0; right:0; bottom:0;
  padding:14px 12px 12px;
  background:linear-gradient(0deg, rgba(6,13,30,0.92) 5%, rgba(6,13,30,0.1) 90%);
}
.game-card__name{ color:var(--white); font-weight:700; font-size:.86rem; line-height:1.25; }
.game-card__provider{ color:var(--gold-light); font-size:.7rem; margin-top:2px; }
.game-card__play{
  position:absolute; top:10px; right:10px;
  width:34px; height:34px; border-radius:50%;
  background:rgba(6,13,30,0.55); border:1px solid rgba(212,181,103,0.5);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .18s ease;
}
.game-card:hover .game-card__play{ opacity:1; }
.game-card__play svg{ width:14px; height:14px; fill:var(--gold-light); }

.games-footer{ display:flex; justify-content:center; margin-top:30px; }

/* ==========================================================================
   VIP / loyalty tier band
   ========================================================================== */
.vip{
  position:relative;
  border-radius:var(--radius-l);
  padding:40px;
  background:
    radial-gradient(500px 260px at 90% 0%, rgba(212,181,103,0.16), transparent 60%),
    linear-gradient(150deg, var(--navy-light), var(--navy-deep));
  border:1px solid rgba(212,181,103,0.3);
  box-shadow:var(--shadow-card);
  display:grid; grid-template-columns:.95fr 1.4fr; gap:40px; align-items:center;
}
.vip__trophy{ width:100%; max-width:210px; margin:0 auto; filter:drop-shadow(0 18px 24px rgba(0,0,0,0.45)); }
.vip__title{
  font-family:var(--font-display); font-size:1.6rem; color:var(--white);
  margin:0 0 10px; font-weight:700;
}
.vip__text{ color:var(--text-body); margin:0 0 22px; max-width:56ch; }

.tier-track{ display:flex; align-items:center; gap:0; }
.tier{
  flex:1; display:flex; flex-direction:column; align-items:center; gap:8px;
  position:relative; padding-top:16px;
}
.tier::before{
  content:""; position:absolute; top:5px; left:-50%; width:100%; height:2px;
  background:rgba(212,181,103,0.25); z-index:0;
}
.tier:first-child::before{ display:none; }
.tier__dot{
  width:12px; height:12px; border-radius:50%;
  background:rgba(212,181,103,0.3); border:2px solid rgba(212,181,103,0.5);
  z-index:1;
}
.tier.is-reached .tier__dot{
  background:linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  border-color:var(--gold-light);
}
.tier__name{ font-size:.78rem; font-weight:700; color:var(--text-muted); }
.tier.is-reached .tier__name{ color:var(--gold-light); }

/* ==========================================================================
   Feature / trust cards
   ========================================================================== */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

.feature-card{
  background:linear-gradient(165deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
  border:1px solid rgba(212,181,103,0.2);
  border-radius:var(--radius-m);
  padding:26px;
}
.feature-card__icon{
  width:46px; height:46px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(212,181,103,0.12); border:1px solid rgba(212,181,103,0.3);
  margin-bottom:16px;
}
.feature-card__icon svg{ width:22px; height:22px; stroke:var(--gold-light); fill:none; }
.feature-card__title{ color:var(--white); font-weight:700; margin:0 0 8px; font-size:1rem; }
.feature-card__text{ margin:0; color:var(--text-muted); font-size:.92rem; }

/* Steps */
.steps{ counter-reset:step; display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.step{ position:relative; padding-top:8px; }
.step__num{
  counter-increment:step; content:counter(step);
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:700; color:var(--ink);
  background:linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  margin-bottom:14px;
}
.step__num::before{ content:counter(step); }
.step__title{ color:var(--white); font-weight:700; margin:0 0 6px; font-size:.95rem; }
.step__text{ margin:0; color:var(--text-muted); font-size:.88rem; }

/* Payment strip */
.pay-strip{
  display:flex; flex-wrap:wrap; gap:12px; align-items:center;
}
.pay-pill{
  padding:9px 16px; border-radius:999px; font-size:.82rem; font-weight:700;
  background:rgba(255,255,255,0.04); border:1px solid rgba(212,181,103,0.25);
  color:var(--text-body);
}

/* CTA band */
.cta-band{
  border-radius:var(--radius-l); padding:44px;
  text-align:center;
  background:
    radial-gradient(600px 300px at 50% -20%, rgba(212,181,103,0.22), transparent 60%),
    linear-gradient(155deg, var(--navy-light), var(--navy-deep));
  border:1px solid rgba(212,181,103,0.3);
}
.cta-band__title{
  font-family:var(--font-display); color:var(--white); font-size:1.7rem;
  margin:0 0 12px; font-weight:700;
}
.cta-band__text{ color:var(--text-body); margin:0 0 26px; }
.cta-band__actions{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb{ padding:18px 0 0; }
.breadcrumb ol{ display:flex; flex-wrap:wrap; gap:6px; font-size:.82rem; color:var(--text-muted); list-style:none; margin:0; padding:0; }
.breadcrumb a{ color:var(--text-muted); }
.breadcrumb a:hover{ color:var(--gold-light); }
.breadcrumb li:not(:last-child)::after{ content:"/"; margin-left:6px; color:rgba(212,181,103,0.4); }
.breadcrumb li[aria-current]{ color:var(--gold-light); }

.page-hero{
  padding:26px 0 40px;
  border-bottom:1px solid rgba(212,181,103,0.18);
  background:linear-gradient(160deg, var(--navy-light) 0%, var(--navy-deep) 100%);
}
.page-hero__eyebrow{
  font-size:.72rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold-dark); margin:0 0 10px;
}
.page-hero__title{
  font-family:var(--font-display); color:var(--white);
  font-size:clamp(1.6rem,3.4vw,2.4rem); margin:0 0 12px; font-weight:700;
}
.page-hero__text{ color:var(--text-body); max-width:64ch; margin:0; }

/* ==========================================================================
   SEO article block
   ========================================================================== */
.seo-article{
  max-width:820px; margin:0 auto;
  background:linear-gradient(165deg, rgba(255,255,255,0.035), rgba(255,255,255,0.005));
  border:1px solid rgba(212,181,103,0.18);
  border-radius:var(--radius-l);
  padding:44px;
}
.seo-article h1{
  font-family:var(--font-display); color:var(--white);
  font-size:clamp(1.5rem,3vw,2rem); line-height:1.2; margin:0 0 22px;
}
.seo-article h2{
  font-family:var(--font-display); color:var(--gold-light);
  font-size:1.35rem; margin:38px 0 14px; line-height:1.3;
}
.seo-article h3{
  color:var(--white); font-size:1.05rem; margin:26px 0 10px;
}
.seo-article p{ margin:0 0 16px; color:var(--text-body); }
.seo-article ul, .seo-article ol{ margin:0 0 18px; padding-left:1.3em; color:var(--text-body); }
.seo-article ul{ list-style:disc; }
.seo-article ol{ list-style:decimal; }
.seo-article li{ margin-bottom:8px; }
.seo-article a{ color:var(--gold-light); text-decoration:underline; text-underline-offset:2px; }
.seo-article strong{ color:var(--white); }

.seo-article table{
  width:100%; border-collapse:collapse; margin:0 0 20px;
  table-layout:fixed;
  font-size:.9rem;
}
.seo-article th, .seo-article td{
  border:1px solid rgba(212,181,103,0.22);
  padding:10px 12px; text-align:left;
  overflow-wrap:anywhere;
  color:var(--text-body);
}
.seo-article th{
  background:rgba(212,181,103,0.1); color:var(--gold-light);
  font-size:.78rem; text-transform:uppercase; letter-spacing:.04em;
}
.seo-article table-wrap{ display:block; }
.table-scroll{ overflow-x:auto; -webkit-overflow-scrolling:touch; margin:0 0 20px; }
.table-scroll table{ margin:0; }

/* FAQ accordion (inside seo-article, using h3 as trigger label markup produced by content) */
.faq-item{
  border-bottom:1px solid rgba(212,181,103,0.16);
}
.faq-item__q{
  width:100%; text-align:left; background:none; border:none;
  padding:16px 34px 16px 0; position:relative;
  color:var(--white); font-weight:700; font-size:1rem; cursor:pointer;
}
.faq-item__q::after{
  content:"+"; position:absolute; right:4px; top:50%; transform:translateY(-50%);
  color:var(--gold-light); font-size:1.3rem; font-weight:400;
}
.faq-item.is-open .faq-item__q::after{ content:"–"; }
.faq-item__a{ display:none; padding:0 0 18px; color:var(--text-muted); }
.faq-item.is-open .faq-item__a{ display:block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  margin-top:70px;
  border-top:1px solid rgba(212,181,103,0.18);
  background:linear-gradient(180deg, transparent, rgba(6,13,30,0.6));
  padding:50px 0 26px;
}
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:34px;
  margin-bottom:40px;
}
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-brand .brand__mark{ width:30px; height:30px; }
.footer-brand .brand__word{ font-size:1.25rem; }
.footer-about{ color:var(--text-muted); font-size:.88rem; max-width:34ch; margin:0; }
.footer-heading{
  font-size:.76rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
  color:var(--gold-dark); margin:0 0 14px;
}
.footer-links{ display:flex; flex-direction:column; gap:10px; }
.footer-links a{ color:var(--text-muted); font-size:.9rem; }
.footer-links a:hover{ color:var(--gold-light); }

.footer-legal{
  border-top:1px solid rgba(212,181,103,0.14);
  padding-top:24px;
  display:flex; flex-direction:column; gap:14px;
}
.footer-age{
  display:flex; align-items:center; gap:12px;
  color:var(--text-muted); font-size:.82rem;
}
.footer-age__badge{
  width:34px; height:34px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  border:2px solid var(--gold-dark); color:var(--gold-light);
  font-weight:800; font-size:.85rem;
}
.footer-copy{ color:var(--text-muted); font-size:.8rem; margin:0; }
.footer-disclaimer{ color:var(--text-muted); font-size:.78rem; margin:0; line-height:1.6; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px){
  .game-grid{ grid-template-columns:repeat(3,1fr); }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1.2fr 1fr 1fr; }
}

@media (max-width: 860px){
  .main-nav, .header-cta{ display:none; }
  .burger{ display:flex; }
  .hero__inner{ grid-template-columns:1fr; }
  .hero__panel{ max-width:420px; }
  .vip{ grid-template-columns:1fr; text-align:center; }
  .tier-track{ flex-wrap:wrap; row-gap:20px; }
  .grid-3, .steps{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:28px; }
}

@media (max-width: 640px){
  .container{ padding:0 16px; }
  .hero{ padding:40px 0 36px; }
  .game-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
  .grid-3, .grid-4, .steps{ grid-template-columns:1fr 1fr; }
  .vip{ padding:26px; }
  .seo-article{ padding:24px; }
  .cta-band{ padding:30px 22px; }
  .footer-grid{ grid-template-columns:1fr; gap:26px; }
  .section{ padding:44px 0; }
}

@media (max-width: 560px){
  .seo-article table{ font-size:.78rem; }
  .seo-article th, .seo-article td{ padding:7px 8px; }
  .grid-3, .grid-4, .steps{ grid-template-columns:1fr; }
  .hero__stats{ gap:18px; }
}

@media (max-width: 400px){
  .game-grid{ grid-template-columns:repeat(2,1fr); gap:10px; }
  .brand__word{ font-size:1.25rem; }
}
