/* ============================================================
   Fiery Play Casino GR — Dark Theme Stylesheet
   Domain: fiery-play.gr
   Design: Dark background, Red / Orange / Yellow (Fiery) palette
   Responsive: Mobile-first approach
   ============================================================ */

/* ── CSS Custom Properties (Design Tokens) ── */
:root {
  /* Background layers — deep, warm darks */
  --bg-root:      #0f0800;   /* page background (near-black with a red tint) */
  --bg-surface:   #1a0f00;   /* card / alternate-section background */
  --bg-elevated:  #261500;   /* elevated cards and content blocks */
  --bg-header:    #120a00;   /* sticky header */
  --bg-footer:    #0d0700;   /* footer area */

  /* Brand colours — Red, Orange, Yellow (Fiery palette) */
  --red:          #e53935;   /* primary CTA buttons */
  --red-hover:    #c62828;
  --red-dark:     #b71c1c;
  --orange:       #e65100;   /* secondary / accent colour */
  --orange-hover: #bf360c;
  --yellow:       #ffb300;   /* links, highlights (amber) */
  --gold:         #ffd600;   /* star ratings, bonus amounts */

  /* Aliases for shared component names */
  --blue:         var(--orange);
  --blue-hover:   var(--orange-hover);
  --blue-light:   var(--yellow);

  /* Text */
  --text-primary:   #f5ede0;  /* warm white */
  --text-secondary: #b8956a;  /* muted amber */
  --text-muted:     #7a5538;  /* dark amber, footer text */

  /* Borders */
  --border:       #2e1800;
  --border-light: #4a2800;

  /* Spacing scale (used with var(--sp-N)) */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-6: 3rem;
  --sp-8: 4rem;

  /* Border radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-pill: 50px;

  /* Transitions */
  --t-fast:   0.15s ease;
  --t-normal: 0.28s ease;

  /* Max layout width */
  --container: 1200px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-root);
  color: var(--text-primary);
  font-family: 'Segoe UI', Arial, 'Helvetica Neue', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Container — centres content and adds side padding ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text-primary);
  line-height: 1.25;
}

/* Fluid heading sizes using clamp() for responsive text */
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: var(--sp-2); color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

a { color: var(--yellow); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--yellow); text-decoration: underline; }

ul, ol {
  padding-left: 1.5em;
  color: var(--text-secondary);
}

li { margin-bottom: var(--sp-1); }

strong { color: var(--text-primary); font-weight: 700; }

/* ── Utility helpers ── */
.text-center  { text-align: center; }
.text-red     { color: var(--red); }
.text-yellow  { color: var(--yellow); }
.text-gold    { color: var(--gold); }
/* Screen-reader-only: visually hidden but accessible */
.sr-only      { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ============================================================
   BUTTONS
   Three classes as required:
     .slot-play-btn  — large hero/section CTA (red, pill shape)
     .btn-primary    — standard red action button
     .btn-secondary  — orange accent button
   ============================================================ */

/* --- .slot-play-btn: large call-to-action, red gradient, pill shape --- */
.slot-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 2.4em;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(229, 57, 53, 0.45);
  transition: background var(--t-normal), transform var(--t-fast), box-shadow var(--t-normal);
}

.slot-play-btn:hover {
  background: linear-gradient(135deg, #ff5252 0%, var(--red) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(229, 57, 53, 0.6);
  text-decoration: none !important;
}

.slot-play-btn:active { transform: translateY(0); }

/* --- .btn-primary: standard red button (rounded rect) --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.72em 1.8em;
  background: var(--red);
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 3px 14px rgba(229, 57, 53, 0.35);
  transition: background var(--t-normal), transform var(--t-fast), box-shadow var(--t-normal);
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(229, 57, 53, 0.55);
  text-decoration: none !important;
}

.btn-primary:active { transform: translateY(0); }

/* --- .btn-secondary: orange accent button (rounded rect) --- */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.72em 1.8em;
  background: var(--orange);
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 3px 14px rgba(230, 81, 0, 0.35);
  transition: background var(--t-normal), transform var(--t-fast), box-shadow var(--t-normal);
}

.btn-secondary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(230, 81, 0, 0.55);
  text-decoration: none !important;
}

.btn-secondary:active { transform: translateY(0); }

/* Flex row that centres buttons and wraps on narrow screens */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-top: var(--sp-3);
}

/* ============================================================
   HEADER — sticky navigation bar
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Inner flex row: logo | nav | hamburger | CTA */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  height: 70px;
}

/* Logo — keeps aspect ratio and prevents shrink */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  text-decoration: none !important;
}

.site-logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* Text logo fallback when no image is present */
.site-logo-text {
  font-family: 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
  text-decoration: none !important;
}

.site-logo-text span {
  color: var(--yellow);
}

/* Desktop navigation links */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.site-nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 0.3em 0.6em;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.site-nav a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none !important;
}

/* Hamburger button — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

/* Three horizontal bars */
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--t-normal), opacity var(--t-fast);
}

/* ============================================================
   HERO / BANNER
   Full CSS-driven banner — no external image required.
   Uses layered radial + linear gradients to simulate a fiery
   casino background with depth. When a banner image IS present
   it renders on top of this via .hero-img.
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px; /* desktop minimum — tall enough to show the full banner */

  /* Multi-layer fire gradient background — visible when image is absent */
  background:
    /* Top-centre amber glow */
    radial-gradient(ellipse 70% 55% at 50% 0%,   rgba(255, 140, 0, 0.45) 0%, transparent 70%),
    /* Left-side deep red flame */
    radial-gradient(ellipse 50% 80% at 15% 60%,  rgba(180, 0, 0, 0.55)   0%, transparent 65%),
    /* Right-side orange flame */
    radial-gradient(ellipse 50% 80% at 85% 60%,  rgba(230, 81, 0, 0.50)  0%, transparent 65%),
    /* Centre spotlight */
    radial-gradient(ellipse 60% 50% at 50% 80%,  rgba(229, 57, 53, 0.40) 0%, transparent 70%),
    /* Base dark gradient */
    linear-gradient(180deg, #0d0200 0%, #1e0700 35%, #2d0c00 65%, #0f0300 100%);
}

/* Animated particle dots — subtle fire embers */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 2px at 20% 30%, rgba(255, 200, 50, 0.6) 0%, transparent 100%),
    radial-gradient(circle 1px at 40% 70%, rgba(255, 120, 0, 0.5)  0%, transparent 100%),
    radial-gradient(circle 2px at 60% 20%, rgba(255, 180, 0, 0.4)  0%, transparent 100%),
    radial-gradient(circle 1px at 75% 55%, rgba(229, 57, 53, 0.6)  0%, transparent 100%),
    radial-gradient(circle 2px at 90% 35%, rgba(255, 100, 0, 0.5)  0%, transparent 100%),
    radial-gradient(circle 1px at 10% 65%, rgba(255, 160, 0, 0.4)  0%, transparent 100%),
    radial-gradient(circle 2px at 55% 85%, rgba(229, 57, 53, 0.5)  0%, transparent 100%),
    radial-gradient(circle 1px at 30% 50%, rgba(255, 210, 50, 0.3) 0%, transparent 100%);
  animation: ember-drift 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

/* Horizontal fire streak lines at the bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(229, 57, 53, 0.12) 40%,
    rgba(180, 50, 0, 0.25) 70%,
    rgba(120, 20, 0, 0.45) 100%
  );
  pointer-events: none;
  z-index: 1;
}

@keyframes ember-drift {
  from { transform: translateY(0) scale(1);   opacity: 0.7; }
  to   { transform: translateY(-12px) scale(1.05); opacity: 1; }
}

/* Banner image — absolutely positioned to fill hero, object-fit covers it.
   When the image file is missing, JS (onerror) hides this element and the
   CSS gradient background above shows through. */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 2;
}

/* Semi-transparent gradient overlay — always on top of both gradient and image.
   Uses flex to push the CTA card to the right side of the banner. */
.hero-overlay {
  position: relative;
  z-index: 3;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: flex-end;   /* right-align the inner container */
  /* Stronger dark vignette on the right where the CTA sits */
  background: linear-gradient(
    100deg,
    rgba(10, 3, 0, 0.25) 0%,
    rgba(10, 3, 0, 0.45) 45%,
    rgba(8, 2, 0, 0.82) 100%
  );
}

/* The container inside the overlay — full width so the card can sit right */
.hero-overlay > .container {
  display: flex;
  justify-content: flex-end;   /* card floats to the right */
  align-items: center;
  width: 100%;
}

/* Semi-transparent CTA block — right-aligned on the banner */
.hero-cta-block {
  background: rgba(8, 2, 0, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 140, 0, 0.30);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-6);
  text-align: center;
  width: 440px;          /* fixed width so it doesn't stretch */
  max-width: 100%;
  margin: var(--sp-6) 0; /* no auto margin — parent flex handles alignment */
  box-shadow:
    0 8px 48px rgba(0, 0, 0, 0.80),
    0 0 60px rgba(229, 57, 53, 0.20),
    inset 0 1px 0 rgba(255, 180, 0, 0.15);
}

.hero-cta-block .hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 1em;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-2);
}

.hero-cta-block h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: var(--sp-2);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.hero-cta-block .hero-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: var(--sp-3);
}

.hero-cta-block .hero-bonus {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.hero-cta-block .hero-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--sp-2);
}

/* ============================================================
   FAST NAVIGATION BAR — in-page anchor links below hero
   ============================================================ */
.fast-nav {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-2) 0;
}

.fast-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-1) var(--sp-2);
}

.fast-nav-list a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3em 0.8em;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  transition: background var(--t-fast), color var(--t-fast);
  text-decoration: none !important;
  white-space: nowrap;
}

.fast-nav-list a:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section {
  padding-block: var(--sp-8);
}

/* Alternating background for every other section */
.section-alt {
  background: var(--bg-surface);
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-6);
}

.section-header h2 {
  margin-bottom: var(--sp-1);
}

.section-header p {
  color: var(--text-secondary);
  max-width: 620px;
  margin-inline: auto;
}

/* Decorative divider between sections — horizontal line with emojis */
.section-divider {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  padding-block: var(--sp-3);
  position: relative;
}

/* Gradient lines either side of the emoji text */
.section-divider::before,
.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
}

.section-divider::before { left: 0; background: linear-gradient(90deg, transparent, var(--border-light)); }
.section-divider::after  { right: 0; background: linear-gradient(270deg, transparent, var(--border-light)); }

/* Content block — bordered card for text + lists */
.content-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-6);
  margin-bottom: var(--sp-4);
}

/* Red underline on headings inside content blocks */
.content-block h2,
.content-block h3 {
  margin-bottom: var(--sp-2);
  padding-bottom: var(--sp-1);
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

/* Custom bullet list inside content blocks */
.content-block ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--sp-3);
}

.content-block ul li {
  padding: 0.4em 0 0.4em 1.8em;
  position: relative;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Arrow bullet character */
.content-block ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 0.65em;
  top: 0.7em;
}

/* ============================================================
   POPULAR SLOTS GRID — 12 images, 6 per row on desktop
   Each image card is a link wrapped around the provider logo.
   ============================================================ */
.popular-slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns on desktop */
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

/* Individual slot card — clickable link */
.popular-slot-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); /* rounded corners as specified */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2);
  min-height: 120px;
  text-decoration: none !important;
  transition: transform var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
  cursor: pointer;
}

.popular-slot-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
  box-shadow: 0 8px 28px rgba(255, 179, 0, 0.32);
}

/* Full-size provider images — not reduced, natural width, rounded */
.popular-slot-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  border-radius: var(--r-md);
}

/* Play-icon overlay appears on hover */
.slot-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 57, 53, 0.75);
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transition: opacity var(--t-normal);
  border-radius: var(--r-lg);
}

.popular-slot-card:hover .slot-overlay {
  opacity: 1;
}

/* ============================================================
   ALL PROVIDERS GRID (39 studios)
   ============================================================ */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.provider-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2) var(--sp-1);
  min-height: 80px;
  transition: border-color var(--t-normal), background var(--t-normal);
}

.provider-card:hover {
  border-color: var(--red);
  background: var(--bg-elevated);
}

.provider-card img {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
}

/* ============================================================
   BONUS / DATA TABLE — scrolls horizontally on mobile
   ============================================================ */
.bonus-table-wrap {
  overflow-x: auto;           /* horizontal scroll on small screens */
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
  -webkit-overflow-scrolling: touch;
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 500px;           /* prevents table from getting too narrow */
}

.bonus-table thead {
  background: var(--orange);
  color: #fff;
}

.bonus-table thead th {
  padding: 0.75em 1em;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.bonus-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast);
}

.bonus-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.bonus-table tbody td {
  padding: 0.75em 1em;
  color: var(--text-secondary);
}

.bonus-table tbody td:first-child {
  color: var(--text-primary);
  font-weight: 600;
}

/* Highlighted row — gold text for best offer */
.bonus-table .highlight-row td {
  color: var(--gold) !important;
}

/* ============================================================
   PAYMENT LOGOS (footer)
   ============================================================ */
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) 0;
}

.payment-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px;
  transition: background var(--t-fast);
}

.payment-logo:hover {
  background: rgba(255, 255, 255, 0.12);
}

.payment-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.9) saturate(0.85);
}

/* ============================================================
   BREADCRUMBS — used on inner pages only (not on main page)
   ============================================================ */
.breadcrumb {
  padding: var(--sp-2) 0;
  font-size: 0.85rem;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3em;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  margin: 0;
}

/* Separator › between breadcrumb items */
.breadcrumb li + li::before {
  content: '›';
  margin-right: 0.3em;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--yellow);
}

.breadcrumb li[aria-current="page"] {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-2);
  overflow: hidden;
}

/* Question button — full-width flex row */
.faq-question {
  background: var(--bg-elevated);
  padding: var(--sp-2) var(--sp-3);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 700;
  color: var(--text-primary);
  user-select: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: background var(--t-fast);
}

.faq-question:hover { background: #301800; }

/* Circular icon shows + and rotates to × when open */
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  transition: transform var(--t-normal), background var(--t-normal);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--red);
}

/* Answer panel — toggled by JS */
.faq-answer {
  display: none;
  padding: var(--sp-2) var(--sp-3) var(--sp-3);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
}

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   INFO / FEATURE CARDS GRID
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.info-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  transition: border-color var(--t-normal), transform var(--t-normal);
}

.info-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.info-card .card-icon {
  font-size: 2rem;
  margin-bottom: var(--sp-1);
  display: block;
}

.info-card h4 {
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
}

.info-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-6);
}

.footer-payments {
  text-align: center;
  margin-bottom: var(--sp-4);
}

.footer-payments h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}

/* Footer legal links — only cookies-policy, T&C, privacy-policy */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--border);
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  text-align: center;
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom p { margin-bottom: 0.3em; color: var(--text-muted); }

/* 18+ age-restriction badge */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 0.4em;
  vertical-align: middle;
}

/* ============================================================
   POLICY PAGES — centred readable column for legal text
   ============================================================ */
.policy-content {
  max-width: 860px;
  margin-inline: auto;
  padding-block: var(--sp-8);
}

.policy-content h1 {
  margin-bottom: var(--sp-4);
}

.policy-content h2 {
  font-size: 1.3rem;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
  color: var(--yellow);
}

.policy-content p,
.policy-content li {
  font-size: 0.95rem;
  line-height: 1.8;
}

.policy-content ul {
  margin-bottom: var(--sp-2);
}

/* ============================================================
   MOBILE RESPONSIVE — ≤ 768 px
   ============================================================ */
@media (max-width: 768px) {
  /* Reduce horizontal padding on small screens */
  .container { padding-inline: var(--sp-2); }

  /* ── Header: hamburger menu replaces horizontal nav ── */
  .site-nav {
    display: none;              /* hidden by default */
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
    padding: var(--sp-2);
    gap: var(--sp-1);
    z-index: 99;
  }

  /* JS adds .open to show mobile nav */
  .site-nav.open { display: flex; }

  /* Allow nav dropdown to expand below the fixed header */
  .site-header { position: relative; }

  .nav-toggle { display: block; }

  /* Hide header CTA text on very small screens to save space */
  .header-cta-hide { display: none; }

  /* ── Hero: shorter on mobile, CTA re-centred ── */
  .hero { min-height: 480px; }
  .hero-overlay {
    min-height: 480px;
    justify-content: center;   /* centre on mobile */
    background: linear-gradient(180deg, rgba(8,2,0,0.55) 0%, rgba(8,2,0,0.80) 100%);
  }
  .hero-overlay > .container {
    justify-content: center;   /* centre the card on mobile */
  }
  .hero-cta-block {
    width: 100%;
    padding: var(--sp-4) var(--sp-3);
    margin: var(--sp-3) 0;
  }

  /* ── Popular Slots: 2 columns on mobile ── */
  .popular-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Providers: auto-fill works well, min reduced ── */
  .providers-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }

  /* ── Sections: less vertical padding ── */
  .section { padding-block: var(--sp-4); }
  .content-block { padding: var(--sp-3); }

  /* ── Table: slightly smaller font to fit more ── */
  .bonus-table { font-size: 0.82rem; }

  /* ── Payment logos: slightly smaller ── */
  .payment-logo { width: 64px; height: 42px; }

  /* ── Footer links: stack vertically ── */
  .footer-links { flex-direction: column; align-items: center; gap: var(--sp-1); }

  /* ── Fast nav: tighter gap ── */
  .fast-nav-list { gap: var(--sp-1); }
  .fast-nav-list a { font-size: 0.78rem; padding: 0.25em 0.6em; }
}

/* ── Tablet: 3-column popular slots ── */
@media (min-width: 480px) and (max-width: 900px) {
  .popular-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   Respects prefers-reduced-motion user setting.
   JS adds .visible when element enters the viewport.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
