/* ============================================================
   FieryPlay.co — Dark Theme Stylesheet
   Color palette: Red, Orange, Yellow (fiery)
   Responsive: Mobile-first approach
   ============================================================ */

/* ── CSS Custom Properties (Design Tokens) ── */
:root {
  /* Background layers — deep dark */
  --bg-root:      #0a0805;   /* page background — near black with warm tint */
  --bg-surface:   #130e08;   /* cards / sections */
  --bg-elevated:  #1e1508;   /* elevated cards */
  --bg-header:    #0d0b06;   /* sticky header */
  --bg-footer:    #080604;   /* footer area */

  /* Brand colours — fiery */
  --red:          #e53935;   /* primary CTA */
  --red-hover:    #c62828;
  --red-dark:     #b71c1c;
  --orange:       #ff6d00;   /* accent / secondary button */
  --orange-hover: #e65100;
  --orange-light: #ff9100;   /* links, highlights */
  --yellow:       #ffc107;   /* star ratings, special labels */
  --yellow-light: #ffe082;   /* softer yellow */

  /* Text */
  --text-primary:   #f5ede0;   /* warm white */
  --text-secondary: #b89878;   /* muted warm */
  --text-muted:     #6b5033;

  /* Borders */
  --border:       #2a1e10;
  --border-light: #3d2a15;

  /* 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(--orange-light); 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-orange  { color: var(--orange-light); }
.text-yellow  { color: var(--yellow); }
.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, large fiery red) --- */
.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(--orange) 0%, var(--red) 60%, 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(255, 109, 0, 0.5);
  transition: background var(--t-normal), transform var(--t-fast), box-shadow var(--t-normal);
}

.slot-play-btn:hover {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 50%, var(--red) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 109, 0, 0.7);
  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.4);
  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.6);
  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(255, 109, 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(255, 109, 0, 0.55);
  text-decoration: none !important;
}

.btn-secondary:active { transform: translateY(0); }

/* Button row wrapper — centres buttons */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-top: var(--sp-3);
}

/* ============================================================
   HEADER
   ============================================================ */
.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.6);
}

/* Thin fiery gradient line under header */
.site-header::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--orange), var(--red));
}

.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;
  font-size: 1.4rem;
  font-weight: 900;
  font-family: Georgia, serif;
  color: var(--orange-light);
  letter-spacing: 0.02em;
}

.site-logo span { color: var(--yellow); }

.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(--yellow);
  background: rgba(255, 109, 0, 0.1);
  text-decoration: none !important;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--orange-light);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--t-normal), opacity var(--t-fast);
}

/* ============================================================
   HERO / BANNER
   CSS fiery gradient banner (works without an image file)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

/* Fallback fire gradient — sits BEHIND the real banner image (z-index: 0) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(229, 57, 53, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 193, 7, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 109, 0, 0.5) 0%, transparent 60%),
    linear-gradient(180deg, #1a0800 0%, #0d0500 100%);
  animation: fireFlicker 6s ease-in-out infinite alternate;
}

/* Real banner image — sits ABOVE the fallback gradient (z-index: 1) */
.hero-img {
  position: absolute;
  inset: 0;
  z-index: 1;                   /* above .hero-bg, below .hero-overlay */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@keyframes fireFlicker {
  0%   { filter: brightness(1)   saturate(1); }
  50%  { filter: brightness(1.1) saturate(1.2); }
  100% { filter: brightness(0.95) saturate(1.1); }
}

/* Floating ember particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '✦ ✦ ✦';
  position: absolute;
  color: rgba(255, 193, 7, 0.3);
  font-size: 0.6rem;
  letter-spacing: 3rem;
  animation: drift 8s linear infinite;
}

.hero-particles::before {
  bottom: -20px;
  left: 10%;
  animation-duration: 8s;
}

.hero-particles::after {
  bottom: -20px;
  left: 60%;
  animation-duration: 12s;
  animation-delay: -4s;
}

@keyframes drift {
  to { transform: translateY(-120vh) rotate(360deg); opacity: 0; }
}

/* Semi-transparent overlay — sits above the banner image (z-index: 3) */
/* Gradient fades from dark-left (for readable text) to transparent-right */
.hero-overlay {
  position: relative;
  z-index: 3;                   /* above .hero-img (1) and .hero-bg (0) */
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(
    100deg,
    rgba(5, 2, 0, 0.78) 0%,     /* dark left — text area */
    rgba(5, 2, 0, 0.45) 40%,    /* mid transition */
    rgba(5, 2, 0, 0.10) 70%,    /* image visible here */
    rgba(5, 2, 0, 0.00) 100%    /* fully transparent right edge */
  );
}

/* CTA block — semi-transparent card over banner image */
.hero-cta-block {
  background: rgba(8, 4, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 109, 0, 0.30);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-8);
  text-align: left;           /* text left-aligned */
  max-width: 580px;
  margin: var(--sp-6) 0;      /* no auto — stays left */
  box-shadow: 0 8px 40px rgba(229, 57, 53, 0.3), 0 0 60px rgba(255, 109, 0, 0.1);
}

.hero-cta-block .hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), 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);
}

/* Left-align the btn-row inside hero CTA */
.hero-cta-block .btn-row {
  justify-content: flex-start;
}

.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);
  color: var(--text-primary);
}

.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(--yellow);
  margin-bottom: var(--sp-3);
  text-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.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 section divider with emojis and fire colors */
.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(--orange));
}

.section-divider::after {
  right: 0;
  background: linear-gradient(270deg, transparent, var(--orange));
}

/* Content block — 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(--orange);
  display: inline-block;
  color: var(--orange-light);
}

.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;
  font-size: 0.75em;
  top: 0.55em;
}

/* ============================================================
   POPULAR SLOTS GRID — 12 images, 6 per row on desktop
   ============================================================ */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

/* Individual slot card — sized to display game thumbnail images */
.slot-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);   /* rounded corners as required */
  overflow: hidden;             /* image fills rounded card */
  display: block;
  padding: 0;                   /* no padding so image fills fully */
  aspect-ratio: 3 / 4;         /* portrait ratio for slot thumbnails */
  transition: transform var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
  cursor: pointer;
  position: relative;
}

.slot-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--orange-light);
  box-shadow: 0 8px 28px rgba(255, 109, 0, 0.4);
}

/* Game thumbnail images — fill the card, cover crop, rounded via parent overflow */
.slot-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;              /* parent handles rounding via overflow:hidden */
  transition: transform var(--t-normal);
}

.slot-card:hover img {
  transform: scale(1.05);
}

/* ============================================================
   PROVIDERS / GAMES GRID (all providers)
   ============================================================ */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

/* Provider cards — light orange background as requested */
.provider-card {
  background: rgba(255, 109, 0, 0.10);   /* light orange */
  border: 1px solid rgba(255, 109, 0, 0.20);
  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(--orange);
  background: rgba(255, 109, 0, 0.18);   /* slightly deeper orange on hover */
}

.provider-card img {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
}

/* ============================================================
   BONUS TABLE — mobile-scrollable
   ============================================================ */
.bonus-table-wrap {
  overflow-x: auto;
  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: 480px;
}

.bonus-table thead {
  background: linear-gradient(135deg, var(--red), 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, 109, 0, 0.05);
}

.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(--yellow) !important;
}

/* ============================================================
   WHEEL OF FORTUNE TABLE
   ============================================================ */
.wheel-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
  -webkit-overflow-scrolling: touch;
}

.wheel-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}

.wheel-table thead {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #0a0500;
}

.wheel-table thead th {
  padding: 0.75em 1em;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.wheel-table tbody tr {
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.wheel-table tbody tr:hover {
  background: rgba(255, 193, 7, 0.05);
}

.wheel-table tbody td {
  padding: 0.75em 1em;
  color: var(--text-secondary);
}

.wheel-table tbody td:first-child {
  color: var(--yellow);
  font-weight: 700;
  text-align: left;
}

/* ============================================================
   PRICE CARDS (wheel / lootbox price tiers)
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.price-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  text-align: center;
  transition: transform var(--t-normal), border-color var(--t-normal);
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}

.price-card .tier-label {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange-light);
  display: block;
  margin-bottom: 0.3em;
}

.price-card .tier-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
}

.price-card p {
  font-size: 0.85rem;
  margin-top: 0.5em;
}

/* ============================================================
   LOOTBOX CARDS
   ============================================================ */
.lootbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  justify-content: center;
}

.lootbox-card {
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  text-align: center;
  position: relative;
  transition: transform var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
}

.lootbox-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 109, 0, 0.2);
}

.lootbox-card.spark  { border-color: rgba(255, 193,   7, 0.4); }
.lootbox-card.flame  { border-color: rgba(255, 109,   0, 0.5); }
.lootbox-card.blaze  { border-color: rgba(229,  57,  53, 0.6); }

.lootbox-card:hover.spark  { border-color: var(--yellow); }
.lootbox-card:hover.flame  { border-color: var(--orange); }
.lootbox-card:hover.blaze  { border-color: var(--red); }

.lootbox-card .box-icon {
  display: block;
  width: 100%;
  max-width: 220px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto var(--sp-3);
  border-radius: var(--r-md);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}

.lootbox-card h3 {
  color: var(--orange-light);
  margin-bottom: var(--sp-1);
}

.lootbox-card .lootbox-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: var(--sp-2);
}

.lootbox-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.lootbox-card ul li {
  padding: 0.3em 0 0.3em 1.5em;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border: none;
  margin: 0;
}

.lootbox-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 0.7em;
  top: 0.6em;
}

/* ============================================================
   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, 109, 0, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.payment-logo:hover {
  background: rgba(255, 109, 0, 0.12);
  border-color: var(--border-light);
}

.payment-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.9) saturate(0.8);
}

/* ============================================================
   BREADCRUMBS (inner pages only — not shown 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(--orange-light);
}

.breadcrumb a:hover { 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: #261a08; }

.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; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-footer);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--orange), var(--red)) 1;
  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-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(--orange-light); }

.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;
}

/* ============================================================
   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(--orange-light);
  margin-bottom: var(--sp-1);
}

.info-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================================
   IN-ARTICLE IMAGE (text pages without hero banner)
   ============================================================ */
.article-img {
  display: block;
  width: 100%;
  max-width: 860px;
  height: auto;
  border-radius: var(--r-lg);
  margin: var(--sp-4) auto;
  box-shadow: 0 6px 32px rgba(229, 57, 53, 0.2);
}

/* Page title block — used on pages without a hero banner */
.page-title {
  padding: var(--sp-6) 0 var(--sp-4);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-4);
}

.page-title h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--orange-light);
  margin-bottom: var(--sp-1);
}

.page-title .page-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.page-title .hero-bonus {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--yellow);
  margin: var(--sp-2) 0;
}

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-content {
  max-width: 860px;
  margin-inline: auto;
  padding-block: var(--sp-8);
}

.policy-content h1 {
  margin-bottom: var(--sp-4);
  color: var(--orange-light);
}

.policy-content h2 {
  font-size: 1.3rem;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
  color: var(--orange-light);
}

.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 */
  .container { padding-inline: var(--sp-2); }

  /* Header — hamburger navigation */
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    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; }

  /* Hero — full width on mobile; CTA stays left */
  .hero { min-height: 400px; }
  .hero-overlay { min-height: 400px; }
  .hero-cta-block {
    padding: var(--sp-3);
    margin: var(--sp-3) 0;      /* left-aligned, full container width */
    max-width: 100%;
    text-align: left;
  }
  .hero-cta-block .btn-row { justify-content: flex-start; }

  /* Slots grid — 2 columns on mobile */
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sections */
  .section { padding-block: var(--sp-4); }
  .content-block { padding: var(--sp-3); }

  /* Tables scroll on mobile */
  .bonus-table { font-size: 0.82rem; }
  .wheel-table { font-size: 0.82rem; }

  /* Payments */
  .payment-logo { width: 64px; height: 42px; }

  /* Footer */
  .footer-links { flex-direction: column; align-items: center; gap: var(--sp-1); }

  /* Price grid */
  .price-grid { grid-template-columns: repeat(2, 1fr); }

  /* Lootbox grid — single column on mobile, still centred */
  .lootbox-grid { grid-template-columns: minmax(0, 320px); justify-content: center; }
}

/* Tablet adjustment: 3 columns for slots */
@media (min-width: 480px) and (max-width: 900px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   SCROLL ANIMATION (respects reduced motion preference)
   ============================================================ */
@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);
  }
}
