/* ===========================
   FIERYPLAY.GR — MAIN STYLESHEET
   Dark Theme | Red / Orange / Yellow Fiery Color Scheme
   =========================== */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  /* Background Palette */
  --bg-primary:   #0a0100;   /* deepest dark — main page bg */
  --bg-secondary: #130300;   /* slightly lighter — alternating sections */
  --bg-card:      #1e0500;   /* card background */
  --bg-card-hover:#2a0800;   /* card hover state */

  /* Brand / Fiery Palette */
  --color-red:          #cc2000;
  --color-red-light:    #ff3d1a;
  --color-orange:       #e55000;
  --color-orange-light: #ff7733;
  --color-yellow:       #ffaa00;
  --color-gold:         #ffd700;

  /* Text */
  --text-primary:   #f5e6d0;
  --text-secondary: #c8a080;
  --text-muted:     #8a6040;

  /* Gradients */
  --gradient-fire:    linear-gradient(135deg, #cc2000 0%, #e55000 50%, #ffaa00 100%);
  --gradient-fire-h:  linear-gradient(90deg,  #cc2000 0%, #e55000 50%, #ffaa00 100%);
  --gradient-dark:    linear-gradient(135deg, #0a0100 0%, #1e0500 100%);
  --gradient-card:    linear-gradient(180deg, #1e0500 0%, #130300 100%);

  /* Borders */
  --border-fire: 1px solid rgba(229, 80, 0, 0.35);
  --border-gold: 1px solid rgba(255, 215, 0, 0.25);

  /* Shadows */
  --shadow-fire:  0 0 24px rgba(229, 80, 0, 0.28);
  --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.55);
  --shadow-glow:  0 0 36px rgba(255, 170, 0, 0.3);

  /* Layout */
  --max-width:      1280px;
  --header-height:  80px;
  --section-pad:    80px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 50px;

  /* Transitions */
  --tr:   all 0.3s ease;
  --tr-s: all 0.5s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-orange-light); text-decoration: none; transition: var(--tr); }
a:hover { color: var(--color-gold); }

ul { list-style: none; }

/* ---- Typography ---- */
h1 { font-size: clamp(1.8rem, 4vw, 3rem);   line-height: 1.18; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.22; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); line-height: 1.3;  }
h4 { font-size: clamp(1rem,  1.8vw, 1.2rem);}

p { margin-bottom: 1rem; color: var(--text-secondary); }

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Wrapper ---- */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--bg-secondary); }

/* ---- Section Title ---- */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  display: inline-block;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title p {
  max-width: 640px;
  margin: 14px auto 0;
  font-size: 1.05rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  background: var(--gradient-fire-h);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ==========================
   BUTTONS
   ========================== */

/* Primary — fiery gradient fill */
.btn-primary {
  display: inline-block;
  background: var(--gradient-fire);
  color: #fff;
  padding: 14px 34px;
  border-radius: var(--r-xl);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  text-align: center;
  box-shadow: var(--shadow-fire);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(229, 80, 0, 0.55);
  color: #fff;
}

/* Secondary — outline */
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-orange-light);
  padding: 12px 30px;
  border-radius: var(--r-xl);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--color-orange);
  cursor: pointer;
  transition: var(--tr);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--color-orange);
  color: #fff;
  transform: translateY(-3px);
}

/* Slot Play Button — slot CTA */
.slot-play-btn {
  display: inline-block;
  background: linear-gradient(135deg, #cc2000, #ff5500);
  color: #fff;
  padding: 12px 26px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  text-align: center;
  box-shadow: 0 4px 16px rgba(204, 32, 0, 0.4);
  text-decoration: none;
}
.slot-play-btn:hover {
  background: linear-gradient(135deg, #ff2200, #ff7700);
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(204, 32, 0, 0.6);
  color: #fff;
}

/* Light button (for dark CTA blocks) */
.btn-light {
  display: inline-block;
  background: #fff;
  color: var(--color-red);
  padding: 14px 36px;
  border-radius: var(--r-xl);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--tr);
  text-decoration: none;
  letter-spacing: 0.4px;
}
.btn-light:hover {
  background: var(--color-gold);
  color: #222;
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(0,0,0,0.35);
}

/* Button Group layout */
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 32px 0;
}

/* ==========================
   HEADER / NAVIGATION
   ========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 1, 0, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-fire);
  height: var(--header-height);
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-logo img { height: 52px; width: auto; }

/* Main navigation links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-weight: 500;
  transition: var(--tr);
  white-space: nowrap;
  font-size: 0.97rem;
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-orange-light);
  background: rgba(229, 80, 0, 0.1);
}

/* Simplified page-links nav (main page header) */
.site-nav-pages {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-cta .btn-primary  { padding: 9px 22px; font-size: 0.88rem; }
.header-cta .btn-secondary{ padding: 7px 18px; font-size: 0.88rem; }

/* ── FASTLINKS NAV ─────────────────────────────────── */
.fastlinks-nav {
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(229, 80, 0, 0.25);
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  overflow-x: auto;
  scrollbar-width: none;
}
.fastlinks-nav::-webkit-scrollbar { display: none; }
.fastlinks-nav .container {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow-x: auto;
}
.fastlinks-nav a {
  color: var(--text-secondary);
  padding: 11px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--tr);
}
.fastlinks-nav a:hover {
  color: var(--color-orange-light);
  border-bottom-color: var(--color-orange);
  background: rgba(229, 80, 0, 0.06);
}

/* Mobile hamburger toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--tr);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================
   HERO / BANNER
   ========================== */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 580px;
  height: calc(100vh - var(--header-height));
  max-height: 880px;
  margin-top: var(--header-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Full-cover background image */
.hero-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('img/banner/freepik_futuristic-3d-render-with_2782900295.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
/* Dark overlay for readability */
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 1, 0, 0.45);
}
/* Semi-transparent CTA block — centered */
.hero-banner__cta {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(8, 1, 0, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 170, 0, 0.45);
  border-radius: var(--r-lg);
  padding: 52px 68px;
  max-width: 720px;
  width: 90%;
  box-shadow: 0 0 60px rgba(229, 80, 0, 0.3), inset 0 0 60px rgba(204, 32, 0, 0.06);
}
.hero-banner__cta h1 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  margin-bottom: 16px;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-banner__cta .hero-sub {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.75;
}
.hero-badge {
  display: inline-block;
  background: var(--gradient-fire);
  color: #fff;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: var(--r-xl);
  font-size: 1rem;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}
.hero-banner__cta .btn-group { margin: 0; }

/* ==========================
   POPULAR SLOTS SECTION
   ========================== */
.popular-slots { background: var(--bg-secondary); }

/* Desktop: 6 columns; mobile override below */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.slot-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: var(--border-fire);
  transition: var(--tr);
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
}
.slot-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-fire);
  border-color: var(--color-orange);
}
.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tr-s);
}
.slot-card:hover img { transform: scale(1.06); }

/* Play overlay */
.slot-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,1,0,0.92) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: var(--tr);
}
.slot-card:hover .slot-card__overlay { opacity: 1; }

/* ==========================
   CONTENT SECTIONS
   ========================== */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }

.content-text h2 {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.content-text h3 { color: var(--color-orange-light); margin: 24px 0 14px; }
.content-text p  { color: var(--text-secondary); line-height: 1.82; }

.content-text ul { padding: 0; margin-bottom: 24px; }
.content-text ul li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(229, 80, 0, 0.1);
  line-height: 1.6;
}
.content-text ul li::before { content: '🔥'; position: absolute; left: 0; top: 9px; }

.content-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-fire);
  border: var(--border-fire);
}
.content-image img { width: 100%; height: auto; }

/* Inline image with caption */
.text-image {
  margin: 32px 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: var(--border-fire);
  box-shadow: var(--shadow-card);
}
.text-image img { width: 100%; height: 320px; object-fit: cover; }

/* ==========================
   GRAPHIC SEPARATORS
   ========================== */
.graphic-separator {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 0;
}
.graphic-separator .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
}
.graphic-separator .text {
  color: var(--color-orange-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.graphic-separator .emoji { font-size: 1.4rem; }

/* ==========================
   CONVERSION CTA BLOCK
   ========================== */
.cta-block {
  background: var(--gradient-fire);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  text-align: center;
  margin: 44px 0;
  box-shadow: var(--shadow-fire);
}
.cta-block h3 { color: #fff; font-size: 1.55rem; margin-bottom: 12px; }
.cta-block p  { color: rgba(255,255,255,0.9); margin-bottom: 26px; font-size: 1.05rem; }

/* ==========================
   INFO / FEATURE CARDS
   ========================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.info-card {
  background: var(--bg-card);
  border: var(--border-fire);
  border-radius: var(--r-md);
  padding: 32px 28px;
  text-align: center;
  transition: var(--tr);
  box-shadow: var(--shadow-card);
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-fire);
  border-color: var(--color-orange);
}
.info-card__icon { font-size: 2.6rem; margin-bottom: 16px; }
.info-card h3    { color: var(--color-orange-light); margin-bottom: 12px; }
.info-card p     { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }

/* ==========================
   STATS ROW
   ========================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin: 40px 0;
  border: var(--border-fire);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-item {
  padding: 32px 16px;
  background: var(--bg-card);
  border-right: var(--border-fire);
}
.stat-item:last-child { border-right: none; }
.stat-item .number {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .label { color: var(--text-secondary); font-size: 0.88rem; }

/* ==========================
   RESPONSIVE TABLE
   ========================== */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-md);
  border: var(--border-fire);
  margin: 24px 0;
}
/* Add hint for mobile users */
.table-wrapper::before {
  content: '← Σύρετε για να δείτε →';
  display: none;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 6px;
  background: var(--bg-card);
  border-bottom: var(--border-fire);
}
.styled-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.styled-table th {
  background: var(--gradient-fire);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}
.styled-table td {
  padding: 12px 20px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(229, 80, 0, 0.1);
  font-size: 0.92rem;
}
.styled-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: rgba(229, 80, 0, 0.05); }
.styled-table .highlight-row td {
  background: rgba(255, 170, 0, 0.08);
  color: var(--text-primary);
  border-left: 3px solid var(--color-orange);
}

/* ==========================
   PAYMENT LOGOS
   ========================== */
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
}
.payment-logo {
  background: rgba(255,255,255,0.04);
  border: var(--border-fire);
  border-radius: var(--r-sm);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
  min-width: 110px;
  height: 58px;
}
.payment-logo:hover {
  background: rgba(229, 80, 0, 0.1);
  border-color: var(--color-orange);
  transform: translateY(-2px);
}
.payment-logo img {
  height: 28px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(0.75) sepia(0.2);
  transition: var(--tr);
}
.payment-logo:hover img { filter: brightness(1.1) sepia(0.4); }

/* ==========================
   FAQ ACCORDION
   ========================== */
.faq-list { margin-top: 40px; }
.faq-item {
  border: var(--border-fire);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--text-primary);
  padding: 20px 26px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--tr);
  font-family: inherit;
}
.faq-question:hover { background: var(--bg-card-hover); color: var(--color-orange-light); }
.faq-question .faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--color-orange);
  margin-left: 16px;
  transition: var(--tr);
}
.faq-item.open .faq-question { color: var(--color-orange-light); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 320px; padding: 20px 26px; }

/* ==========================
   BREADCRUMBS
   ========================== */
.breadcrumbs {
  background: var(--bg-secondary);
  border-bottom: var(--border-fire);
  padding: 13px 0;
  margin-top: var(--header-height);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumb-item { display: flex; align-items: center; gap: 8px; }
.breadcrumb-item a { color: var(--text-muted); font-size: 0.88rem; }
.breadcrumb-item a:hover { color: var(--color-orange-light); }
.breadcrumb-item.active { color: var(--color-orange-light); font-size: 0.88rem; font-weight: 600; }
.breadcrumb-sep { color: var(--text-muted); font-size: 0.75rem; }

/* ==========================
   PAGE HEADER (inner pages)
   ========================== */
.page-header {
  text-align: center;
  padding: 60px 24px 44px;
  background: var(--bg-secondary);
  border-bottom: var(--border-fire);
}
.page-header h1 {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.page-header .lead {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: var(--text-secondary);
}

/* Main starts after header on non-index pages */
.main-offset { margin-top: 0; } /* breadcrumbs already provides offset */

/* ==========================
   BONUS CARDS
   ========================== */
.bonus-card {
  background: var(--bg-card);
  border: var(--border-fire);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow-card);
}
.bonus-card__header {
  background: var(--gradient-fire);
  padding: 32px 42px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.bonus-card__header .icon { font-size: 3rem; flex-shrink: 0; }
.bonus-card__header h2   { color: #fff; font-size: 1.6rem; }
.bonus-card__header p    { color: rgba(255,255,255,0.85); margin: 0; }
.bonus-card__body { padding: 42px; }
.bonus-card__body h3 {
  color: var(--color-orange-light);
  margin: 30px 0 14px;
}
.bonus-card__body h3:first-child { margin-top: 0; }
.bonus-card__body p  { color: var(--text-secondary); line-height: 1.82; }
.bonus-card__body ul { padding: 0; margin-bottom: 24px; }
.bonus-card__body ul li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(229,80,0,0.1);
}
.bonus-card__body ul li::before { content: '🔥'; position: absolute; left: 0; }

/* ==========================
   LIVE CASINO CARDS
   ========================== */
.live-games-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.live-game-card {
  background: var(--bg-card);
  border: var(--border-fire);
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--tr);
}
.live-game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-fire);
  border-color: var(--color-orange);
}
.live-game-card .icon { font-size: 2.8rem; margin-bottom: 16px; }
.live-game-card h3   { color: var(--color-orange-light); margin-bottom: 12px; }
.live-game-card p    { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }

/* ==========================
   PROVIDERS LOGOS
   ========================== */
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}
.provider-logo {
  background: var(--bg-card);
  border: var(--border-fire);
  border-radius: var(--r-sm);
  padding: 12px 18px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}
.provider-logo:hover {
  border-color: var(--color-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-fire);
}
.provider-logo img {
  height: 26px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: brightness(0.65) sepia(0.2);
  transition: var(--tr);
}
.provider-logo:hover img { filter: brightness(1) sepia(0.4) hue-rotate(10deg); }

/* ==========================
   ALL SLOTS PAGE GRID
   ========================== */
.all-slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* ==========================
   POLICY PAGES
   ========================== */
.policy-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 24px;
}
/* Table of Contents */
.toc {
  background: var(--bg-card);
  border: var(--border-fire);
  border-radius: var(--r-md);
  padding: 26px 32px;
  margin-bottom: 44px;
}
.toc h3 { color: var(--color-orange-light); margin-bottom: 16px; }
.toc ol  { padding-left: 22px; }
.toc ol li { margin-bottom: 8px; }
.toc ol li a { color: var(--text-secondary); font-size: 0.95rem; }
.toc ol li a:hover { color: var(--color-orange-light); }

/* Policy headings and body */
.policy-wrapper h2 {
  color: var(--color-orange-light);
  margin: 44px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(229,80,0,0.25);
  scroll-margin-top: 100px; /* offset for fixed header */
}
.policy-wrapper h2:first-of-type { margin-top: 0; }
.policy-wrapper h3 { color: var(--text-primary); margin: 24px 0 12px; }
.policy-wrapper p  { color: var(--text-secondary); line-height: 1.82; }
.policy-wrapper ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.policy-wrapper ul li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 7px;
  list-style: disc;
}

/* ==========================
   FOOTER
   ========================== */
.site-footer {
  background: #060100;
  border-top: var(--border-fire);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  margin-bottom: 52px;
}
.footer-brand .site-logo img { height: 52px; margin-bottom: 20px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 380px; line-height: 1.75; }
.footer-disclaimer {
  color: var(--color-orange-light) !important;
  font-size: 0.82rem !important;
  margin-top: 16px;
  border-top: 1px solid rgba(229,80,0,0.2);
  padding-top: 14px;
}
.footer-payments h4 {
  color: var(--color-orange-light);
  margin-bottom: 20px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.footer-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer-payment-logos .payment-logo {
  padding: 8px 14px;
  height: 44px;
  min-width: 80px;
}
.footer-payment-logos .payment-logo img { height: 22px; }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(229,80,0,0.15);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--color-orange-light); }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; }

/* ==========================
   SKIP LINK (Accessibility)
   ========================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-orange);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
  z-index: 9999;
  transition: var(--tr);
  text-decoration: none;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---- Visually hidden (SR-only) ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---- Focus visible ---- */
:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ==========================
   UTILITY CLASSES
   ========================== */
.text-center { text-align: center; }
.text-fire {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge {
  display: inline-block;
  background: var(--gradient-fire);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--r-xl);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mb-0   { margin-bottom: 0; }
.mb-32  { margin-bottom: 32px; }

/* ==========================
   RESPONSIVE BREAKPOINTS
   ========================== */

/* ---- Large tablets / small desktops ---- */
@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: var(--border-fire); }
  .stat-item:nth-child(odd) { border-right: var(--border-fire); }
  .stat-item:last-child, .stat-item:nth-last-child(-n+2):nth-child(odd) { border-bottom: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .content-block { grid-template-columns: 1fr; gap: 32px; }
  .content-block.reverse { direction: ltr; }
  .live-games-showcase { grid-template-columns: repeat(2, 1fr); }

  .slots-grid    { grid-template-columns: repeat(4, 1fr); }
  .all-slots-grid{ grid-template-columns: repeat(4, 1fr); }
}

/* ---- Tablets / Mobile ---- */
@media (max-width: 768px) {
  :root { --section-pad: 52px; }

  /* Mobile header */
  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: rgba(10,1,0,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    border-bottom: var(--border-fire);
    gap: 4px;
    z-index: 999;
  }
  .site-nav.open { display: flex; }

  .nav-link { padding: 14px 18px; font-size: 1rem; border-radius: var(--r-sm); }

  /* Show CTA inside mobile nav */
  .mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: var(--border-fire);
    margin-top: 8px;
  }
  .mobile-nav-cta .btn-primary,
  .mobile-nav-cta .btn-secondary { width: 100%; padding: 14px; text-align: center; }

  /* Simplified page nav — stack/scroll on mobile */
  .site-nav-pages {
    display: none;
  }
  /* Fastlinks — smaller text, still scrollable */
  .fastlinks-nav a { padding: 10px 14px; font-size: 0.82rem; }

  /* Hide legacy desktop CTA class if still referenced */
  .header-cta-desktop { display: none; }
  .menu-toggle { display: flex; }

  /* Hero */
  .hero-banner { min-height: 480px; height: 88vh; max-height: 700px; }
  .hero-banner__cta { padding: 30px 22px; }
  .hero-banner__bg { background-position: 60% center; }

  /* Slots: 2 columns on mobile */
  .slots-grid     { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .all-slots-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .cards-grid { grid-template-columns: 1fr; }
  .live-games-showcase { grid-template-columns: 1fr; }
  .stats-row  { grid-template-columns: repeat(2, 1fr); }

  /* Bonus card mobile */
  .bonus-card__header { flex-direction: column; padding: 26px 22px; text-align: center; }
  .bonus-card__body   { padding: 26px 22px; }

  /* CTA block */
  .cta-block { padding: 32px 20px; }

  /* Table hint visible on mobile */
  .table-wrapper::before { display: block; }

  /* Page header */
  .page-header { padding: 40px 20px 30px; }
}

/* ---- Small Mobile ---- */
@media (max-width: 480px) {
  .slots-grid     { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .all-slots-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .hero-banner__cta h1  { font-size: 1.5rem; }
  .hero-banner__cta .hero-sub { font-size: 0.92rem; }

  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn-primary,
  .btn-group .btn-secondary,
  .btn-group .slot-play-btn { width: 100%; text-align: center; }

  .footer-payment-logos .payment-logo { min-width: 70px; padding: 8px 10px; }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item .number { font-size: 1.8rem; }

  .section-intro { font-size: 0.97rem; }
  .cta-block h3 { font-size: 1.2rem; }
}
