/* ============================================================
   SWC SABONG — Main Stylesheet
   Theme: Dark Imperial Gold — Championship Arena
   ============================================================ */

/* Google Fonts loaded via <link> in HTML for better performance */

/* ---- CSS Variables ---- */
:root {
  --bg-deep:    #060408;
  --bg-dark:    #0D0810;
  --bg-card:    #12091A;
  --bg-card2:   #160A0A;
  --crimson:    #8B0000;
  --crimson-lt: #C41E3A;
  --gold:       #D4AF37;
  --gold-lt:    #FFD700;
  --gold-dk:    #B8860B;
  --emerald:    #00C864;
  --emerald-dk: #007A3D;
  --text-main:  #F0EAF8;
  --text-muted: #9A8FAA;
  --text-gold:  #D4AF37;
  --border:     rgba(212,175,55,0.2);
  --border-red: rgba(196,30,58,0.3);
  --glass:      rgba(13,8,16,0.85);
  --glow-gold:  0 0 20px rgba(212,175,55,0.4);
  --glow-red:   0 0 20px rgba(196,30,58,0.5);
  --glow-green: 0 0 20px rgba(0,200,100,0.5);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-lt); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ---- Noise overlay ---- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.6;
}

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 { font-family: 'Cinzel', serif; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin-bottom: 1em; }

.text-gold { color: var(--gold); }
.text-crimson { color: var(--crimson-lt); }
.text-green { color: var(--emerald); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ---- Section Heading ---- */
.section-heading { text-align: center; margin-bottom: 60px; }
.section-heading .eyebrow {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  border-bottom: 1px solid var(--gold-dk); padding-bottom: 6px;
}
.section-heading h2 { color: var(--text-main); margin-bottom: 16px; }
.section-heading p { color: var(--text-muted); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.divider-gold {
  width: 80px; height: 3px; margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 16px 0;
  background: transparent;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
#site-header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cinzel', serif; font-weight: 900; font-size: 1.3rem;
  color: var(--gold); text-decoration: none;
}
.nav-logo img { width: 44px; height: 44px; object-fit: contain; }
.nav-logo span { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo .logo-sub { font-size: 0.55rem; letter-spacing: 0.2em; color: var(--text-muted); font-family: 'Raleway', sans-serif; font-weight: 600; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-muted); padding: 8px 14px; border-radius: var(--radius);
  transition: all var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-lt));
  color: #fff !important; padding: 10px 24px !important;
  border-radius: 50px; font-weight: 700 !important;
  box-shadow: var(--glow-red);
  transition: all var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(196,30,58,0.7) !important; background: linear-gradient(135deg, var(--crimson-lt), #E0243D) !important; }

.nav-live-dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--emerald); border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,200,100,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(0,200,100,0); }
}

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
#hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,4,8,0.85) 0%, rgba(6,4,8,0.5) 50%, rgba(6,4,8,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 760px; padding: 0 40px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,0,0,0.4); border: 1px solid rgba(212,175,55,0.4);
  backdrop-filter: blur(8px); border-radius: 50px;
  padding: 8px 18px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.1; margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.hero-title span { color: var(--gold); }
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(240,234,248,0.85); margin-bottom: 36px;
  max-width: 560px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-lt));
  color: #fff; box-shadow: var(--glow-red);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px rgba(196,30,58,0.8);
  color: #fff;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: var(--bg-deep); box-shadow: var(--glow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px rgba(212,175,55,0.8);
  color: var(--bg-deep);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold); color: var(--bg-deep);
  transform: translateY(-3px);
}
.btn-green {
  background: linear-gradient(135deg, var(--emerald-dk), var(--emerald));
  color: #fff; box-shadow: var(--glow-green);
}
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 0 35px rgba(0,200,100,0.8); color: #fff; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg { padding: 18px 42px; font-size: 1rem; }

/* Hero indicators */
.hero-indicators {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 35px; right: 40px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease infinite;
}
@keyframes scroll-line { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(0.6); } }

/* Floating particles */
#particles-canvas {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
}

/* ============================================================
   STATS BAR
   ============================================================ */
#stats-bar {
  background: linear-gradient(90deg, var(--bg-card2), var(--bg-card), var(--bg-card2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center; padding: 10px 20px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cinzel', serif; font-size: 2.2rem;
  font-weight: 900; color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.stat-icon { font-size: 1.4rem; margin-bottom: 6px; }

/* ============================================================
   LIVE BANNER
   ============================================================ */
#live-banner {
  background: linear-gradient(90deg, rgba(0,100,50,0.15), rgba(0,200,100,0.1), rgba(0,100,50,0.15));
  border-top: 1px solid rgba(0,200,100,0.25);
  border-bottom: 1px solid rgba(0,200,100,0.25);
  padding: 14px 0; overflow: hidden;
}
.live-ticker {
  display: flex; align-items: center; gap: 0;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.live-ticker-inner { display: flex; align-items: center; gap: 60px; }
.live-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600; color: var(--emerald);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.live-dot-small {
  width: 8px; height: 8px; background: var(--emerald);
  border-radius: 50%; animation: pulse-dot 1.5s ease infinite;
}
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: var(--bg-dark);
  position: relative; overflow: hidden;
}
#about::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,0,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
}
.about-img-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 160px; height: 160px; border-radius: 50%;
  border: 3px solid var(--gold);
  background: var(--bg-card);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  box-shadow: var(--glow-gold);
  padding: 20px;
}
.about-img-accent strong { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--gold); }
.about-img-accent span { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.about-content .eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 12px;
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-muted); margin-bottom: 14px; }
.about-features { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius);
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.1);
  transition: all var(--transition);
}
.about-feature:hover {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.3);
  transform: translateX(6px);
}
.about-feature-icon {
  font-size: 1.5rem; flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(139,0,0,0.2); display: flex;
  align-items: center; justify-content: center;
}
.about-feature-text h4 { font-family: 'Raleway', sans-serif; font-size: 1rem; color: var(--text-main); margin-bottom: 4px; }
.about-feature-text p { font-size: 0.88rem; margin: 0; }

/* ============================================================
   HOW TO REGISTER
   ============================================================ */
#how-to-register { background: var(--bg-deep); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 40px; left: 16.6%; right: 16.6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--crimson-lt), var(--gold), transparent);
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  position: relative; overflow: hidden;
  transition: all var(--transition);
}
.step-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.step-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--glow-gold); }
.step-card:hover::before { opacity: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-lt));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 900; color: #fff;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: var(--glow-red);
}
.step-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.step-icon { font-size: 2rem; margin-bottom: 14px; display: block; }

/* ============================================================
   FEATURES / WHY CHOOSE
   ============================================================ */
#features { background: var(--bg-dark); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
  transform: scaleX(0); transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--glow-gold); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  font-size: 2.4rem; margin-bottom: 18px; display: block;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.5));
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 12px; color: var(--gold); }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   GAME TYPES
   ============================================================ */
#game-types { background: var(--bg-deep); }
.games-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.game-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 3/2;
  background: var(--bg-card); border: 1px solid var(--border);
  cursor: pointer; group: true;
}
.game-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.game-card:hover img { transform: scale(1.08); }
.game-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,4,8,0.95) 0%, rgba(6,4,8,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; transition: all var(--transition);
}
.game-card:hover .game-card-overlay { background: linear-gradient(to top, rgba(139,0,0,0.9) 0%, rgba(6,4,8,0.4) 60%, transparent 100%); }
.game-card-overlay h3 { font-size: 1.1rem; margin-bottom: 6px; color: #fff; }
.game-card-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin: 0 0 14px; }
.game-card-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--crimson-lt); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 50px; text-transform: uppercase;
}
.game-card-badge.live { background: var(--emerald); animation: badge-pulse 2s ease infinite; }
@keyframes badge-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(0,200,100,0.5); } 50% { box-shadow: 0 0 0 6px rgba(0,200,100,0); } }

/* ============================================================
   YOUTUBE EMBED
   ============================================================ */
#youtube-section { background: var(--bg-dark); }
.youtube-wrap {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
}
.youtube-embed-container {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; border: 2px solid var(--border);
  box-shadow: 0 0 40px rgba(139,0,0,0.3);
}
.youtube-embed-container::before {
  content: ''; display: block; padding-top: 56.25%;
}
.youtube-embed-container iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.youtube-content .eyebrow {
  display: block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.youtube-content h2 { margin-bottom: 18px; }
.youtube-content p { color: var(--text-muted); margin-bottom: 16px; }
.youtube-meta { display: flex; gap: 24px; margin-top: 28px; }
.youtube-meta-item { text-align: center; }
.youtube-meta-item strong { display: block; font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--gold); }
.youtube-meta-item span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
#reviews { background: var(--bg-deep); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 24px;
  transition: all var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--glow-gold); }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.review-text::before { content: '"'; font-size: 2rem; color: var(--crimson-lt); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-weight: 700; color: #fff; font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.92rem; }
.reviewer-location { font-size: 0.78rem; color: var(--text-muted); }
.review-verified {
  position: absolute; top: 16px; right: 16px;
  font-size: 0.68rem; color: var(--emerald); background: rgba(0,200,100,0.1);
  border: 1px solid rgba(0,200,100,0.2); border-radius: 50px; padding: 3px 8px;
  font-weight: 700; letter-spacing: 0.06em;
}

/* ============================================================
   FAQ SECTION (on index - no FAQPage schema)
   ============================================================ */
#faq { background: var(--bg-dark); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; gap: 16px;
  font-weight: 600; font-size: 0.95rem; color: var(--text-main);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(212,175,55,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--bg-deep); transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 22px;
}
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* ============================================================
   MAP SECTION
   ============================================================ */
#map-section { background: var(--bg-deep); }
.map-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
}
.map-embed {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 0 40px rgba(212,175,55,0.1);
  aspect-ratio: 4/3;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-content h2 { margin-bottom: 16px; }
.map-content p { color: var(--text-muted); margin-bottom: 20px; }
.map-address {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; gap: 14px; align-items: flex-start;
}
.map-address-icon { font-size: 1.5rem; flex-shrink: 0; color: var(--gold); }
.map-address p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.map-address strong { display: block; color: var(--text-main); margin-bottom: 4px; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding: 100px 0 0;
  background: var(--bg-dark);
}
.breadcrumb-list {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; flex-wrap: wrap;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
.breadcrumb-list li a { color: var(--text-muted); }
.breadcrumb-list li a:hover { color: var(--gold); }
.breadcrumb-list li:last-child { color: var(--gold); }
.breadcrumb-sep { color: var(--border); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 130px 0 80px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card2) 100%);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(139,0,0,0.2), transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero-content .eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; padding: 6px 16px;
  border: 1px solid var(--border); border-radius: 50px;
}
.page-hero-content h1 { margin-bottom: 16px; }
.page-hero-content p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.content-block { margin-bottom: 60px; }
.content-block h2 { margin-bottom: 20px; color: var(--gold); }
.content-block h3 { margin-bottom: 14px; font-size: 1.2rem; }
.content-block p { color: var(--text-muted); }
.content-block ul { padding-left: 0; display: flex; flex-direction: column; gap: 10px; }
.content-block ul li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text-muted); font-size: 0.95rem; padding-left: 4px;
}
.content-block ul li::before { content: '⚡'; color: var(--gold); flex-shrink: 0; }

.info-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 24px 28px; margin: 28px 0;
}
.info-box.info-red { border-left-color: var(--crimson-lt); }
.info-box.info-green { border-left-color: var(--emerald); }
.info-box h4 { color: var(--gold); margin-bottom: 8px; }
.info-box.info-red h4 { color: var(--crimson-lt); }
.info-box.info-green h4 { color: var(--emerald); }
.info-box p { color: var(--text-muted); margin: 0; }

.comparison-table {
  width: 100%; border-collapse: collapse; margin: 30px 0;
  font-size: 0.9rem;
}
.comparison-table th {
  background: var(--crimson); color: #fff;
  padding: 14px 18px; text-align: left;
  font-family: 'Cinzel', serif;
}
.comparison-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.comparison-table tr:hover td { background: rgba(212,175,55,0.05); color: var(--text-main); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: linear-gradient(180deg, var(--bg-card2), #040206);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px; margin-bottom: 50px;
}
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 0.9rem; color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.1); transform: translateY(-3px); }

.footer-col h4 {
  font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--gold);
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.1em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; color: var(--text-muted);
  transition: all var(--transition); display: inline-flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.footer-disclaimer {
  background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius); padding: 14px 18px; margin-bottom: 30px;
}
.footer-disclaimer p { font-size: 0.75rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Responsible gambling */
.rg-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.rg-badge {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 6px 12px;
  font-size: 0.72rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 5px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   FLOATING BADGE
   ============================================================ */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  animation: float-bob 3s ease infinite;
}
@keyframes float-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .youtube-wrap { grid-template-columns: 1fr; }
  .map-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--glass); backdrop-filter: blur(16px); padding: 16px; gap: 4px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta-desktop { display: none; }
  #site-header { position: fixed; }
  .hero-content { padding: 0 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .games-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.hidden { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* ============================================================
   ADDITIONAL / FIX STYLES
   ============================================================ */

/* Inner-page content + sidebar layout */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}
.inner-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

@media (max-width: 1024px) {
  .content-layout,
  .inner-sidebar-layout {
    grid-template-columns: 1fr;
  }
  .content-layout aside,
  .inner-sidebar-layout aside {
    position: static !important;
  }
}

/* Fix about-grid image column on about page */
.about-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: block;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr !important;
  }
  .about-img-accent {
    display: none;
  }
}

/* Fix hero slide background coverage */
.hero-slide {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Inner page sidebar sticky fix */
@media (max-width: 1024px) {
  [style*="grid-template-columns:1fr 340px"],
  [style*="grid-template-columns:1fr 360px"],
  [style*="grid-template-columns: 1fr 340px"],
  [style*="grid-template-columns: 1fr 360px"] {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* Ensure hero has minimum height on all devices */
#hero { min-height: 100svh; }
@media (max-width: 768px) {
  #hero { min-height: 100dvh; }
  .hero-content { padding: 0 20px; margin-top: 60px; }
  .hero-title { font-size: 1.9rem; }
}

/* Ensure comparison table scrolls on mobile */
.comparison-table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table table { min-width: 500px; }

/* Fix floating CTA on mobile */
@media (max-width: 480px) {
  .float-cta { bottom: 14px; right: 14px; padding: 11px 18px; font-size: 0.8rem; }
}

/* Fix live banner ticker overflow */
#live-banner { overflow: hidden; }
.live-ticker { display: flex; width: max-content; }

/* ─── Page hero background image support ─────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero[style*="background-image"] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ─── Mobile nav fix — prevent flash of unstyled nav ─────── */
@media (min-width: 769px) {
  .nav-links { display: flex !important; }
}
@media (max-width: 768px) {
  .nav-links:not(.open) { display: none !important; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(13,8,16,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--border);
    z-index: 800;
  }
  .nav-links a { padding: 12px 16px; font-size: 0.9rem; }
  .nav-cta-desktop { display: none !important; }
}

/* ─── Steps grid connector line — hide on mobile ─────────── */
@media (max-width: 768px) {
  .steps-grid::before { display: none; }
  .steps-grid { gap: 20px; }
}

/* ─── Smooth image loading ───────────────────────────────── */
img { image-rendering: auto; }
img[loading="lazy"] { background: var(--bg-card); }

/* ─── General grid responsive fixes ─────────────────────── */
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .games-grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .youtube-meta { gap: 16px; }
  .stat-num { font-size: 1.6rem; }
}

/* ─── Comparison table mobile ────────────────────────────── */
@media (max-width: 600px) {
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
}
