/* ============================================================
   fscasino.net.pl – "Premium" Dark Theme
   Design concept: Deep slate-charcoal, rich gold accents,
   red CTA buttons, blue secondary accents, sophisticated feel.
   Author: fscasino.net.pl | Last update: 2026-04-16
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* Core brand colors */
  --red:         #cc0000;
  --red-hover:   #e60000;
  --red-shadow:  rgba(204,0,0,0.35);

  /* Gold / premium accent */
  --gold:        #c9a227;
  --gold-light:  #e8c355;
  --gold-muted:  rgba(201,162,39,0.15);

  /* Blue secondary accent */
  --blue:        #1a5fb4;
  --blue-light:  #3b85e8;
  --blue-glow:   rgba(26,95,180,0.25);

  /* Page backgrounds – deep charcoal / slate */
  --bg-page:     #0c0e12;
  --bg-card:     #141820;
  --bg-nested:   #1c2130;
  --bg-header:   #0a0c10;
  --bg-footer:   #08090e;

  /* Text */
  --text:        #d8dce8;
  --text-muted:  #8892a8;
  --text-head:   #ffffff;
  --text-link:   #3b85e8;

  /* Borders */
  --border:      #202535;
  --border-gold: rgba(201,162,39,0.4);

  /* Spacing scale */
  --sp-xs: 0.375rem;
  --sp-sm: 0.75rem;
  --sp-md: 1.25rem;
  --sp-lg: 2rem;
  --sp-xl: 3.5rem;

  /* Typography */
  --font-base:  'Segoe UI', system-ui, Arial, sans-serif;
  --font-head:  'Georgia', 'Times New Roman', serif; /* premium serif headings */

  /* Radii */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  14px;
  --r-xl:  24px;

  /* Transitions */
  --tr: 0.22s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-base);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.05rem);
  background: var(--bg-page);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.5rem; }

/* ── Skip Link (accessibility) ── */
.skip-link {
  position: absolute; top: -50px; left: 0; z-index: 9999;
  background: var(--gold); color: #000; font-weight: 700;
  padding: 0.6rem 1.2rem; border-radius: 0 0 var(--r-md) 0;
  transition: top var(--tr);
}
.skip-link:focus { top: 0; }

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

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg-header);
  border-bottom: 2px solid var(--border-gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  height: 68px; max-width: 1200px;
  margin: 0 auto; padding: 0 1.25rem;
}
.site-logo { flex-shrink: 0; }
.site-logo img { height: 46px; width: auto; }

/* Desktop nav */
.site-nav {
  display: flex; gap: 1.5rem;
  margin-left: auto; align-items: center;
}
.site-nav a {
  color: var(--text-muted); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color var(--tr);
}
.site-nav a:hover { color: var(--gold); text-decoration: none; }
.btn-header { margin-left: 1.2rem; }

/* Hamburger toggle */
.nav-toggle {
  display: none; flex-direction: column; justify-content: space-around;
  width: 34px; height: 28px; background: none; border: none;
  cursor: pointer; padding: 0; margin-left: auto;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--gold);
  border-radius: 2px; transition: var(--tr);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ── Mobile Nav ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
}
.mobile-nav.open { display: block; }
.mobile-nav-panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(320px, 90vw);
  background: var(--bg-card);
  border-left: 2px solid var(--border-gold);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.mobile-nav-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 1.4rem; cursor: pointer; align-self: flex-end;
  transition: color var(--tr);
}
.mobile-nav-close:hover { color: var(--gold); }
.mobile-nav-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav-links a {
  display: block; padding: 0.65rem 1rem;
  color: var(--text); font-weight: 600; font-size: 1.05rem;
  border-radius: var(--r-md); transition: background var(--tr), color var(--tr);
}
.mobile-nav-links a:hover { background: var(--bg-nested); color: var(--gold); text-decoration: none; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7rem 1.6rem; border-radius: var(--r-sm);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent;
  transition: background var(--tr), box-shadow var(--tr), transform 0.1s;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

/* Primary – red with gold border shimmer */
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 0 var(--red-shadow);
}
.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--gold);
  box-shadow: 0 4px 18px var(--red-shadow);
}

/* Secondary – gold-outlined */
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold-muted);
  color: var(--gold-light);
}

/* Large variant */
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }

/* ══════════════════════════════════════
   BREADCRUMBS
══════════════════════════════════════ */
.breadcrumbs {
  background: var(--bg-nested);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  font-size: 0.82rem;
}
.breadcrumbs ol {
  list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.25rem 0.6rem; align-items: center;
}
.breadcrumbs li { display: flex; align-items: center; gap: 0.4rem; }
.breadcrumbs li:not(:last-child)::after { content: '›'; color: var(--gold); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs [aria-current="page"] { color: var(--text); font-weight: 600; }

/* ══════════════════════════════════════
   HERO / BANNER
══════════════════════════════════════ */

/* Separator between sticky header and banner */
.hero-spacer {
  height: 28px;
  background: linear-gradient(90deg, var(--gold), var(--border-gold), transparent);
}

/* Hero is a positioned container – height is set by the full-size banner image */
.hero {
  position: relative;
  overflow: hidden;
  display: block; /* block so the <img> drives the height */
}
/* Full-size banner image – never cropped, always shows completely */
.hero-bg {
  width: 100%;
  height: auto;
  display: block;
}
/* Dark gradient overlay sits on top of the image */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,9,14,0.88) 0%,
    rgba(8,9,14,0.65) 50%,
    rgba(8,9,14,0.18) 100%
  );
}
/* Gold decorative border at bottom */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
/* Content block floats over the image, left-aligned, vertically centred */
.hero-content {
  position: absolute;
  /* Align left edge with the page container */
  left: max(1.25rem, calc((100% - 1200px) / 2 + 1.25rem));
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  text-align: left;
  padding: 2.5rem 2rem;
  max-width: 580px;
  width: calc(100% - max(2.5rem, calc((100% - 1200px) / 2 + 2.5rem)) - 1.25rem);
  background: rgba(8,9,14,0.78);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  backdrop-filter: blur(6px);
  overflow-wrap: break-word; word-break: break-word;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw + 0.6rem, 2.4rem);
  color: var(--text-head);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
/* Gold accent line under H1 – left-aligned */
.hero-content h1::after {
  content: '';
  display: block; width: 80px; height: 3px;
  background: var(--gold); border-radius: 2px;
  margin: 0.6rem 0 0;
}
.hero-tagline {
  color: var(--text-muted); font-size: 1rem; margin-bottom: 1rem;
}
.hero-bonus {
  display: inline-block;
  background: var(--gold-muted);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 1.05rem; font-weight: 700;
  padding: 0.5rem 1.4rem; border-radius: var(--r-md);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  max-width: 100%; word-break: break-word;
}
/* Buttons left-aligned */
.hero-buttons { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }

/* ══════════════════════════════════════
   POPULAR SLOTS
══════════════════════════════════════ */
.slots-section {
  padding: var(--sp-xl) 0;
  border-bottom: 1px solid var(--border);
}
.section-title {
  font-family: var(--font-head);
  text-align: center;
  font-size: clamp(1.4rem, 2.5vw + 0.6rem, 2rem);
  color: var(--text-head);
  margin-bottom: 0.4rem;
  position: relative;
}
/* Gold underline decoration */
.section-title::after {
  content: '';
  display: block; width: 60px; height: 3px;
  background: var(--gold); border-radius: 2px;
  margin: 0.5rem auto 0;
}
.section-subtitle {
  text-align: center; color: var(--text-muted);
  font-size: 0.92rem; margin-bottom: 2.5rem;
}
/* 6-column desktop grid */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
.slot-item { position: relative; overflow: hidden; border-radius: 12px; }
.slot-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.slot-item:hover img {
  transform: scale(1.06);
  box-shadow: 0 0 0 2px var(--gold);
}
/* Slots CTA */
.slots-cta { text-align: center; margin-top: 2rem; }

/* ══════════════════════════════════════
   GOLD DIVIDER (between sections)
══════════════════════════════════════ */
.gold-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 2.5rem 0;
}
.gold-divider::before, .gold-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold));
}
.gold-divider::after { background: linear-gradient(90deg, var(--border-gold), transparent); }
.gold-divider span { color: var(--gold); font-size: 1.3rem; }

/* ══════════════════════════════════════
   MAIN LAYOUT (article + sidebar)
══════════════════════════════════════ */
.main-content {
  padding: var(--sp-xl) 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

/* ── Article ── */
.article-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.65rem);
  color: var(--text-head);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-gold);
}
.article-content h3 {
  font-size: 1.1rem; color: var(--gold-light);
  margin: 1.75rem 0 0.5rem;
}
.article-content h4 { font-size: 1rem; color: var(--text); margin: 1.25rem 0 0.4rem; }
.article-content p { margin-bottom: 1rem; }
.article-content ul, .article-content ol { margin-bottom: 1rem; }
.article-content li { margin-bottom: 0.35rem; }
.article-content strong { color: var(--text-head); }

/* Inline CTA block */
.inline-cta {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
  margin: 2rem 0;
}
.inline-cta .cta-title { font-size: 1.2rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.4rem; }
.inline-cta .cta-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.2rem; }

/* Highlight box */
.highlight-box {
  background: var(--bg-nested);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
}
.highlight-box strong { color: var(--gold-light); }

/* Info card row */
.feature-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin: 1.5rem 0;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.2rem;
  transition: border-color var(--tr);
}
.feature-card:hover { border-color: var(--gold); }
.feature-card .f-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.feature-card h4 { font-size: 0.95rem; color: var(--gold-light); margin-bottom: 0.3rem; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ── Table ── */
.table-scroll-hint { display: none; color: var(--text-muted); font-size: 0.8rem; margin-bottom: 0.4rem; }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-md); }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead th {
  background: var(--bg-nested); color: var(--gold-light);
  padding: 0.75rem 1rem; text-align: left;
  font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase;
  border-bottom: 2px solid var(--border-gold);
}
tbody tr { border-bottom: 1px solid var(--border); transition: background var(--tr); }
tbody tr:hover { background: var(--bg-nested); }
tbody td { padding: 0.75rem 1rem; vertical-align: top; }
tbody td:first-child { color: var(--gold-light); font-weight: 600; }

/* Rating stars */
.stars { color: var(--gold); letter-spacing: 2px; }

/* ── Sidebar ── */
.sidebar { position: sticky; top: 84px; }
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h3 {
  font-family: var(--font-head);
  font-size: 1rem; color: var(--gold-light);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-gold);
}
.sidebar-nav ul { list-style: none; padding: 0; }
.sidebar-nav li { margin-bottom: 0.35rem; }
.sidebar-nav a {
  color: var(--text-muted); font-size: 0.88rem;
  display: block; padding: 0.3rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
  transition: color var(--tr), border-color var(--tr);
}
.sidebar-nav a:hover { color: var(--gold); border-color: var(--gold); text-decoration: none; }
.sidebar-badge {
  background: var(--bg-nested); border: 1px solid var(--border-gold);
  border-radius: var(--r-md); padding: 0.75rem;
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem;
}
.sidebar-badge strong { color: var(--gold-light); }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section {
  padding: var(--sp-xl) 0;
  border-top: 1px solid var(--border);
}
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
details.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--tr);
}
details.faq-item[open] { border-color: var(--gold); }
details.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600; font-size: 0.97rem;
  color: var(--text-head); cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
details.faq-item summary::after { content: '+'; color: var(--gold); font-size: 1.3rem; }
details.faq-item[open] summary::after { content: '−'; }
details.faq-item p { padding: 0 1.25rem 1.25rem; color: var(--text-muted); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--bg-footer);
  border-top: 2px solid var(--border-gold);
  padding: 3rem 0 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem; align-items: start;
  margin-bottom: 2.5rem;
}
.footer-brand {}
.footer-brand img { height: 44px; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); max-width: 280px; }
.footer-nav h4 {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer-nav ul { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 0.35rem; }
.footer-nav a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--tr); }
.footer-nav a:hover { color: var(--gold); }

/* Payment logos strip */
.footer-payments { margin-bottom: 2rem; }
.footer-payments h4 {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted);
  margin-bottom: 1rem; text-align: center;
}
.pay-logos {
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center;
}
.pay-logos img {
  height: 28px; width: auto; object-fit: contain;
  filter: grayscale(40%) brightness(0.85);
  transition: filter var(--tr);
}
.pay-logos img:hover { filter: grayscale(0%) brightness(1); }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: var(--text-muted);
}
.footer-legal-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-legal-links a { color: var(--text-muted); transition: color var(--tr); }
.footer-legal-links a:hover { color: var(--gold); }
.age-badge {
  background: var(--red); color: #fff;
  font-weight: 900; font-size: 0.75rem;
  padding: 0.2rem 0.55rem; border-radius: var(--r-sm);
}

/* ══════════════════════════════════════
   GAMBLING WARNING
══════════════════════════════════════ */
.gambling-warning {
  background: rgba(8,9,14,0.97);
  border-top: 1px solid var(--border);
  padding: 0.75rem 0;
  font-size: 0.78rem; color: var(--text-muted);
  text-align: center;
}

/* ══════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════ */
#back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 42px; height: 42px;
  background: var(--gold); color: #000;
  border: none; border-radius: 50%;
  font-size: 1.1rem; font-weight: 900; cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity var(--tr), transform var(--tr);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { transform: translateY(-3px); }

/* ══════════════════════════════════════
   POLICY PAGES
══════════════════════════════════════ */
.policy-page { padding: 3rem 0 4rem; }
.policy-content {
  max-width: 820px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
}
.policy-content h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.1rem);
  color: var(--text-head);
  margin-bottom: 0.4rem;
}
.policy-content h1::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: var(--gold); border-radius: 2px; margin-top: 0.6rem;
}
.policy-content h2 {
  font-family: var(--font-head);
  font-size: 1.2rem; color: var(--gold-light);
  margin: 2rem 0 0.6rem;
  border-bottom: 1px solid var(--border-gold); padding-bottom: 0.4rem;
}
.policy-content h3 { font-size: 1rem; color: var(--text-head); margin: 1.25rem 0 0.4rem; }
.policy-content p, .policy-content li { color: var(--text-muted); margin-bottom: 0.75rem; }
.policy-content a { color: var(--gold-light); }
.policy-content a:hover { color: var(--gold); }
.policy-toc {
  background: var(--bg-nested);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.policy-toc h3 { font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 0.75rem; }
.policy-toc ol { padding-left: 1.25rem; }
.policy-toc li { margin-bottom: 0.3rem; }
.policy-toc a { color: var(--text-muted); font-size: 0.9rem; }
.policy-toc a:hover { color: var(--gold); }
.policy-content section { padding-top: 0.5rem; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Hide desktop nav, show hamburger */
  .site-nav, .btn-header { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile: overlay lighter so banner image shows through */
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8,9,14,0.45) 0%,
      rgba(8,9,14,0.35) 100%
    );
  }

  /* Mobile: content card centered, text centered, transparent background
     so the banner image is visible behind the text */
  .hero-content {
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: none;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    padding: 1.5rem 1.25rem;
    box-sizing: border-box;
    background: rgba(8,9,14,0.42);
    backdrop-filter: blur(3px);
  }
  /* Re-center the gold H1 underline */
  .hero-content h1::after { margin: 0.6rem auto 0; }
  .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; justify-content: center; }
  .hero-buttons .btn { text-align: center; white-space: normal; }

  /* Slots – horizontal scroll on mobile */
  .slots-grid {
    display: flex; overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.6rem; padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
  }
  .slot-item { flex: 0 0 140px; scroll-snap-align: start; }
  .slot-item img { width: 140px; height: 140px; aspect-ratio: unset; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }

  /* Policy page */
  .policy-content { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-content { left: 0.75rem; right: 0.75rem; padding: 1.25rem 1rem; text-align: center; background: rgba(8,9,14,0.40); }
  .hero-content h1 { font-size: 1.2rem; }
  .hero-content h1::after { margin: 0.6rem auto 0; }
  .hero-bonus { font-size: 0.9rem; padding: 0.4rem 1rem; }
  .btn-lg { padding: 0.75rem 1.25rem; font-size: 0.9rem; white-space: normal; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal-links { flex-wrap: wrap; }
}

/* ── Print ── */
@media print {
  .site-header, .mobile-nav, #back-to-top, .hero-buttons { display: none; }
}
