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

/* ── CSS Custom Properties (Design Tokens) ── */
:root {
  /* Background layers */
  --bg-root:      #0f0800;   /* deep black-red page background */
  --bg-surface:   #1a0f00;   /* cards / alternate sections */
  --bg-elevated:  #261500;   /* elevated cards and blocks */
  --bg-header:    #120a00;   /* sticky header */
  --bg-footer:    #0d0700;   /* footer area */

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

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

  /* Text */
  --text-primary:   #f5ede0;
  --text-secondary: #b8956a;
  --text-muted:     #7a5538;

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

  /* Spacing scale */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-6: 3rem;
  --sp-8: 4rem;

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

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

  /* Layout */
  --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 ── */
.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;
}

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); }
.sr-only      { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ============================================================
   BUTTONS
   Classes:  .slot-play-btn  |  .btn-primary  |  .btn-secondary
   ============================================================ */

/* --- .slot-play-btn  (hero / section-level CTA, red, larger) --- */
.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) --- */
.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) --- */
.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); }

/* Button row wrapper (centres buttons with flex-wrap) */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-top: var(--sp-3);
}

/* ============================================================
   HEADER — sticky navigation
   ============================================================ */
.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);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  height: 70px;
}

/* Logo */
.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;
}

/* Desktop navigation */
.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 (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.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);
}

/* ============================================================
   FAST NAV — in-page anchor navigation bar placed in body
   Appears between the popular slots section and the main text
   ============================================================ */
.fast-nav {
  background: rgba(10, 10, 25, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--sp-2) 0;
  position: sticky;
  top: 64px; /* sit just below the sticky site-header */
  z-index: 90;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

.fast-nav-list li a {
  display: inline-block;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
}

.fast-nav-list li a:hover,
.fast-nav-list li a:focus {
  color: var(--yellow);
  background: rgba(255, 193, 7, 0.10);
  border-color: rgba(255, 193, 7, 0.35);
  text-decoration: none;
}

@media (max-width: 600px) {
  .fast-nav-list {
    gap: 6px;
  }
  .fast-nav-list li a {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}

/* ============================================================
   HERO / BANNER — only on main page
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

/* Banner image — covers full hero area */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Semi-transparent gradient overlay */
.hero-overlay {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(15, 8, 0, 0.60) 0%,
    rgba(230, 81, 0, 0.25) 50%,
    rgba(229, 57, 53, 0.15) 100%
  );
}

/* CTA card — semi-transparent block on the right side of the banner */
.hero-cta-block {
  background: rgba(10, 10, 25, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-8);
  text-align: center;
  max-width: 520px;
  margin: var(--sp-6) 0 var(--sp-6) auto;  /* auto left-margin pushes block to the right */
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.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.8);
}

.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);
}

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

.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 dividers between sections */
.section-divider {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  padding-block: var(--sp-3);
  position: relative;
}

.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 text + list layout */
.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);
}

.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;
}

.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);
}

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

/* ============================================================
   POPULAR SLOTS GRID — 12 slot images (full size), 6 per row
   ============================================================ */

/* Outer grid: 6 columns on desktop */
.popular-slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

/* Each slot card — no min-height constraint, image at full size */
.popular-slot-card {
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);   /* rounded corners as required */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
  cursor: pointer;
  position: relative;
}

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

/* Slot images — full natural size, rounded corners */
.popular-slot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  object-fit: cover;
}

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

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

/* ============================================================
   PROVIDERS / GAMES GRID (brand logo strip)
   ============================================================ */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.slot-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2);
  min-height: 110px;
  transition: transform var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
  cursor: pointer;
}

.slot-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: 0 6px 24px rgba(255, 179, 0, 0.28);
}

.slot-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  border-radius: var(--r-sm);
}

/* All providers wide grid */
.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 TABLE
   ============================================================ */
.bonus-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 480px;
}

.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;
}

.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.8);
}

/* ============================================================
   BREADCRUMBS (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;
}

.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;
}

.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; }

.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);
}

.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 CARD GRID (features / advantages)
   ============================================================ */
.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;
}

/* ============================================================
   TEXT IMAGE (decorative in-content graphic)
   ============================================================ */
.text-img-block {
  text-align: center;
  margin-block: var(--sp-4);
}

.text-img-block img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: 0 6px 30px rgba(0,0,0,0.5);
}

/* ============================================================
   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);
}

/* Only policy links in footer — cookies, T&C, privacy */
.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; }

/* 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
   ============================================================ */
.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  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Container padding reduced on mobile */
  .container { padding-inline: var(--sp-2); }

  /* Header — show hamburger, hide desktop nav */
  .site-nav {
    display: none;
    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;
  }

  .site-nav.open { display: flex; }
  .site-header { position: relative; }

  .nav-toggle { display: block; }

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

  /* Hero — reduced height on mobile; re-center the CTA block */
  .hero { min-height: 380px; }
  .hero-overlay {
    min-height: 380px;
    justify-content: center;   /* center on mobile so it fills the narrow screen */
  }
  .hero-cta-block {
    padding: var(--sp-3) var(--sp-3);
    margin: var(--sp-3) var(--sp-2);
    max-width: 100%;
  }

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

  /* Provider logo grid: 3 columns on mobile */
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  /* Bonus table scroll on mobile */
  .bonus-table { font-size: 0.82rem; }

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

  /* Footer links vertical on mobile */
  .footer-links { flex-direction: column; align-items: center; gap: var(--sp-1); }
}

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

/* ============================================================
   SCROLL ANIMATION (respects prefers-reduced-motion)
   ============================================================ */
@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);
  }
}
