/* ============================================================
   EasyRaid — styles.css
   DARK BOLD · aubergine + gold · tier-list / raid vibe
   Strict BEM · CSS variables · mobile-first
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  /* palette */
  --bg:        #17101B;
  --surface:   #201526;
  --panel:     #281B2F;
  --panel-2:   #2F2138;
  --text:      #F1E9F0;
  --muted:     #A794A8;
  --gold:      #F2C14E;
  --gold-hi:   #F8D26E;
  --magenta:   #B5447E;
  --border:    #33223B;
  --star:      #F2C14E;

  /* tiers */
  --tier-s:    #F2C14E;
  --tier-a:    #E7A6C6;
  --tier-b:    #A794A8;

  /* type */
  --font-display: "Unbounded", "Arial Black", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* layout */
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --container: 1180px;
  --pad: clamp(16px, 4vw, 40px);
  --header-h: 72px;

  /* fx */
  --shadow: 0 18px 44px -18px rgba(0,0,0,.72);
  --shadow-gold: 0 14px 40px -14px rgba(242,193,78,.34);
  --ring: 0 0 0 3px rgba(242,193,78,.55);
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* atmospheric background glows */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 620px at 8% -6%, rgba(242,193,78,.10), transparent 60%),
    radial-gradient(980px 680px at 104% 12%, rgba(181,68,126,.14), transparent 58%),
    radial-gradient(1200px 900px at 50% 118%, rgba(181,68,126,.08), transparent 60%),
    var(--bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; margin: 0; letter-spacing: -.01em; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }

/* ---------- container ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 15px; letter-spacing: .01em;
  padding: 13px 22px; border-radius: var(--radius);
  border: 1px solid transparent; transition: transform .16s ease, background .2s ease, box-shadow .2s ease, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--gold); color: #241407; box-shadow: var(--shadow-gold); }
.btn--primary:hover { background: var(--gold-hi); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.02); color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* ---------- eyebrow + section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  padding: 7px 14px; border: 1px solid var(--border); border-radius: var(--radius-pill);
  background: rgba(181,68,126,.08);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 10px var(--magenta); }

.section { padding-block: clamp(56px, 8vw, 104px); position: relative; }
.section--tint { background: linear-gradient(180deg, rgba(40,27,47,.55), rgba(32,21,38,.30)); border-block: 1px solid var(--border); }
.section__head { max-width: 720px; margin-bottom: clamp(30px, 4vw, 52px); }
.section__title { font-size: clamp(28px, 4.4vw, 46px); margin-top: 18px; text-transform: uppercase; }
.section__title em { color: var(--gold); font-style: normal; }
.section__lead { color: var(--muted); font-size: clamp(16px, 1.7vw, 18.5px); margin-top: 16px; max-width: 62ch; }
.hairline { height: 1px; border: 0; margin: 0; background: linear-gradient(90deg, var(--magenta), transparent 72%); opacity: .5; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(23,16,27,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s, background .25s;
}
.header.has-scroll { border-bottom-color: var(--border); background: rgba(23,16,27,.9); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: var(--header-h); }

.logo { font-family: var(--font-display); font-weight: 900; font-size: 22px; letter-spacing: .02em; text-transform: uppercase; color: var(--text); display: inline-flex; align-items: center; }
.logo__mark { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link { color: var(--muted); font-weight: 700; font-size: 14.5px; padding: 9px 13px; border-radius: 9px; transition: color .18s, background .18s; }
.nav__link:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav__cta { margin-left: 8px; }

.burger { display: none; width: 46px; height: 46px; border-radius: 11px; border: 1px solid var(--border); background: rgba(255,255,255,.03); color: var(--text); align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; }
.burger__close { display: none; }
.burger[aria-expanded="true"] .burger__open { display: none; }
.burger[aria-expanded="true"] .burger__close { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(40px, 6vw, 76px); padding-bottom: clamp(48px, 7vw, 92px); position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(34px, 5vw, 68px); align-items: center; }
.hero__title { font-size: clamp(38px, 6.6vw, 74px); text-transform: uppercase; letter-spacing: -.02em; margin-top: 20px; }
.hero__title em { color: var(--gold); font-style: normal; display: inline-block; }
.hero__lead { color: var(--muted); font-size: clamp(16.5px, 1.9vw, 20px); margin-top: 22px; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat b { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--text); }
.hero__stat span { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }

/* tier-list roster */
.roster { background: linear-gradient(180deg, var(--panel), var(--surface)); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow); position: relative; }
.roster::before { content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px; background: linear-gradient(140deg, rgba(242,193,78,.4), transparent 40%, rgba(181,68,126,.4)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.roster__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding-inline: 4px; }
.roster__title { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--text); }
.roster__badge { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--border); padding: 4px 10px; border-radius: var(--radius-pill); }

.tier { display: grid; grid-template-columns: 46px 1fr; gap: 12px; align-items: center; padding: 11px; border-radius: var(--radius); background: rgba(23,16,27,.5); border: 1px solid var(--border); }
.tier + .tier { margin-top: 10px; }
.tier__label { width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 21px; color: #241407; }
.tier__label--s { background: linear-gradient(160deg, var(--gold-hi), var(--gold)); }
.tier__label--a { background: linear-gradient(160deg, #EFB9D3, var(--tier-a)); }
.tier__label--b { background: linear-gradient(160deg, #C3B2C4, var(--tier-b)); }
.tier__items { display: flex; gap: 10px; }
.tier__item { position: relative; width: 54px; height: 54px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--panel-2); }
.tier__item img { width: 100%; height: 100%; object-fit: cover; }
.tier__rank { position: absolute; top: -4px; left: -4px; min-width: 22px; height: 22px; padding: 0 4px; border-radius: 7px; background: var(--gold); color: #241407; font-family: var(--font-display); font-weight: 800; font-size: 11px; display: grid; place-items: center; box-shadow: 0 3px 8px rgba(0,0,0,.4); }

/* ============================================================
   GAMES (ranked tier list, 3x2)
   ============================================================ */
.games__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.game {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--panel), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.game::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--gold), var(--magenta)); opacity: 0; transition: opacity .2s; }
.game:hover { transform: translateY(-4px); border-color: rgba(242,193,78,.4); box-shadow: var(--shadow); }
.game:hover::after { opacity: 1; }

.game__top { display: flex; align-items: flex-start; gap: 15px; }
.game__icon { width: 72px; height: 72px; border-radius: 16px; border: 1px solid var(--border); flex: none; background: var(--panel-2); }
.game__id { min-width: 0; flex: 1; }
.game__name { font-size: 18px; font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -.01em; }
.game__dev { color: var(--muted); font-size: 13px; margin-top: 5px; }
.game__badges { position: absolute; top: 16px; right: 16px; display: flex; gap: 7px; }
.rank-badge { display: inline-flex; align-items: center; gap: 4px; height: 27px; padding: 0 10px; border-radius: 8px; background: var(--gold); color: #241407; font-family: var(--font-display); font-weight: 800; font-size: 12.5px; box-shadow: 0 4px 12px -3px rgba(242,193,78,.5); }
.tier-chip { display: inline-grid; place-items: center; width: 27px; height: 27px; border-radius: 8px; font-family: var(--font-display); font-weight: 800; font-size: 13px; border: 1px solid var(--border); background: var(--panel-2); }
.tier-chip--s { color: var(--tier-s); border-color: rgba(242,193,78,.5); }
.tier-chip--a { color: var(--tier-a); border-color: rgba(231,166,198,.4); }
.tier-chip--b { color: var(--tier-b); }

.game__rating { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.game__score { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--gold); }
.game__reviews { color: var(--muted); font-size: 12.5px; }

.game__desc { color: var(--muted); font-size: 14.5px; margin-top: 14px; flex: 1; }
.game__genre { display: inline-flex; align-items: center; margin-top: 15px; font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--text); background: rgba(181,68,126,.14); border: 1px solid var(--border); padding: 5px 11px; border-radius: var(--radius-pill); align-self: flex-start; }
.game__cta { margin-top: 18px; }

/* stars */
.stars { --fill: 100%; position: relative; display: inline-block; line-height: 0; }
.stars__row { display: inline-flex; gap: 2px; }
.stars__row svg { width: 17px; height: 17px; }
.stars__base svg { color: #4A3A50; }
.stars__fill { position: absolute; inset: 0; width: var(--fill); overflow: hidden; white-space: nowrap; }
.stars__fill svg { color: var(--star); }

/* ============================================================
   NÚMEROS (stats)
   ============================================================ */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { text-align: center; padding: 30px 18px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--panel), var(--surface)); position: relative; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4.4vw, 44px); color: var(--gold); line-height: 1; }
.stat__label { color: var(--muted); font-size: 13.5px; margin-top: 12px; }

/* ============================================================
   EM AÇÃO (screenshot strip)
   ============================================================ */
.shots__strip { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.shots__strip::-webkit-scrollbar { height: 8px; }
.shots__strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 8px; }
.shot { position: relative; flex: none; height: 360px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--panel-2); scroll-snap-align: start; box-shadow: var(--shadow); }
.shot img { height: 100%; width: auto; object-fit: cover; }
.shot__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px; font-size: 12.5px; font-weight: 700; color: var(--text); background: linear-gradient(0deg, rgba(23,16,27,.92), transparent); }
.shot__cap b { color: var(--gold); }

/* ============================================================
   TRANSPARÊNCIA (como ganhamos)
   ============================================================ */
.money { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(26px, 4vw, 54px); align-items: center; }
.money__list { display: grid; gap: 14px; margin: 26px 0 0; padding: 0; list-style: none; }
.money__item { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(40,27,47,.42); }
.money__ico { width: 42px; height: 42px; flex: none; border-radius: 11px; display: grid; place-items: center; color: var(--gold); background: rgba(242,193,78,.12); border: 1px solid rgba(242,193,78,.28); }
.money__ico svg { width: 21px; height: 21px; }
.money__item h3 { font-family: var(--font-body); font-weight: 800; font-size: 15.5px; }
.money__item p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.money__note { margin-top: 22px; font-size: 13.5px; color: var(--muted); }
.money__note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.money__aside { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; background: linear-gradient(160deg, var(--panel), var(--surface)); }
.money__aside h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 17px; letter-spacing: .02em; }
.money__flags { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.money__flags li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.money__flags svg { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: 2px; }

/* ============================================================
   PORQUÊ CONFIAR (features)
   ============================================================ */
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--panel), var(--surface)); }
.feature__ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; color: var(--gold); background: rgba(242,193,78,.1); border: 1px solid rgba(242,193,78,.26); margin-bottom: 18px; }
.feature__ico svg { width: 25px; height: 25px; }
.feature h3 { font-family: var(--font-body); font-weight: 800; font-size: 17px; }
.feature p { color: var(--muted); font-size: 14.5px; margin: 10px 0 0; }

/* ============================================================
   OPINIÕES (reviews)
   ============================================================ */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--panel), var(--surface)); display: flex; flex-direction: column; }
.review__stars { margin-bottom: 14px; }
.review__quote { font-size: 15.5px; color: var(--text); flex: 1; }
.review__author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #241407; background: linear-gradient(150deg, var(--gold-hi), var(--magenta)); flex: none; }
.review__name { font-weight: 800; font-size: 14.5px; }
.review__role { color: var(--muted); font-size: 12.5px; }

/* ============================================================
   NEWSLETTER (form)
   ============================================================ */
.news { border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(150deg, var(--panel-2), var(--surface)); padding: clamp(28px, 4vw, 52px); position: relative; overflow: hidden; }
.news::before { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(242,193,78,.14), transparent 68%); pointer-events: none; }
.news__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 50px); align-items: center; position: relative; }
.news__lead { color: var(--muted); margin-top: 16px; font-size: 16px; }
.news__perks { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.news__perks li { display: flex; gap: 10px; align-items: center; font-size: 14.5px; }
.news__perks svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

.form__row { margin-bottom: 14px; }
.form__label { display: block; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 7px; }
.form__input { width: 100%; padding: 13px 15px; border-radius: var(--radius); border: 1px solid var(--border); background: rgba(23,16,27,.6); color: var(--text); font: inherit; font-size: 15px; transition: border-color .18s, box-shadow .18s; }
.form__input::placeholder { color: #7C6A7E; }
.form__input:focus-visible { border-color: var(--gold); box-shadow: none; }
.form__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__consent { display: flex; gap: 11px; align-items: flex-start; margin: 4px 0 18px; font-size: 13px; color: var(--muted); }
.form__consent input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--gold); flex: none; }
.form__consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.form__success { display: none; margin-top: 16px; padding: 14px 16px; border-radius: var(--radius); background: rgba(242,193,78,.12); border: 1px solid rgba(242,193,78,.4); color: var(--text); font-size: 14.5px; font-weight: 700; align-items: center; gap: 10px; }
.form__success.is-visible { display: flex; }
.form__success svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.form__hint { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { display: grid; gap: 12px; max-width: 860px; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(180deg, var(--panel), var(--surface)); overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; padding: 20px 22px; background: none; border: 0; color: var(--text); font-family: var(--font-body); font-weight: 800; font-size: 16.5px; }
.faq__icon { width: 26px; height: 26px; flex: none; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; transition: transform .22s ease; }
.faq__icon::before { top: 12px; left: 4px; right: 4px; height: 2.4px; }
.faq__icon::after { left: 12px; top: 4px; bottom: 4px; width: 2.4px; }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } }
.faq__a p { margin: 0; padding: 0 22px 22px; color: var(--muted); font-size: 15px; }

/* ============================================================
   SOBRE
   ============================================================ */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 54px); align-items: center; }
.about__text p { color: var(--muted); font-size: 16px; margin: 0 0 16px; }
.about__text p strong { color: var(--text); }
.about__card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; background: linear-gradient(160deg, var(--panel-2), var(--surface)); }
.about__card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 15px; letter-spacing: .06em; color: var(--gold); margin-bottom: 16px; }
.about__methods { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.about__methods li { display: flex; gap: 12px; font-size: 14.5px; }
.about__methods svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.about__contact { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 14.5px; color: var(--muted); }
.about__contact a { color: var(--gold); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding-block: clamp(40px, 6vw, 66px) 30px; background: linear-gradient(180deg, transparent, rgba(40,27,47,.4)); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; }
.footer__brand .logo { font-size: 20px; }
.footer__tag { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 40ch; }
.footer__col h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--text); margin: 0 0 16px; font-family: var(--font-body); font-weight: 800; }
.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__links a { color: var(--muted); font-size: 14px; transition: color .16s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; }
.footer__bottom a { color: var(--gold); }

/* ============================================================
   BACK TO TOP + COOKIE
   ============================================================ */
.totop { position: fixed; right: 22px; bottom: 22px; z-index: 55; width: 50px; height: 50px; border-radius: 14px; border: 1px solid var(--border); background: var(--panel); color: var(--gold); display: grid; place-items: center; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .25s, transform .25s; box-shadow: var(--shadow); }
.totop.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.totop svg { width: 22px; height: 22px; }

.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 70; max-width: 660px; margin-inline: auto; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 22px; box-shadow: var(--shadow); display: none; }
.cookie.is-visible { display: block; animation: cookieIn .35s ease; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .cookie.is-visible { animation: none; } }
.cookie__text { font-size: 13.5px; color: var(--muted); }
.cookie__text b { color: var(--text); }
.cookie__text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie__actions { display: flex; gap: 10px; margin-top: 15px; }
.cookie__actions .btn { padding: 10px 18px; font-size: 14px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { padding-block: clamp(40px, 6vw, 72px); }
.legal__head { max-width: 800px; margin-bottom: 34px; }
.legal__title { font-size: clamp(30px, 5vw, 48px); text-transform: uppercase; margin-top: 16px; }
.legal__updated { color: var(--muted); font-size: 14px; margin-top: 14px; }
.legal__body { max-width: 800px; }
.legal__body h2 { font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 26px); text-transform: uppercase; margin: 40px 0 14px; color: var(--text); }
.legal__body h3 { font-family: var(--font-body); font-weight: 800; font-size: 17px; margin: 24px 0 8px; }
.legal__body p, .legal__body li { color: var(--muted); font-size: 15.5px; }
.legal__body p { margin: 0 0 14px; }
.legal__body ul { margin: 0 0 16px; padding-left: 22px; display: grid; gap: 8px; }
.legal__body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal__body strong { color: var(--text); }
.back-home { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 700; font-size: 14.5px; }
.back-home svg { width: 17px; height: 17px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .roster { max-width: 560px; }
  .games__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid, .reviews__grid { grid-template-columns: 1fr; }
  .money, .about, .news__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 6px; background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px var(--pad) 22px; transform: translateY(-140%); transition: transform .3s ease; box-shadow: var(--shadow); }
  .nav.is-open { transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) { .nav { transition: none; } }
  .nav__link { padding: 13px 14px; font-size: 16px; border-radius: 10px; }
  .nav__cta { margin: 8px 0 0; }
  .burger { display: inline-flex; }
  .games__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .form__grid2 { grid-template-columns: 1fr; }
  .shot { height: 300px; }
  .hero__meta { gap: 18px; }
}
@media (max-width: 420px) {
  .stats__grid { grid-template-columns: 1fr; }
  .tier__item { width: 48px; height: 48px; }
}
