/* =============================================
   FIREBALL CASINO — style.css
   Theme: Luxury Light / Gold & Ember
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────── */
:root {
  --gold:        #C9922A;
  --gold-light:  #F0C060;
  --gold-pale:   #FDF3DC;
  --ember:       #E84B1A;
  --ember-dark:  #B83510;
  --cream:       #FEFAF3;
  --cream-2:     #F8F0E3;
  --ink:         #1A1208;
  --ink-mid:     #4A3820;
  --ink-soft:    #7A6248;
  --border:      #E8D5B0;
  --white:       #FFFFFF;
  --shadow-gold: 0 4px 24px rgba(201,146,42,0.18);
  --shadow-deep: 0 8px 48px rgba(26,18,8,0.12);
  --radius:      14px;
  --radius-sm:   8px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(240,192,96,0.10) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9922A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ── Typography: H1 ────────────────────────── */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 2rem 0 1.1rem;
  position: relative;
  padding-bottom: 0.6rem;
}
h1::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--ember), var(--gold-light));
  border-radius: 2px;
  margin-top: 0.5rem;
}

/* ── Typography: H2 ────────────────────────── */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 700;
  color: var(--ink);
  margin: 1.8rem 0 0.9rem;
  line-height: 1.25;
  padding-left: 1.1rem;
  border-left: 4px solid var(--gold);
  letter-spacing: -0.01em;
}

/* ── Typography: H3 ────────────────────────── */
h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--ink-mid);
  margin: 1.4rem 0 0.6rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
h3::before {
  content: '◆';
  font-size: 0.55em;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Typography: H4 ────────────────────────── */
h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ember);
  margin: 1.2rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Paragraphs ────────────────────────────── */
p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-mid);
  margin: 0 0 1.2rem;
  max-width: 72ch;
}
p:last-child { margin-bottom: 0; }

p strong {
  color: var(--ink);
  font-weight: 600;
}

p em {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

/* ── Links ─────────────────────────────────── */
a {
  color: var(--ember);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
a:hover {
  color: var(--ember-dark);
  border-bottom-color: var(--ember);
}

/* ── Unordered Lists ───────────────────────── */
ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
ul li {
  padding: 0.65rem 1rem 0.65rem 2.8rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink-mid);
  font-size: 0.97rem;
  position: relative;
  box-shadow: 0 2px 8px rgba(201,146,42,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
ul li::before {
  content: '🔥';
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9em;
}
ul li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-gold);
}

/* ── Ordered Lists ─────────────────────────── */
ol {
  list-style: none;
  counter-reset: fireball-counter;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
ol li {
  counter-increment: fireball-counter;
  padding: 0.7rem 1rem 0.7rem 3.2rem;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--white) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-mid);
  font-size: 0.97rem;
  position: relative;
  transition: background var(--transition);
}
ol li::before {
  content: counter(fireball-counter);
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: linear-gradient(135deg, var(--ember), var(--gold));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
}
ol li:hover { background: var(--gold-pale); }

/* ── Tables ────────────────────────────────── */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.95rem;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
thead {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
}
thead th {
  color: var(--gold-light);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.2rem;
  text-align: left;
  white-space: nowrap;
}
tbody tr {
  background: var(--white);
  transition: background var(--transition);
}
tbody tr:nth-child(even) { background: var(--gold-pale); }
tbody tr:hover { background: rgba(201,146,42,0.1); }
tbody td {
  padding: 0.8rem 1.2rem;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }

/* ── Blockquote ────────────────────────────── */
blockquote {
  margin: 1.5rem 0 2rem;
  padding: 1.2rem 1.5rem 1.2rem 2rem;
  background: var(--gold-pale);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--ink-mid);
  position: relative;
  font-style: italic;
}
blockquote::before {
  content: '"';
  position: absolute;
  top: -0.3rem;
  left: 0.8rem;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

/* ── Images ────────────────────────────────── */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
}

/* ── Horizontal Rule ───────────────────────── */
hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2.5rem 0;
  opacity: 0.5;
}

/* ── Global Button ─────────────────────────── */
.btn, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--ember) 0%, var(--gold) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,75,26,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,75,26,0.45);
  color: var(--white);
  border-bottom: none;
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  border-bottom: none;
}

/* ── Layout Wrapper ────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(254,250,243,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(201,146,42,0.10);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
  border-bottom: none;
}
.header-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--ember), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(232,75,26,0.3);
  animation: flame-pulse 2.5s ease-in-out infinite;
}
@keyframes flame-pulse {
  0%,100% { box-shadow: 0 4px 14px rgba(232,75,26,0.3); }
  50%      { box-shadow: 0 4px 24px rgba(232,75,26,0.6), 0 0 40px rgba(240,192,96,0.3); }
}
.header-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.header-logo-text span { color: var(--ember); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  border-bottom: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.header-nav a:hover, .header-nav a.active {
  color: var(--ember);
  background: rgba(232,75,26,0.07);
}

.header-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  box-shadow: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 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-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu a {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--ember); }
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════════════════
   HERO / BONUS SECTION
   ══════════════════════════════════════════════ */
.bonuses-section {
  padding: 3.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.bonuses-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(232,75,26,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 20%, rgba(240,192,96,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.bonuses-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.bonuses-heading h2 {
  border: none;
  padding: 0;
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}
.bonuses-heading h2::before { display: none; }
.bonuses-heading p { max-width: 50ch; margin: 0 auto; text-align: center; }

.bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--ember), var(--gold));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.7rem;
  animation: badge-glow 2s ease-in-out infinite;
}
@keyframes badge-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,75,26,0); }
  50%      { box-shadow: 0 0 0 6px rgba(232,75,26,0.2); }
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bonus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(201,146,42,0.10);
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ember), var(--gold), var(--ember));
  background-size: 200% 100%;
  animation: shimmer-line 2.5s linear infinite;
}
@keyframes shimmer-line {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201,146,42,0.22);
}
.bonus-card.featured {
  background: linear-gradient(160deg, var(--ink) 0%, #2E1F0A 100%);
  border-color: var(--gold);
  color: var(--white);
}
.bonus-card.featured p, .bonus-card.featured .bonus-subtitle { color: rgba(255,255,255,0.7); }
.bonus-card.featured .bonus-amount { color: var(--gold-light); }
.bonus-card.featured .bonus-title { color: var(--white); }

.bonus-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
  animation: bounce-icon 3s ease-in-out infinite;
}
@keyframes bounce-icon {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.bonus-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.bonus-amount {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: var(--ember);
  line-height: 1.1;
  margin: 0.5rem 0;
  letter-spacing: -0.02em;
}
.bonus-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  font-family: 'DM Sans', sans-serif;
}
.bonus-subtitle {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
  line-height: 1.5;
}
.bonus-card .btn {
  width: 100%;
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
}

/* ══════════════════════════════════════════════
   CONTENT AREA (MAIN)
   ══════════════════════════════════════════════ */
.content-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}
.content-main img {
  margin: 1.5rem auto;
  max-height: 420px;
  object-fit: cover;
  width: 100%;
}

/* ══════════════════════════════════════════════
   SLOTS SECTION
   ══════════════════════════════════════════════ */
.slots-section {
  padding: 2rem 0 3.5rem;
  position: relative;
}
.slots-section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.slots-section-title h2 {
  border: none;
  padding: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  display: block;
}
.slots-section-title h2::before { display: none; }
.slots-section-title p { max-width: 48ch; margin: 0.5rem auto 0; text-align: center; }

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.slot-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(26,18,8,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.slot-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(232,75,26,0.3);
}
.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  display: block;
  transition: transform var(--transition);
}
.slot-card:hover img { transform: scale(1.08); }

.slot-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--ink) 0%, #3A2410 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.slot-placeholder span {
  font-size: 2.5rem;
}
.slot-placeholder p {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  text-align: center;
  padding: 0 0.5rem;
  margin: 0;
  max-width: none;
}

.slot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.92) 0%, rgba(26,18,8,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.slot-card:hover .slot-overlay { opacity: 1; }
.slot-name {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.7rem;
  font-family: 'DM Sans', sans-serif;
}
.slot-buttons {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}
.slot-btn {
  flex: 1;
  padding: 0.5rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.slot-btn-play {
  background: linear-gradient(135deg, var(--ember), var(--gold));
  color: var(--white);
  box-shadow: 0 2px 12px rgba(232,75,26,0.4);
}
.slot-btn-play:hover {
  transform: translateY(-1px);
  border-bottom: none;
  color: var(--white);
}
.slot-btn-demo {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}
.slot-btn-demo:hover {
  background: rgba(255,255,255,0.25);
  border-bottom: none;
  color: var(--white);
}

/* ══════════════════════════════════════════════
   TRUST / STATS BAR
   ══════════════════════════════════════════════ */
.trust-bar {
  background: linear-gradient(135deg, var(--ink) 0%, #2E1F0A 100%);
  padding: 2.5rem 0;
  margin: 2rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
}
.trust-item .trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  counter-reset: none;
}
.trust-item .trust-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  display: block;
}

/* ══════════════════════════════════════════════
   FEATURES STRIP
   ══════════════════════════════════════════════ */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0;
}
.feature-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.7rem;
}
.feature-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
  display: block;
}
.feature-desc {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  max-width: none;
}

/* ══════════════════════════════════════════════
   TICKER / MARQUEE
   ══════════════════════════════════════════════ */
.ticker-wrap {
  background: linear-gradient(90deg, var(--ember), var(--gold), var(--ember));
  background-size: 200% 100%;
  animation: ticker-bg 4s linear infinite;
  overflow: hidden;
  padding: 0.55rem 0;
}
@keyframes ticker-bg {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 28s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.ticker-item::before { content: '⚡'; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(160deg, var(--ink) 0%, #150E04 100%);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--gold), var(--ember));
  background-size: 200%;
  animation: shimmer-line 3s linear infinite;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-brand .header-logo-text {
  color: var(--white);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.6rem;
}
.footer-disclaimer {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 58ch;
  margin: 0;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  border-bottom: none;
  transition: color var(--transition);
  padding: 0.3rem 0;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-responsible {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-responsible h4 {
  color: var(--gold-light);
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.footer-responsible p {
  font-size: 0.79rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}
.footer-responsible .resp-orgs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.8rem;
}
.footer-responsible .resp-orgs a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  border-bottom: none;
  transition: background var(--transition), color var(--transition);
}
.footer-responsible .resp-orgs a:hover {
  background: rgba(240,192,96,0.2);
  color: var(--gold-light);
}
.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ember);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  margin-left: 0.5rem;
  flex-shrink: 0;
  vertical-align: middle;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  border-bottom: none;
  transition: color var(--transition);
  font-size: 0.78rem;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════════
   SCROLL TO TOP
   ══════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--ember), var(--gold));
  border: none;
  border-radius: 12px;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(232,75,26,0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  letter-spacing: 0;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(232,75,26,0.45); }

/* ══════════════════════════════════════════════
   RESPONSIVE: TABLET ≤ 900px
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .header-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  table { font-size: 0.88rem; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE: MOBILE ≤ 600px
   ══════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --radius: 10px; }
  .container { padding: 0 1rem; }
  .bonuses-grid { grid-template-columns: 1fr; gap: 1rem; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .features-strip { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .trust-bar-inner { gap: 1rem; }
  .trust-item .trust-number { font-size: 1.6rem; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .header-inner { height: 60px; }
  p { font-size: 0.96rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  ul li, ol li { padding-left: 2.4rem; font-size: 0.93rem; }
  blockquote { padding: 1rem 1rem 1rem 1.5rem; }
  table { font-size: 0.82rem; }
  thead th { padding: 0.7rem 0.9rem; }
  tbody td  { padding: 0.65rem 0.9rem; }
  .slot-overlay { opacity: 1; }
  .slot-overlay .slot-buttons { flex-direction: column; gap: 0.4rem; }
  img { max-height: 260px; }
}