/* ============================================================
   FieryPlay Casino – Flame Dark Theme
   styles.css
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-main: #050505;
  --bg-dark: #0a0000;
  --bg-card: rgba(255, 107, 0, 0.07);
  --orange: #ff6b00;
  --orange-red: #e63200;
  --gold: #ffd700;
  --white: #ffffff;
  --text-main: #f0e8dc;
  --text-muted: #a08060;
  --border-orange: rgba(255, 107, 0, 0.4);
  --border-orange-strong: rgba(255, 107, 0, 0.8);
  --gradient-flame: linear-gradient(135deg, #ff6b00 0%, #e63200 100%);
  --gradient-flame-h: linear-gradient(90deg, #ff6b00 0%, #ffd700 50%, #e63200 100%);
  --gradient-dark: linear-gradient(180deg, #0a0000 0%, #050505 100%);
  --shadow-orange: 0 0 20px rgba(255, 107, 0, 0.4);
  --shadow-orange-strong: 0 0 40px rgba(255, 107, 0, 0.6);
  --radius: 10px;
  --radius-lg: 16px;
  --header-h: 68px;
  --font-heading: Impact, 'Arial Black', Arial, sans-serif;
  --font-body: Arial, 'Helvetica Neue', sans-serif;
  --transition: 0.25s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--gold); }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Visually hidden (accessibility) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Flame Divider ---------- */
.divider-flame {
  height: 3px;
  background: var(--gradient-flame-h);
  border-radius: 2px;
  margin: 14px 0 28px;
  max-width: 200px;
}

/* ---------- Buttons ---------- */
.btn-flame {
  display: inline-block;
  background: var(--gradient-flame);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
}

.btn-flame:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange-strong);
  filter: brightness(1.1);
  color: var(--white) !important;
}

.btn-flame.btn-xl {
  font-size: 1.25rem;
  padding: 17px 40px;
  border-radius: 12px;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--orange) !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--gradient-flame);
  color: var(--white) !important;
  border-color: transparent;
}

/* ---------- Section Title ---------- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-main);
  border-bottom: 2px solid transparent;
  border-image: var(--gradient-flame-h) 1;
  box-shadow: 0 2px 24px rgba(255, 107, 0, 0.2);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(255, 107, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--header-h);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-fiery { color: var(--orange); }
.logo-play  { color: var(--white); }

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  overflow: hidden;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--text-main);
  font-size: 0.83rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  padding: 6px 8px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.main-nav a:hover {
  color: var(--orange);
  background: rgba(255, 107, 0, 0.08);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-badge {
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: default;
}

.btn-login {
  color: var(--orange) !important;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 7px 14px;
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.btn-login:hover {
  background: rgba(255, 107, 0, 0.12);
  color: var(--gold) !important;
}

.btn-register {
  background: var(--gradient-flame);
  color: var(--white) !important;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 8px 18px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(255, 107, 0, 0.4);
  transition: filter var(--transition), box-shadow var(--transition);
}

.btn-register:hover {
  filter: brightness(1.12);
  box-shadow: var(--shadow-orange);
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #0d0000;
  border-top: 1px solid var(--border-orange);
  padding: 12px 20px 20px;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--text-main);
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.mobile-nav a:hover {
  color: var(--orange);
  background: rgba(255, 107, 0, 0.08);
}

.mobile-nav-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-orange);
  flex-wrap: wrap;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/Fieryplay_Hero_Banner.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding-top: 60px;
  padding-bottom: 80px;
  width: 100%;
  min-height: 620px;
}

.hero-banner-wrap {
  max-width: 900px;
  width: 100%;
}

.hero-banner-img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 60px rgba(255, 107, 0, 0.3);
}

/* CTA Box */
.hero-cta-box {
  background: rgba(5, 5, 5, 0.82);
  border: 2px solid var(--border-orange-strong);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  text-align: center;
  max-width: 680px;
  width: 100%;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.25);
  backdrop-filter: blur(6px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero-label {
  display: block;
  font-size: 0.85em;
  color: var(--orange);
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}

.highlight-gold   { color: var(--gold); }
.highlight-orange { color: var(--orange); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 22px;
  opacity: 0.9;
}

.hero-disclaimer {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ============================================================
   SEARCH & CATEGORY
   ============================================================ */
.search-section {
  background: #0c0600;
  border-top: 3px solid var(--orange);
  padding: 28px 0 22px;
}

.search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-input::placeholder { color: var(--text-muted); }

.search-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.25);
}

/* Category tabs */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.cat-tab {
  color: var(--text-main) !important;
  font-size: 0.88rem;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 0, 0.25);
  background: rgba(255, 107, 0, 0.05);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.cat-tab:hover,
.cat-tab.active {
  background: var(--gradient-flame);
  border-color: transparent;
  color: var(--white) !important;
}

/* Promo tabs */
.promo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.promo-tab {
  color: var(--orange) !important;
  font-size: 0.83rem;
  font-weight: bold;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-orange);
  background: transparent;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.promo-tab:hover {
  background: rgba(255, 107, 0, 0.12);
  color: var(--gold) !important;
}

/* ============================================================
   TOP GAMES
   ============================================================ */
.top-games {
  padding: 56px 0 48px;
  background: var(--bg-main);
}

.slots-block-link {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 4px 24px rgba(255, 107, 0, 0.1);
}

.slots-block-link:hover {
  box-shadow: var(--shadow-orange-strong);
  transform: translateY(-3px);
}

.slots-block-img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* ============================================================
   TEXT BLOCK 1
   ============================================================ */
.text-block {
  padding: 60px 0;
  background: #080200;
  border-top: 1px solid rgba(255, 107, 0, 0.15);
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.text-content p {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.9;
}

.text-cta {
  margin-top: 10px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   WINNERS
   ============================================================ */
.winners-section {
  background: var(--bg-dark);
  border-top: 3px solid var(--orange);
  padding: 56px 0;
}

.winners-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.winners-content {
  flex: 1;
  min-width: 0;
}

.winners-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.winners-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.winner-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  color: var(--text-main) !important;
}

.winner-card:hover {
  box-shadow: var(--shadow-orange);
  transform: translateX(4px);
  border-color: var(--orange);
  color: var(--white) !important;
}

.winner-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.winner-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.winner-amount {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.winner-text {
  font-size: 0.9rem;
  color: var(--text-main);
}

.winner-text strong {
  color: var(--orange);
}

/* Mascot */
.winners-mascot {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}

.mascot-img {
  max-width: 220px;
  width: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.45));
}

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: linear-gradient(135deg, #0d0200 0%, #1a0500 100%);
  border-top: 1px solid rgba(255, 107, 0, 0.2);
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
  padding: 56px 0;
  position: relative;
}

.promo-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.promo-text {
  flex: 1;
  min-width: 0;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.promo-desc {
  color: var(--text-main);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.promo-image-wrap {
  flex-shrink: 0;
  max-width: 280px;
}

.promo-gift-img {
  width: 100%;
  filter: drop-shadow(0 0 24px rgba(255, 107, 0, 0.5));
  transition: transform var(--transition), filter var(--transition);
}

.promo-gift-img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 36px rgba(255, 107, 0, 0.7));
}

.promo-arrows {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  justify-content: center;
}

.arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--orange) !important;
  font-weight: bold;
  transition: background var(--transition), color var(--transition);
}

.arrow-btn:hover {
  background: var(--gradient-flame);
  border-color: transparent;
  color: var(--white) !important;
}

/* ============================================================
   TWO-COLUMN TEXT
   ============================================================ */
.two-col-text {
  padding: 60px 0;
  background: var(--bg-main);
}

.two-col-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.col-left p, .col-right p {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.9;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  color: var(--text-main);
  font-size: 0.98rem;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  line-height: 1.5;
  transition: background var(--transition), box-shadow var(--transition);
}

.feature-list li:hover {
  background: rgba(255, 107, 0, 0.12);
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.2);
}

/* ============================================================
   JACKPOT CTA BLOCK
   ============================================================ */
.jackpot-cta {
  padding: 72px 0;
  background: #080200;
  border-top: 3px solid transparent;
  border-image: var(--gradient-flame-h) 1;
  border-bottom: 3px solid transparent;
}

.jackpot-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.jackpot-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.jackpot-desc {
  font-size: 1.1rem;
  color: var(--text-main);
  opacity: 0.88;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ============================================================
   SEO SECTION
   ============================================================ */
.seo-section {
  padding: 60px 0 72px;
  background: #060100;
  border-top: 1px solid rgba(255, 107, 0, 0.18);
}

.seo-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.seo-text p {
  color: var(--text-main);
  font-size: 0.98rem;
  line-height: 1.8;
  opacity: 0.88;
}

/* Info Table */
.info-table-wrap {
  overflow-x: auto;
  margin-bottom: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-orange);
  box-shadow: 0 4px 24px rgba(255, 107, 0, 0.1);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 0.95rem;
}

.info-table th,
.info-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 107, 0, 0.12);
}

.info-table th {
  color: var(--orange);
  font-weight: bold;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  white-space: nowrap;
  width: 200px;
  background: rgba(255, 107, 0, 0.05);
}

.info-table td {
  color: var(--text-main);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tr:hover td,
.info-table tr:hover th {
  background: rgba(255, 107, 0, 0.06);
}

/* SEO CTAs */
.seo-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  border-top: 3px solid transparent;
  border-image: var(--gradient-flame-h) 1;
  padding: 48px 0 32px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.footer-responsible {
  max-width: 680px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-responsible strong {
  color: var(--white);
}

.footer-responsible a {
  color: var(--orange);
  text-decoration: underline;
}

.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.025);
  border-radius: var(--radius);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pay-icon {
  height: 28px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--transition), filter var(--transition);
  filter: brightness(0.9);
}

.pay-icon:hover {
  opacity: 1;
  filter: brightness(1.1) drop-shadow(0 0 6px rgba(255, 107, 0, 0.4));
}

.footer-contact {
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.footer-legal a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--orange);
}

.legal-sep {
  color: rgba(255, 107, 0, 0.35);
  font-size: 0.9rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(160, 128, 96, 0.65);
}

/* ============================================================
   CONTENT SECTIONS (new docx sections)
   ============================================================ */
.content-section {
  padding: 60px 0;
  background: var(--bg-main);
  border-top: 1px solid rgba(255, 107, 0, 0.15);
}

.content-section.alt-bg {
  background: #080200;
}

.subsection-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 28px 0 12px;
}

/* Steps list */
.steps-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 30px;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.6;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-flame);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* Generic data table */
.table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-orange);
  box-shadow: 0 4px 24px rgba(255, 107, 0, 0.1);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 0.92rem;
  min-width: 500px;
}

.data-table th {
  background: rgba(255, 107, 0, 0.12);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border-orange);
  white-space: nowrap;
}

.data-table td {
  padding: 12px 16px;
  color: var(--text-main);
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
  vertical-align: top;
  line-height: 1.55;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(255, 107, 0, 0.05);
}

/* Sports grid */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 28px 0 30px;
}

.sport-card {
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.sport-card:hover {
  box-shadow: var(--shadow-orange);
  transform: translateY(-3px);
}

.sport-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.sport-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.sport-card p {
  font-size: 0.88rem;
  color: var(--text-main);
  opacity: 0.85;
  line-height: 1.6;
}

/* Games grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 28px 0 30px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.game-card:hover {
  box-shadow: var(--shadow-orange);
  transform: translateY(-3px);
}

.game-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.game-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.game-card p {
  font-size: 0.88rem;
  color: var(--text-main);
  opacity: 0.85;
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item[open] {
  box-shadow: var(--shadow-orange);
  border-color: var(--orange);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--transition), background var(--transition);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '▼';
  font-size: 0.75rem;
  color: var(--orange);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] .faq-question {
  color: var(--orange);
  background: rgba(255, 107, 0, 0.06);
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 18px;
  border-top: 1px solid rgba(255, 107, 0, 0.15);
}

.faq-answer p {
  color: var(--text-main);
  font-size: 0.97rem;
  line-height: 1.75;
  opacity: 0.9;
  margin-top: 14px;
}

/* ============================================================
   LEGAL PAGES – shared styles (breadcrumb, etc.)
   ============================================================ */
.breadcrumb {
  padding: 16px 0 8px;
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb-sep {
  color: rgba(255, 107, 0, 0.4);
  margin: 0 6px;
  font-size: 0.75rem;
}

.breadcrumb-current {
  color: var(--orange);
}

.legal-page {
  padding: 48px 0 72px;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 32px 0 10px;
}

.legal-page p,
.legal-page li {
  color: var(--text-main);
  font-size: 0.97rem;
  line-height: 1.78;
  opacity: 0.9;
  margin-bottom: 10px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 12px;
}

.legal-cta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 107, 0, 0.2);
  text-align: center;
}

/* ============================================================
   RESPONSIVE – TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .sports-grid,
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-actions .btn-login,
  .header-actions .btn-register {
    display: none;
  }

  .two-col-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================================
   RESPONSIVE – MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .sports-grid,
  .games-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .data-table {
    font-size: 0.82rem;
  }

  .data-table th,
  .data-table td {
    padding: 10px 12px;
  }

  :root {
    --header-h: 60px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-cta-box {
    padding: 22px 18px;
  }

  .hero-content {
    padding-top: 28px;
    padding-bottom: 44px;
    gap: 24px;
  }

  .winners-inner {
    flex-direction: column;
  }

  .winners-mascot {
    justify-content: center;
    order: -1;
  }

  .mascot-img {
    max-width: 160px;
  }

  .promo-inner {
    flex-direction: column;
    text-align: center;
  }

  .promo-image-wrap {
    max-width: 200px;
    margin: 0 auto;
  }

  .seo-ctas {
    flex-direction: column;
  }

  .seo-ctas .btn-flame,
  .seo-ctas .btn-outline {
    width: 100%;
    text-align: center;
  }

  .text-cta {
    flex-direction: column;
  }

  .text-cta .btn-flame,
  .text-cta .btn-outline {
    width: 100%;
    text-align: center;
  }

  /* Table → stacked cards on mobile */
  .info-table-wrap {
    border: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .info-table,
  .info-table thead,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table tr {
    background: var(--bg-card);
    border: 1px solid var(--border-orange);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
  }

  .info-table th {
    width: 100%;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    padding: 10px 14px;
    font-size: 0.85rem;
    background: rgba(255, 107, 0, 0.08);
  }

  .info-table td {
    padding: 10px 14px;
    border-bottom: none;
    font-size: 0.92rem;
  }

  .info-table tr:last-child {
    margin-bottom: 0;
  }

  .search-bar {
    flex-direction: column;
  }

  .search-bar .btn-flame,
  .search-bar .btn-outline {
    width: 100%;
    text-align: center;
  }

  .jackpot-cta {
    padding: 48px 0;
  }

  .footer-payments {
    gap: 12px;
  }

  .pay-icon {
    height: 24px;
  }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .sports-grid,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-box {
    padding: 18px 14px;
  }

  .hero-title {
    font-size: 1.35rem;
  }

  .promo-title {
    font-size: 1.7rem;
  }

  .jackpot-title {
    font-size: 1.8rem;
  }

  .btn-flame.btn-xl {
    font-size: 1.05rem;
    padding: 14px 26px;
  }
}
