/* ============================================================
   SILESIA ENTERTAINMENT — Ciepły klub graczy
   Paleta: krem / palona pomarańcza / bordo / złoto VIP / brąz
   Typografia: Fraunces (display) + Hanken Grotesk (tekst)
              + Spline Sans Mono (kursy, liczby)
   ============================================================ */

:root {
  --bg: #FFF8F0;
  --bg-deep: #FBEFE0;
  --surface: #FFFDF8;
  --ink: #5D4037;
  --ink-strong: #3B2417;
  --ink-soft: #8A6F60;
  --line: #EAD9C5;
  --line-strong: #D9BFA3;

  --orange: #E67E22;
  --orange-deep: #C05F0E;
  --orange-soft: #FBE3CB;
  --maroon: #8B0000;
  --maroon-deep: #5E0000;
  --gold: #DAA520;
  --gold-soft: #F5E3B8;
  --green: #4E7C31;

  --dark: #2B1B10;
  --dark-2: #3A2416;
  --cream-on-dark: #F7E9D7;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Hanken Grotesk", "Segoe UI", sans-serif;
  --font-mono: "Spline Sans Mono", "Consolas", monospace;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 2px 6px rgba(93, 64, 55, .08), 0 12px 32px -12px rgba(93, 64, 55, .18);
  --shadow-lift: 0 4px 10px rgba(93, 64, 55, .12), 0 22px 48px -16px rgba(93, 64, 55, .28);

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");

  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  pointer-events: none;
  z-index: 9999;
  opacity: .5;
}
img { max-width: 100%; display: block; }
a { color: var(--orange-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--maroon); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-strong);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.4em; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--orange); color: #fff; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--maroon); color: #fff; padding: 10px 18px; z-index: 10000;
  border-radius: 0 0 8px 0; text-decoration: none;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 16px; letter-spacing: .01em;
  padding: 13px 26px; border-radius: var(--radius-sm);
  border: none; text-decoration: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 3px 0 var(--orange-deep), 0 10px 24px -8px rgba(230, 126, 34, .55);
}
.btn--primary:hover { background: #F08A2E; color: #fff; transform: translateY(-2px); box-shadow: 0 5px 0 var(--orange-deep), 0 16px 30px -8px rgba(230, 126, 34, .6); }
.btn--primary:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--orange-deep); }
.btn--maroon {
  background: var(--maroon); color: #fff;
  box-shadow: 0 3px 0 var(--maroon-deep), 0 10px 24px -8px rgba(139, 0, 0, .5);
}
.btn--maroon:hover { background: #A31212; color: #fff; transform: translateY(-2px); }
.btn--gold {
  background: linear-gradient(135deg, #E8B93B, var(--gold) 55%, #B8860B); color: var(--dark);
  box-shadow: 0 3px 0 #8f6a10, 0 10px 24px -8px rgba(218, 165, 32, .55);
}
.btn--gold:hover { transform: translateY(-2px); color: var(--dark); }
.btn--ghost {
  background: transparent; color: var(--ink-strong);
  box-shadow: inset 0 0 0 2px var(--line-strong);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--orange); color: var(--orange-deep); }
.btn--ghost-light {
  background: transparent; color: var(--cream-on-dark);
  box-shadow: inset 0 0 0 2px rgba(247, 233, 215, .4);
}
.btn--ghost-light:hover { box-shadow: inset 0 0 0 2px var(--orange); color: #fff; }
.btn--sm { padding: 9px 18px; font-size: 14.5px; }
.btn--lg { padding: 16px 34px; font-size: 18px; }
.btn--block { width: 100%; }

/* ---------- Topbar + Header ---------- */
.topbar {
  background: var(--dark); color: var(--cream-on-dark);
  font-size: 13.5px; font-weight: 600;
}
.topbar a { color: var(--cream-on-dark); }
.topbar__inner { display: flex; justify-content: space-between; gap: 16px; padding-block: 7px; flex-wrap: wrap; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 4px; }
.dot--live { background: #FF5A36; animation: pulse 1.6s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 90, 54, .55); }
  50% { box-shadow: 0 0 0 6px rgba(255, 90, 54, 0); }
}

.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255, 248, 240, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 28px; padding-block: 14px; }

.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.logo__mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: radial-gradient(120% 120% at 20% 15%, #F49A47, var(--orange) 55%, var(--orange-deep));
  color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 20px;
  display: grid; place-items: center;
  box-shadow: 0 3px 0 var(--orange-deep), inset 0 1px 0 rgba(255,255,255,.35);
  transform: rotate(-4deg);
}
.logo__text {
  font-family: var(--font-display); font-weight: 900; font-size: 21px;
  color: var(--ink-strong); line-height: 1.05; letter-spacing: -.01em;
}
.logo__text em { display: block; font-style: normal; font-size: 12.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--orange-deep); }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: 9px 13px; border-radius: 8px;
  font-weight: 700; font-size: 15.5px; color: var(--ink-strong); text-decoration: none;
}
.main-nav a:hover { background: var(--orange-soft); color: var(--orange-deep); }
.main-nav a.is-active { background: var(--orange); color: #fff; }
.header__actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px;
}
.nav-toggle span { width: 24px; height: 3px; background: var(--ink-strong); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (główna) ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(43, 27, 16, .93) 0%, rgba(74, 32, 12, .82) 45%, rgba(139, 0, 0, .55) 100%),
    url("../images/hero-stadium.jpg") center / cover no-repeat,
    linear-gradient(115deg, #3A2416, #5E2B0E 50%, var(--maroon-deep));
  color: var(--cream-on-dark);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 -1px;
  height: 26px;
  background:
    linear-gradient(-45deg, var(--bg) 12px, transparent 0) 0 0 / 26px 26px repeat-x,
    linear-gradient(45deg, var(--bg) 12px, transparent 0) 0 0 / 26px 26px repeat-x;
}
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; padding-block: 84px 110px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: #F7C58C; margin-bottom: 20px;
}
.hero__eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--orange); }
.hero__title {
  font-size: clamp(38px, 5.4vw, 62px); font-weight: 900; color: #fff;
  letter-spacing: -.02em; line-height: 1.06; margin-bottom: 22px;
}
.hero__title em { font-style: italic; color: #F7C58C; }
.hero__title .stroke { color: var(--orange); }
.hero__lead { font-size: 19.5px; max-width: 54ch; color: rgba(247, 233, 215, .92); margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero__ticks { display: flex; gap: 26px; flex-wrap: wrap; padding: 0; margin: 0; list-style: none; }
.hero__ticks li { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; color: rgba(247, 233, 215, .88); }
.hero__ticks .tick {
  width: 21px; height: 21px; border-radius: 50%; flex: none;
  background: var(--orange); color: #fff; font-size: 12px; font-weight: 900;
  display: grid; place-items: center;
}

/* Kupon w hero */
.hero-coupon {
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  transform: rotate(1.6deg);
  position: relative;
}
.hero-coupon::before, .hero-coupon::after {
  content: ""; position: absolute; left: 0; right: 0; height: 12px;
  background: radial-gradient(circle at 6px 6px, var(--dark-2) 5px, transparent 5.5px) 0 0 / 24px 12px repeat-x;
}
.hero-coupon::before { top: -6px; transform: rotate(180deg); }
.hero-coupon::after { bottom: -6px; }
.hero-coupon__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px; border-bottom: 2px dashed var(--line-strong);
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; letter-spacing: .06em;
  color: var(--ink-soft); text-transform: uppercase;
}
.hero-coupon__head strong { color: var(--maroon); }
.hero-coupon__body { padding: 18px 22px 8px; }
.coupon-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-block: 10px; border-bottom: 1px solid var(--line); }
.coupon-row:last-child { border-bottom: 0; }
.coupon-row__match { font-weight: 700; font-size: 15px; color: var(--ink-strong); }
.coupon-row__pick { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.coupon-row__odd { font-family: var(--font-mono); font-weight: 700; font-size: 17px; color: var(--orange-deep); }
.hero-coupon__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 18px; border-top: 2px dashed var(--line-strong);
}
.hero-coupon__foot .lbl { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.hero-coupon__foot .sum { font-family: var(--font-mono); font-size: 24px; font-weight: 700; color: var(--green); }
.hero-coupon__stamp {
  position: absolute; top: -18px; right: -14px;
  width: 92px; height: 92px; border-radius: 50%;
  border: 3px solid var(--maroon);
  color: var(--maroon);
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-weight: 900; font-size: 12px; line-height: 1.2;
  text-transform: uppercase; letter-spacing: .06em;
  transform: rotate(12deg);
  background: rgba(255, 253, 248, .92);
  box-shadow: var(--shadow);
}

/* ---------- Sekcje wspólne ---------- */
.section { padding-block: 74px; }
.section--tight { padding-block: 52px; }
.section--cream { background: var(--bg-deep); }
.section--dark { background: linear-gradient(160deg, var(--dark), #451E0B 70%, var(--maroon-deep)); color: var(--cream-on-dark); }
.section--dark .section__title, .section--dark h3 { color: #fff; }
.section--dark .section__kicker { color: #F7C58C; }
.section--dark .section__sub { color: rgba(247, 233, 215, .8); }

.section__head { max-width: 720px; margin-bottom: 40px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section__head--split > div { max-width: 640px; }
.section__kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange-deep); margin-bottom: 12px;
}
.section__kicker::before { content: "✦"; font-size: 11px; }
.section__title { font-size: clamp(28px, 3.6vw, 42px); font-weight: 900; letter-spacing: -.015em; margin-bottom: 12px; }
.section__sub { font-size: 18px; color: var(--ink-soft); margin: 0; }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--maroon); color: #fff; overflow: hidden;
  border-block: 3px solid var(--maroon-deep);
}
.ticker__track {
  display: flex; gap: 48px; padding-block: 10px;
  white-space: nowrap; width: max-content;
  animation: ticker 42s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker__item { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14.5px; }
.ticker__item .odd { font-family: var(--font-mono); background: rgba(255,255,255,.14); padding: 2px 9px; border-radius: 6px; }
.ticker__item .live-tag { background: #FF5A36; font-size: 11px; letter-spacing: .1em; padding: 2px 7px; border-radius: 4px; text-transform: uppercase; }

/* ---------- Na żywo — tabela kursów ---------- */
.live-board { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.match-list { display: flex; flex-direction: column; gap: 14px; }
.match-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.match-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.match-card__meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; flex-wrap: wrap; }
.badge-live {
  background: var(--maroon); color: #fff; font-size: 11px; font-weight: 800;
  padding: 3px 9px; border-radius: 5px; letter-spacing: .12em;
  display: inline-flex; align-items: center; gap: 6px;
}
.badge-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #FF8A6B; animation: pulse 1.6s infinite; }
.badge-time { font-family: var(--font-mono); color: var(--maroon); font-weight: 700; }
.match-card__teams { font-weight: 800; font-size: 17.5px; color: var(--ink-strong); font-family: var(--font-display); }
.match-card__score { font-family: var(--font-mono); color: var(--orange-deep); margin-inline: 8px; }
.match-card__odds { display: flex; gap: 8px; }
.odd-chip {
  min-width: 74px; padding: 8px 10px; border-radius: var(--radius-sm);
  background: var(--bg); border: 1.5px solid var(--line-strong);
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  font-family: var(--font-mono); cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
}
.odd-chip small { font-size: 11px; font-weight: 600; color: var(--ink-soft); letter-spacing: .04em; }
.odd-chip b { font-size: 16.5px; font-weight: 700; color: var(--ink-strong); }
.odd-chip:hover { border-color: var(--orange); background: var(--orange-soft); transform: translateY(-2px); }
.odd-chip.is-picked { background: var(--orange); border-color: var(--orange-deep); }
.odd-chip.is-picked small, .odd-chip.is-picked b { color: #fff; }
.odd-chip.odd-up b { color: var(--green); }
.odd-chip.odd-down b { color: var(--maroon); }

/* Kupon boczny (betslip) */
.betslip {
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-lift);
  position: sticky; top: 120px;
  border: 1px solid var(--line);
}
.betslip__head {
  background: var(--dark); color: var(--cream-on-dark);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 14px 20px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
}
.betslip__count { background: var(--orange); color: #fff; font-family: var(--font-mono); font-size: 13px; min-width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; }
.betslip__body { padding: 16px 20px; min-height: 96px; }
.betslip__empty { color: var(--ink-soft); font-size: 14.5px; text-align: center; padding-block: 14px; }
.betslip__item { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding-block: 9px; border-bottom: 1px dashed var(--line-strong); font-size: 14px; }
.betslip__item b { font-family: var(--font-mono); color: var(--orange-deep); }
.betslip__item button { background: none; border: 0; color: var(--maroon); font-size: 16px; padding: 2px 6px; }
.betslip__foot { padding: 14px 20px 20px; border-top: 2px dashed var(--line-strong); }
.betslip__row { display: flex; justify-content: space-between; align-items: center; font-size: 14.5px; margin-bottom: 8px; }
.betslip__row output { font-family: var(--font-mono); font-weight: 700; color: var(--green); font-size: 18px; }
.betslip__stake {
  width: 110px; padding: 8px 10px; border: 1.5px solid var(--line-strong); border-radius: 8px;
  font-family: var(--font-mono); font-size: 15px; text-align: right; background: var(--bg);
  color: var(--ink-strong);
}
.betslip__stake:focus { outline: 2px solid var(--orange); border-color: var(--orange); }

/* ---------- Kafle dyscyplin ---------- */
.sport-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sport-tile {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.sport-tile:hover { transform: translateY(-4px) rotate(-.4deg); box-shadow: var(--shadow-lift); color: var(--ink); }
.sport-tile__icon { font-size: 34px; margin-bottom: 12px; display: block; }
.sport-tile h3 { font-size: 20px; margin-bottom: 6px; }
.sport-tile p { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 10px; }
.sport-tile__count { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--orange-deep); }
.sport-tile::after {
  content: "→"; position: absolute; right: 18px; bottom: 14px;
  font-weight: 800; color: var(--orange); opacity: 0; transform: translateX(-8px);
  transition: .2s;
}
.sport-tile:hover::after { opacity: 1; transform: none; }

/* ---------- Wydarzenia / kalendarz ---------- */
.event-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.event-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
}
.event-card__date {
  display: flex; align-items: center; gap: 14px;
  background: var(--orange-soft); padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}
.event-card__day { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--orange-deep); line-height: 1; }
.event-card__month { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.event-card__body { padding: 18px; flex: 1; }
.event-card__body h3 { font-size: 18.5px; margin-bottom: 6px; }
.event-card__body p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 0; }
.event-card__foot { padding: 0 18px 18px; display: flex; justify-content: space-between; align-items: center; }
.event-card__tag { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--maroon); background: rgba(139,0,0,.08); padding: 4px 10px; border-radius: 6px; }
.countdown { font-family: var(--font-mono); font-weight: 700; font-size: 14px; color: var(--orange-deep); }

/* ---------- Społeczność ---------- */
.community-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.panel__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px; border-bottom: 1px solid var(--line);
  background: linear-gradient(to right, var(--bg-deep), var(--surface));
}
.panel__head h3 { margin: 0; font-size: 19px; }
.panel__link { font-size: 14px; font-weight: 700; }

.forum-post { display: flex; gap: 14px; padding: 15px 22px; border-bottom: 1px solid var(--line); }
.forum-post:last-child { border-bottom: 0; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 15px; color: #fff;
}
.avatar--a { background: linear-gradient(135deg, #E67E22, #C05F0E); }
.avatar--b { background: linear-gradient(135deg, #8B0000, #5E0000); }
.avatar--c { background: linear-gradient(135deg, #4E7C31, #35571F); }
.avatar--d { background: linear-gradient(135deg, #B8860B, #8f6a10); }
.avatar--e { background: linear-gradient(135deg, #5D4037, #3B2417); }
.forum-post__meta { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; margin-bottom: 3px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.forum-post__title { font-weight: 700; font-size: 15.5px; color: var(--ink-strong); margin-bottom: 3px; }
.forum-post__title a { color: inherit; text-decoration: none; }
.forum-post__title a:hover { color: var(--orange-deep); }
.forum-post__snippet { font-size: 14px; color: var(--ink-soft); margin: 0; }
.forum-post__stats { margin-left: auto; text-align: right; font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); flex: none; }
.rank-badge {
  font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 5px;
}
.rank-badge--gold { background: var(--gold-soft); color: #8f6a10; }
.rank-badge--silver { background: #ECECEC; color: #6b6b6b; }
.rank-badge--bronze { background: #F0DCC8; color: #9c5a1d; }
.rank-badge--platinum { background: var(--dark); color: var(--gold); }

/* Ranking table */
.rank-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.rank-table th {
  text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-soft); padding: 12px 16px; border-bottom: 2px solid var(--line-strong);
}
.rank-table td { padding: 11px 16px; border-bottom: 1px solid var(--line); }
.rank-table tr:last-child td { border-bottom: 0; }
.rank-table .pos { font-family: var(--font-display); font-weight: 900; font-size: 17px; color: var(--orange-deep); }
.rank-table .num { font-family: var(--font-mono); font-weight: 700; }
.rank-table .up { color: var(--green); }
.rank-table tbody tr:hover { background: var(--orange-soft); }

/* Crews */
.crew-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.crew-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow); position: relative;
  transition: transform .18s, box-shadow .18s;
}
.crew-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.crew-card__flag { font-size: 30px; margin-bottom: 10px; display: block; }
.crew-card h3 { font-size: 19px; margin-bottom: 4px; }
.crew-card__region { font-size: 13px; font-weight: 700; color: var(--maroon); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.crew-card p { font-size: 14.5px; color: var(--ink-soft); }
.crew-card__stats { display: flex; gap: 18px; font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--ink-strong); border-top: 1px dashed var(--line-strong); padding-top: 12px; margin-top: 12px; }

/* ---------- VIP ---------- */
.vip-section { position: relative; }
.vip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.vip-card {
  background: var(--dark-2); border-radius: var(--radius);
  border: 1px solid rgba(247, 233, 215, .14);
  padding: 26px 22px; color: var(--cream-on-dark);
  display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.vip-card:hover { transform: translateY(-5px); }
.vip-card__tier {
  font-family: var(--font-display); font-weight: 900; font-size: 23px; margin-bottom: 2px;
}
.vip-card__req { font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: rgba(247,233,215,.6); margin-bottom: 16px; }
.vip-card ul { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 9px; font-size: 14.5px; }
.vip-card li { padding-left: 22px; position: relative; }
.vip-card li::before { content: "✓"; position: absolute; left: 0; font-weight: 900; color: var(--orange); }
.vip-card--bronze { border-top: 4px solid #C77B3B; }
.vip-card--bronze .vip-card__tier { color: #E8A468; }
.vip-card--silver { border-top: 4px solid #C0C0C0; }
.vip-card--silver .vip-card__tier { color: #DDD; }
.vip-card--gold { border-top: 4px solid var(--gold); }
.vip-card--gold .vip-card__tier { color: var(--gold); }
.vip-card--platinum {
  border: 1px solid var(--gold);
  background: linear-gradient(160deg, #241105, #3A2004 60%, #4A2E06);
  box-shadow: 0 0 0 1px rgba(218,165,32,.25), 0 18px 44px -14px rgba(218, 165, 32, .35);
  position: relative;
}
.vip-card--platinum .vip-card__tier { color: var(--gold); }
.vip-card--platinum li::before { color: var(--gold); }
.vip-card__crown { position: absolute; top: -14px; right: 16px; font-size: 26px; transform: rotate(12deg); }
.vip-note { margin-top: 26px; text-align: center; font-size: 14.5px; color: rgba(247,233,215,.75); }
.vip-note a { color: #F7C58C; }

/* ---------- Promocje ---------- */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.promo-card {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.promo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.promo-card__media { aspect-ratio: 16 / 9; position: relative; background: linear-gradient(135deg, var(--orange-soft), #F6CFA5); overflow: hidden; }
.promo-card__media img { width: 100%; height: 100%; object-fit: cover; }
.promo-card__ribbon {
  position: absolute; top: 14px; left: -34px; transform: rotate(-45deg);
  background: var(--maroon); color: #fff; font-size: 11.5px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 40px;
}
.promo-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.promo-card__body h3 { font-size: 21px; margin-bottom: 8px; }
.promo-card__value { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--orange-deep); margin-bottom: 10px; }
.promo-card__body p { font-size: 15px; color: var(--ink-soft); flex: 1; }
.promo-card__terms { font-size: 12px; color: var(--ink-soft); margin-top: 12px; border-top: 1px dashed var(--line-strong); padding-top: 10px; }

/* ---------- O firmie ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lift); aspect-ratio: 4/3; object-fit: cover; width: 100%; background: linear-gradient(135deg, var(--orange-soft), #E8C9A8); }
.about-media__stamp {
  position: absolute; bottom: -22px; right: -14px;
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-lift); padding: 16px 20px;
  font-family: var(--font-display); text-align: center;
  transform: rotate(-3deg);
}
.about-media__stamp b { display: block; font-size: 30px; font-weight: 900; color: var(--maroon); }
.about-media__stamp span { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px; text-align: center; box-shadow: var(--shadow);
}
.stat b { display: block; font-family: var(--font-display); font-weight: 900; font-size: 26px; color: var(--orange-deep); }
.stat span { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-soft); }

.trust-strip { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 99px;
  padding: 8px 16px; font-size: 13.5px; font-weight: 700; color: var(--ink-strong);
  box-shadow: var(--shadow);
}

/* ---------- Page hero (podstrony) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--dark) 0%, #46220E 55%, var(--maroon-deep) 100%);
  color: var(--cream-on-dark);
  padding-block: 56px 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--grain); opacity: .6;
}
.page-hero > .container { position: relative; }
.breadcrumbs { font-size: 13.5px; font-weight: 600; margin-bottom: 18px; display: flex; gap: 10px; align-items: center; color: rgba(247,233,215,.7); }
.breadcrumbs a { color: rgba(247,233,215,.85); }
.breadcrumbs a:hover { color: #fff; }
.page-hero__title { color: #fff; font-size: clamp(30px, 4.2vw, 46px); font-weight: 900; letter-spacing: -.015em; max-width: 20ch; }
.page-hero__lead { font-size: 18px; max-width: 64ch; color: rgba(247,233,215,.88); }
.page-hero__note { font-size: 14.5px; font-weight: 700; color: #F7C58C; margin: 10px 0 0; }
.legal-meta { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13.5px; font-weight: 700; color: rgba(247,233,215,.65); margin-top: 18px; }
.legal-meta span { display: inline-flex; align-items: center; gap: 7px; }
.legal-meta span::before { content: "•"; color: var(--orange); }

/* ---------- Legal layout ---------- */
.legal-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 48px; padding-block: 56px 80px; align-items: start; }
.toc {
  position: sticky; top: 110px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
  max-height: calc(100vh - 140px); overflow: auto;
}
.toc__title { font-family: var(--font-display); font-weight: 900; font-size: 17px; color: var(--ink-strong); margin: 0 0 12px; }
.toc ol { margin: 0; padding-left: 20px; display: grid; gap: 7px; font-size: 13.5px; }
.toc a { color: var(--ink); text-decoration: none; font-weight: 600; }
.toc a:hover { color: var(--orange-deep); }

.legal-content { max-width: 76ch; }
.legal-content section { margin-bottom: 44px; scroll-margin-top: 120px; }
.legal-content h2 {
  font-size: 26px; font-weight: 900; letter-spacing: -.01em;
  padding-bottom: 10px; border-bottom: 3px solid var(--orange-soft);
  margin-bottom: 18px;
}
.legal-content h3 { font-size: 19px; margin-top: 26px; }
.legal-content ol, .legal-content ul { margin-bottom: 1em; }
.legal-content li { margin-bottom: .45em; }
.legal-content dt { font-weight: 800; color: var(--ink-strong); margin-top: 14px; }
.legal-content dd { margin: 4px 0 0 0; padding-left: 18px; border-left: 3px solid var(--orange-soft); }

.callout {
  border-radius: var(--radius); padding: 20px 24px; margin: 24px 0;
  border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow);
  position: relative; padding-left: 58px;
}
.callout::before {
  position: absolute; left: 20px; top: 20px; font-size: 22px;
}
.callout--warning { border-left: 5px solid var(--maroon); }
.callout--warning::before { content: "⚠️"; }
.callout--info { border-left: 5px solid var(--orange); }
.callout--info::before { content: "💡"; }
.callout--gold { border-left: 5px solid var(--gold); }
.callout--gold::before { content: "⭐"; }
.callout p:last-child { margin-bottom: 0; }

.table-wrap { overflow-x: auto; margin: 22px 0; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.table-wrap table { width: 100%; border-collapse: collapse; font-size: 14.5px; background: var(--surface); min-width: 560px; }
.table-wrap th {
  background: var(--dark); color: var(--cream-on-dark);
  text-align: left; padding: 12px 16px; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .07em;
}
.table-wrap td { padding: 11px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table-wrap tbody tr:nth-child(even) { background: var(--bg); }
.table-wrap tbody tr:last-child td { border-bottom: 0; }

/* ---------- Pomoc / FAQ ---------- */
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.help-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; text-decoration: none; color: var(--ink); box-shadow: var(--shadow);
  transition: transform .18s, box-shadow .18s; position: relative;
}
.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); color: var(--ink); }
.help-card__icon { font-size: 30px; display: block; margin-bottom: 12px; }
.help-card h2 { font-size: 19.5px; margin-bottom: 6px; }
.help-card p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 12px; }
.help-card__count { font-family: var(--font-mono); font-size: 12.5px; font-weight: 700; color: var(--orange-deep); }

.faq-section { scroll-margin-top: 100px; }
.faq-section .section__title { font-size: 26px; }
.faq-list { max-width: 860px; display: grid; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 17px 52px 17px 20px; font-size: 16.5px; font-weight: 700; color: var(--ink-strong);
  position: relative; font-family: var(--font-body);
}
.faq-q:hover { color: var(--orange-deep); }
.faq-icon {
  position: absolute; right: 18px; top: 50%; width: 22px; height: 22px;
  transform: translateY(-50%);
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--orange); border-radius: 2px;
  transition: transform .25s;
}
.faq-icon::before { width: 14px; height: 3px; top: 9.5px; left: 4px; }
.faq-icon::after { width: 3px; height: 14px; top: 4px; left: 9.5px; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a > * { padding-inline: 20px; }
.faq-a > :first-child { padding-top: 2px; }
.faq-a > :last-child { padding-bottom: 18px; }
.faq-item.is-open { border-color: var(--orange); }

/* Kontakt */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); text-align: center;
}
.contact-card__icon { font-size: 32px; display: block; margin-bottom: 12px; }
.contact-card h3 { font-size: 18.5px; margin-bottom: 8px; }
.contact-card p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 0; }
.contact-card .btn { margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark); color: rgba(247, 233, 215, .85);
  padding-block: 64px 34px; position: relative;
}
.site-footer::before {
  content: "";
  position: absolute; top: -1px; left: 0; right: 0; height: 26px; transform: rotate(180deg);
  background:
    linear-gradient(-45deg, var(--bg) 12px, transparent 0) 0 0 / 26px 26px repeat-x,
    linear-gradient(45deg, var(--bg) 12px, transparent 0) 0 0 / 26px 26px repeat-x;
}
body.page-legal .site-footer::before, body.page-help .site-footer::before { display: none; }
.site-footer a { color: rgba(247, 233, 215, .85); }
.site-footer a:hover { color: var(--orange); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 34px; padding-bottom: 40px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 14.5px; }
.footer__heading {
  font-family: var(--font-display); font-weight: 900; font-size: 16px; color: #fff;
  margin: 0 0 14px; letter-spacing: .02em;
}
.footer__col--brand p { font-size: 14.5px; margin-top: 14px; }
.logo--footer .logo__text { color: #fff; }
.logo--footer .logo__text em { color: var(--orange); }
.footer__badges { display: flex; gap: 12px; align-items: center; margin-top: 18px; }
.badge-18 {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--maroon); color: #fff; border: 2.5px solid #fff;
  font-family: var(--font-display); font-weight: 900; font-size: 18px;
  display: grid; place-items: center; flex: none;
}
.badge-license {
  font-size: 11px; line-height: 1.35; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  border: 1.5px solid rgba(247,233,215,.35); border-radius: 8px; padding: 8px 12px;
}
.footer__contact li { line-height: 1.5; }
.footer__payments {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding-block: 22px; border-block: 1px solid rgba(247,233,215,.14);
}
.pay-chip {
  font-size: 12.5px; font-weight: 800; letter-spacing: .04em;
  background: rgba(247,233,215,.09); border: 1px solid rgba(247,233,215,.16);
  padding: 7px 14px; border-radius: 7px; color: rgba(247,233,215,.9);
  display: inline-flex; align-items: center;
}
.pay-logo {
  height: 34px; width: auto; border-radius: 6px;
  border: 1px solid rgba(247,233,215,.2);
  background: #fff;
  opacity: .95; transition: opacity .15s, transform .15s;
}
.pay-logo:hover { opacity: 1; transform: translateY(-2px); }
.footer__payments { align-items: center; }
.footer__legal { padding-top: 26px; font-size: 13px; line-height: 1.7; color: rgba(247,233,215,.62); }
.footer__legal p { margin-bottom: 12px; }
.footer__helpline { color: rgba(247,233,215,.85); }
.footer__helpline strong { color: #F7C58C; }
.footer__copy { margin-top: 18px; font-size: 12.5px; }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 11000;
  background: rgba(30, 16, 8, .92); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 20px;
}
.age-gate__box {
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-lift);
  max-width: 460px; width: 100%; padding: 38px 34px; text-align: center;
  border-top: 6px solid var(--maroon);
}
.age-gate__badge {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--maroon); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 26px;
  border: 3px solid var(--maroon-deep);
}
.age-gate__box h2 { font-size: 24px; }
.age-gate__box p { font-size: 15px; color: var(--ink-soft); }
.age-gate__actions { display: grid; gap: 10px; margin-top: 22px; }
.age-gate__small { font-size: 12px; margin-top: 16px; color: var(--ink-soft); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 10500;
  max-width: 720px; margin-inline: auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lift); padding: 22px 26px;
  border-left: 6px solid var(--orange);
}
.cookie-banner h3 { font-size: 18px; margin-bottom: 6px; }
.cookie-banner p { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.cookie-modal {
  position: fixed; inset: 0; z-index: 10800;
  background: rgba(30, 16, 8, .75); display: grid; place-items: center; padding: 20px;
}
.cookie-modal__box {
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-lift);
  max-width: 560px; width: 100%; max-height: 86vh; overflow: auto; padding: 30px;
}
.cookie-modal__box h3 { font-size: 22px; }
.cookie-cat {
  display: flex; justify-content: space-between; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.cookie-cat b { display: block; font-size: 15.5px; color: var(--ink-strong); }
.cookie-cat p { font-size: 13.5px; color: var(--ink-soft); margin: 4px 0 0; }
.switch { position: relative; width: 48px; height: 27px; flex: none; }
.switch input { opacity: 0; width: 100%; height: 100%; position: absolute; margin: 0; cursor: pointer; }
.switch span {
  position: absolute; inset: 0; border-radius: 99px; background: var(--line-strong);
  transition: .2s; pointer-events: none;
}
.switch span::after {
  content: ""; position: absolute; width: 21px; height: 21px; border-radius: 50%;
  background: #fff; top: 3px; left: 3px; transition: .2s; box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.switch input:checked + span { background: var(--orange); }
.switch input:checked + span::after { transform: translateX(21px); }
.switch input:disabled + span { background: var(--gold); opacity: .6; }
.cookie-modal__actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

/* ---------- Modal auth ---------- */
.auth-modal {
  position: fixed; inset: 0; z-index: 10900;
  background: rgba(30, 16, 8, .8); display: grid; place-items: center; padding: 20px;
}
.auth-modal__box {
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-lift);
  max-width: 440px; width: 100%; padding: 34px; position: relative;
  border-top: 6px solid var(--orange);
}
.auth-modal__close {
  position: absolute; top: 14px; right: 14px; background: none; border: 0;
  font-size: 22px; color: var(--ink-soft); padding: 6px;
}
.auth-modal__box h3 { font-size: 24px; margin-bottom: 4px; }
.auth-modal__box > p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 20px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 5px; color: var(--ink-strong); }
.form-field input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; background: var(--bg); color: var(--ink-strong);
}
.form-field input:focus { outline: 2px solid var(--orange); border-color: var(--orange); }
.form-note { font-size: 12px; color: var(--ink-soft); margin-top: 14px; }
.auth-modal__msg { background: var(--orange-soft); border-radius: 8px; padding: 12px 16px; font-size: 14px; font-weight: 600; color: var(--orange-deep); margin-top: 14px; display: none; }
.auth-modal__msg.is-visible { display: block; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > :nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-visible > :nth-child(2) { transition-delay: .14s; }
.reveal-stagger.is-visible > :nth-child(3) { transition-delay: .23s; }
.reveal-stagger.is-visible > :nth-child(4) { transition-delay: .32s; }
.reveal-stagger.is-visible > :nth-child(5) { transition-delay: .41s; }
.reveal-stagger.is-visible > :nth-child(6) { transition-delay: .5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .ticker__track { animation: none; }
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: #fff; border: 0; font-size: 20px;
  box-shadow: var(--shadow-lift); opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s; transform: translateY(10px);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--orange-deep); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .main-nav a { padding: 9px 9px; font-size: 14.5px; }
  .sport-grid, .vip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .live-board { grid-template-columns: 1fr; }
  .betslip { position: static; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding-block: 60px 90px; }
  .hero-coupon { max-width: 460px; }
  .community-grid, .about-grid { grid-template-columns: 1fr; }
  .event-list, .promo-grid, .crew-grid, .help-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; gap: 30px; }
  .toc { position: static; max-height: none; }

  .nav-toggle { display: flex; position: relative; z-index: 960; }
  /* backdrop-filter tworzy containing block dla position:fixed —
     na mobile wyłączamy, aby szuflada nawigacji zajęła cały ekran */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--bg); }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw);
    background: var(--dark); padding: 90px 26px 30px; margin: 0;
    transform: translateX(100%); transition: transform .3s ease; z-index: 950;
    overflow-y: auto;
  }
  body.nav-open .main-nav { transform: none; box-shadow: -20px 0 60px rgba(0,0,0,.4); }
  .main-nav ul { flex-direction: column; gap: 6px; }
  .main-nav a { color: var(--cream-on-dark); font-size: 18px; padding: 12px 14px; }
  .main-nav a:hover { background: rgba(247,233,215,.08); color: var(--orange); }
  .header__actions .btn--ghost { display: none; }
  .header__inner { gap: 14px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding-block: 54px; }
  .topbar__item--right { display: none; }
  .sport-grid, .event-list, .promo-grid, .crew-grid, .vip-grid, .help-grid, .contact-grid, .stat-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .match-card { grid-template-columns: 1fr; }
  .match-card__odds { justify-content: stretch; }
  .odd-chip { flex: 1; }
  .hero__cta .btn { width: 100%; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 18px; }
  .hero-coupon__stamp { display: none; }
}
