/* ============================================================
   TIKAL CASINO AFFILIATE — DESIGN SYSTEM
   Brand: Deep Forest Green + Gold + Coral Red
   Theme: Ancient Mayan / Jungle Temple / Premium Casino
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Core brand colours (extracted from tikalcasino.com) */
  --bg-deep:       #0a1509;
  --bg-primary:    #0f1c12;
  --bg-secondary:  #141f16;
  --bg-card:       #1a2e1d;
  --bg-card-hover: #213825;
  --bg-nav:        #0c1810;

  /* Gold / Amber — logo colour */
  --gold:          #d4a820;
  --gold-light:    #f2c940;
  --gold-dark:     #9a7a10;
  --gold-glow:     rgba(212, 168, 32, 0.32);

  /* Coral Red — CTA / active states */
  --coral:         #e84848;
  --coral-light:   #f05c5c;
  --coral-dark:    #bf3333;
  --coral-glow:    rgba(232, 72, 72, 0.35);

  /* Teal — icon / secondary accent */
  --teal:          #2d7845;
  --teal-light:    #3a9a58;

  /* Text */
  --text:          #ffffff;
  --text-sec:      #a8c4aa;
  --text-muted:    #5a7a5c;
  --text-gold:     #f2c940;

  /* Borders */
  --border:        rgba(212, 168, 32, 0.18);
  --border-strong: rgba(212, 168, 32, 0.45);
  --border-coral:  rgba(232, 72, 72, 0.3);

  /* Gradients */
  --grad-gold:   linear-gradient(135deg, #d4a820 0%, #f2c940 50%, #d4a820 100%);
  --grad-coral:  linear-gradient(135deg, #e84848 0%, #f05c5c 50%, #e84848 100%);
  --grad-dark:   linear-gradient(180deg, #0a1509 0%, #141f16 100%);
  --grad-card:   linear-gradient(145deg, #1a2e1d 0%, #0f1c12 100%);
  --grad-hero:   radial-gradient(ellipse at 50% -10%, rgba(212, 168, 32, 0.18) 0%, transparent 65%),
                 radial-gradient(ellipse at 80% 80%, rgba(45, 120, 69, 0.1) 0%, transparent 50%);

  /* Shadows */
  --shadow-gold:  0 0 24px rgba(212, 168, 32, 0.35), 0 4px 16px rgba(0,0,0,0.5);
  --shadow-coral: 0 0 20px rgba(232, 72, 72, 0.35), 0 4px 16px rgba(0,0,0,0.5);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.45);

  /* Typography */
  --font-head: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-full: 9999px;

  --transition: 0.25s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

.text-gold     { color: var(--text-gold); }
.text-coral    { color: var(--coral); }
.text-gradient {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section      { padding: var(--sp-xl) 0; }
.section-alt  { background: var(--bg-secondary); }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { color: var(--text-sec); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

.divider {
  width: 72px; height: 3px;
  background: var(--grad-gold);
  margin: 0.75rem auto var(--sp-sm);
  border-radius: var(--r-full);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--grad-coral);
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(232,72,72,0.55), 0 6px 20px rgba(0,0,0,0.5);
}
.btn-gold {
  background: var(--grad-gold);
  color: #0a1509;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(212,168,32,0.55), 0 6px 20px rgba(0,0,0,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--text-gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(212,168,32,0.1);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.88rem; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 21, 9, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-gold);
  letter-spacing: 2px;
}
/* Real logo image — nav */
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  /* Override SVG dark-green fill variable to white so text reads on dark bg.
     The yellow icon box uses a separate fill and stays yellow naturally. */
  --fill-1: #ffffff;
  --fill-2: #ffffff;
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--grad-gold);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #0a1509;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-sec);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-gold);
  background: rgba(212,168,32,0.08);
}
.nav-cta { display: flex; align-items: center; gap: 0.65rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-gold);
  border-radius: var(--r-full);
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,21,9,0.98);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.4rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.8rem 1rem;
  border-radius: var(--r-sm);
  font-weight: 500;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--text-gold); }
.nav-mobile .btn { width: 100%; margin-top: 0.5rem; }

/* === HERO === */
.hero {
  padding-top: 120px;
  padding-bottom: var(--sp-xl);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 5 L75 70 L5 70 Z' fill='none' stroke='rgba(212,168,32,0.035)' stroke-width='1'/%3E%3Cpath d='M40 20 L62 55 L18 55 Z' fill='none' stroke='rgba(212,168,32,0.025)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,168,32,0.1);
  border: 1px solid var(--border-strong);
  color: var(--text-gold);
  padding: 0.4rem 1.25rem;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 0.75rem; }
.hero-offer {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-family: var(--font-head);
  color: var(--text-gold);
  margin-bottom: 1.25rem;
  text-shadow: 0 0 40px rgba(212,168,32,0.5);
  letter-spacing: 1px;
}
.hero p {
  color: var(--text-sec);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-sec);
}
.trust-icon {
  width: 32px; height: 32px;
  background: rgba(212,168,32,0.1);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* === OFFER STRIP === */
.offer-strip {
  background: linear-gradient(90deg, #0a1509 0%, #1a2e1d 40%, #1a2e1d 60%, #0a1509 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
}
.offer-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-gold);
  letter-spacing: 0.5px;
}
.offer-strip-inner span { color: var(--text-sec); font-weight: 400; }

/* === STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px var(--gold-glow);
}
.step-num {
  width: 56px; height: 56px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 900;
  color: #0a1509;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-gold);
}
.step-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.step-card p  { color: var(--text-sec); font-size: 0.95rem; }

/* === PROMO CARD === */
.promo-highlight {
  background: linear-gradient(135deg, #1a2e1d 0%, #223825 50%, #1a2e1d 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-highlight::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold);
}
.promo-highlight .amount {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--text-gold);
  text-shadow: 0 0 40px var(--gold-glow);
  line-height: 1;
}
.promo-highlight .promo-label {
  font-size: 1.1rem;
  color: var(--text-sec);
  margin: 0.5rem 0 0.25rem;
}
.promo-highlight .promo-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.promo-highlight .second-offer {
  display: inline-block;
  background: rgba(212,168,32,0.08);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-sec);
  margin-bottom: 1.5rem;
}
.promo-highlight .second-offer strong { color: var(--text-gold); }

/* === GAME CARDS === */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}
.game-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55), 0 0 20px var(--gold-glow);
}
.game-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #0f1a0f;
}
.game-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.game-card:hover .game-img-wrap img {
  transform: scale(1.07);
}
.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,10,5,0.9) 0%, rgba(5,10,5,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.game-card:hover .game-overlay {
  opacity: 1;
}
.game-overlay .btn {
  transform: translateY(10px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  box-shadow: 0 0 24px rgba(212,168,32,0.5);
}
.game-card:hover .game-overlay .btn {
  transform: translateY(0);
  opacity: 1;
}
.game-meta {
  padding: 0.65rem 0.8rem 0.8rem;
  background: var(--bg-card);
}
.game-meta h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0 0 0.15rem;
  color: var(--text);
  font-family: var(--font-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-provider {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.game-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === FEATURE CARDS === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--gold); }
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(212,168,32,0.1);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.feature-card h4 { margin-bottom: 0.35rem; }
.feature-card p  { color: var(--text-sec); font-size: 0.9rem; }

/* === INTERNAL LINK CARDS === */
.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.link-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: var(--transition);
}
.link-card:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.link-card span { font-weight: 600; font-size: 0.92rem; }
.link-card .arrow { color: var(--text-gold); font-size: 1.1rem; }

/* === FAQ === */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 0.65rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: var(--bg-card);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
  gap: 1rem;
}
.faq-q:hover  { background: var(--bg-card-hover); color: var(--text-gold); }
.faq-q.open   { color: var(--text-gold); background: var(--bg-card-hover); }
.faq-toggle {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--text-gold);
  transition: var(--transition);
}
.faq-q.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--grad-gold);
  color: #0a1509;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a.visible { max-height: 600px; }
.faq-a-inner {
  padding: 1.25rem 1.5rem;
  color: var(--text-sec);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  font-size: 0.97rem;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #1a2e1d 0%, #253c28 50%, #1a2e1d 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold);
}
.cta-banner h2 { margin-bottom: 0.75rem; }
.cta-banner p  { color: var(--text-sec); margin-bottom: 1.75rem; font-size: 1.05rem; }
.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === REVIEW BOX === */
.review-box {
  background: var(--grad-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
}
.review-score {
  font-family: var(--font-head);
  font-size: 4.5rem; font-weight: 900;
  color: var(--text-gold);
  line-height: 1;
  text-shadow: 0 0 40px var(--gold-glow);
}
.stars { font-size: 1.5rem; letter-spacing: 2px; color: var(--gold); margin: 0.4rem 0; }

/* === PROS LIST === */
.pros-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-sec);
  font-size: 0.97rem;
}
.pros-list li:last-child { border-bottom: none; }
.check { color: var(--text-gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding-top: 120px;
  padding-bottom: var(--sp-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,32,0.12) 0%, transparent 60%);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p  { color: var(--text-sec); font-size: 1.05rem; max-width: 660px; margin: 0 auto 2rem; }
.page-hero .hero-ctas { margin-bottom: 0; }

/* === CONTENT BLOCKS === */
.content-block { max-width: 820px; margin: 0 auto; }
.content-block h2 { color: var(--text-gold); margin-bottom: 0.75rem; margin-top: 2rem; }
.content-block h3 { color: var(--text-gold); margin-bottom: 0.5rem; margin-top: 1.5rem; }
.content-block h2:first-child, .content-block h3:first-child { margin-top: 0; }
.content-block p  { color: var(--text-sec); margin-bottom: 1rem; line-height: 1.8; }

/* === CARDS GRID === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.info-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: var(--transition);
}
.info-card:hover { border-color: var(--gold); }
.info-card h4 { margin-bottom: 0.5rem; color: var(--text-gold); }
.info-card p  { color: var(--text-sec); font-size: 0.92rem; }

/* === VERDICT TABLE === */
.verdict-table { width: 100%; border-collapse: collapse; }
.verdict-table th, .verdict-table td {
  padding: 0.9rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.verdict-table th {
  font-family: var(--font-head);
  color: var(--text-gold);
  background: var(--bg-card);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.verdict-table td:first-child { color: var(--text-sec); }
.verdict-table td:last-child  { color: var(--text); font-weight: 600; }
.verdict-table tr:last-child td { border-bottom: none; }

/* === STEP GUIDE (login / signup) === */
.guide-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.guide-step {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  transition: var(--transition);
}
.guide-step:hover { border-color: var(--gold); }
.guide-step-num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 900;
  color: #0a1509;
}
.guide-step-content h4 { margin-bottom: 0.3rem; }
.guide-step-content p  { color: var(--text-sec); font-size: 0.92rem; }

/* === FOOTER === */
.footer {
  background: #080e09;
  border-top: 1px solid var(--border);
  padding: var(--sp-xl) 0 var(--sp-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--border);
}
/* Real logo image — footer */
.footer-logo-img {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  --fill-1: #ffffff;
  --fill-2: #ffffff;
  opacity: 0.9;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 900;
  color: var(--text-gold);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-about p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 1.1rem;
}
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a  { color: var(--text-muted); font-size: 0.88rem; transition: var(--transition); }
.footer-col a:hover { color: var(--text-gold); }
.footer-bottom { padding-top: var(--sp-md); display: flex; flex-direction: column; gap: 0.75rem; }
.footer-compliance { display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.badge-18 {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  color: var(--text-muted);
}
.footer-legal { font-size: 0.78rem; color: var(--text-muted); line-height: 1.65; }
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--text-gold); }

/* === STICKY MOBILE CTA === */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(10,21,9,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.8rem 1.25rem;
  gap: 0.75rem;
}
.sticky-cta .btn { flex: 1; justify-content: center; padding: 0.8rem 1rem; }

/* === ANIMATIONS === */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, #d4a820 0%, #f2c940 40%, #d4a820 60%, #f2c940 100%);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--shadow-coral); }
  50%       { box-shadow: 0 0 36px rgba(232,72,72,0.65), 0 6px 20px rgba(0,0,0,0.5); }
}
.pulse { animation: pulse-glow 2.2s ease-in-out infinite; }

.fade-in {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }
  .features-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .link-cards { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .trust-row { gap: 0.75rem; }
  .steps-grid { grid-template-columns: 1fr; }
}
