/* =========================================
   BIGWIN29 — Premium Casino CSS
   Design: Dark Obsidian x Liquid Gold
   ========================================= */

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

:root {
  --gold: #FFD700;
  --gold-light: #FFE966;
  --gold-dark: #CC8800;
  --gold-dim: rgba(255,215,0,0.18);
  --amber: #FF8C00;
  --red: #C0392B;
  --bg-void: #04040C;
  --bg-deep: #07071A;
  --bg-card: rgba(14,14,36,0.92);
  --bg-glass: rgba(255,215,0,0.06);
  --text-bright: #F5F0E0;
  --text-muted: #9090B0;
  --border-gold: rgba(255,215,0,0.35);
  --shadow-gold: 0 0 30px rgba(255,215,0,0.25);
  --shadow-glow: 0 0 60px rgba(255,215,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::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-void);
  color: var(--text-bright);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── CANVAS PARTICLES ── */
#particle-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.5;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--gold); color: var(--bg-void); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  line-height: 1.25;
  letter-spacing: 0.03em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { position: relative; z-index: 1; padding: 90px 0; }
.section--tight { padding: 60px 0; }

/* ── GOLD DIVIDER ── */
.gold-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
  max-width: 600px;
}

/* ── SECTION TITLE ── */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  color: var(--text-bright);
  margin-bottom: 16px;
}
.section-title h2 span { color: var(--gold); }
.section-title p { color: var(--text-muted); max-width: 640px; margin: 0 auto 20px; font-size: 1.05rem; }

/* ──────────────────────────────────────
   NAV
────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 32px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(4, 4, 12, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-gold);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: rgba(4, 4, 12, 0.98);
  box-shadow: 0 2px 30px rgba(255,215,0,0.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 50%; right: 50%;
  height: 2px; background: var(--gold);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { left: 12px; right: 12px; }

.nav-cta {
  display: flex; gap: 10px;
}

.btn-nav-login {
  padding: 9px 22px;
  border: 1px solid var(--border-gold);
  color: var(--gold) !important;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn-nav-login:hover {
  background: var(--gold-dim);
  box-shadow: var(--shadow-gold);
}
.btn-nav-signup {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-void) !important;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(255,215,0,0.3);
}
.btn-nav-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(255,215,0,0.55);
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ──────────────────────────────────────
   HERO SLIDER
────────────────────────────────────── */
.hero-slider {
  position: relative;
  height: 100vh; min-height: 600px; max-height: 820px;
  overflow: hidden;
  margin-top: 72px;
}

.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; z-index: 2; }

.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(4,4,12,0.85) 0%,
    rgba(4,4,12,0.55) 60%,
    rgba(4,4,12,0.3) 100%);
  z-index: 1;
}

.slide-content {
  position: absolute; inset: 0;
  z-index: 3;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 8%;
  max-width: 800px;
}
.slide-content .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s 0.3s;
}
.slide.active .eyebrow { opacity: 1; transform: none; }

.slide-content h1 {
  color: var(--text-bright);
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s 0.5s;
}
.slide-content h1 span { color: var(--gold); }
.slide.active h1 { opacity: 1; transform: none; }

.slide-content p {
  font-size: 1.1rem;
  color: rgba(245,240,224,0.82);
  margin-bottom: 32px;
  max-width: 540px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s 0.7s;
}
.slide.active p { opacity: 1; transform: none; }

.slide-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s 0.9s;
}
.slide.active .slide-btns { opacity: 1; transform: none; }

/* Slider controls */
.slider-dots {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 10px;
}
.slider-dot {
  width: 32px; height: 4px;
  border-radius: 2px;
  background: rgba(255,215,0,0.3);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active { background: var(--gold); width: 52px; }

.slider-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border: 1px solid var(--border-gold);
  background: rgba(4,4,12,0.7);
  color: var(--gold);
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.slider-arrow:hover { background: var(--gold-dim); box-shadow: var(--shadow-gold); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* ──────────────────────────────────────
   BUTTONS
────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--bg-void);
  box-shadow: 0 0 24px rgba(255,215,0,0.4);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 48px rgba(255,215,0,0.65);
  color: var(--bg-void);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-gold);
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-red {
  background: linear-gradient(135deg, #8B0000, var(--red));
  color: #fff;
  box-shadow: 0 0 20px rgba(192,57,43,0.4);
}
.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(192,57,43,0.6);
  color: #fff;
}

.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── PULSE ANIMATION ── */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 24px rgba(255,215,0,0.4); }
  50% { box-shadow: 0 0 56px rgba(255,215,0,0.75); }
}
.btn-pulse { animation: pulse-glow 2.5s ease-in-out infinite; }

/* ──────────────────────────────────────
   BREADCRUMB
────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(255,215,0,0.1);
  padding: 14px 0;
  margin-top: 72px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
  list-style: none;
  color: var(--text-muted);
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li::after { content: '›'; color: var(--gold); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--gold); }

/* ──────────────────────────────────────
   STATS BAR
────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--bg-deep), rgba(12,12,30,0.98));
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 40px 0;
  position: relative; z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--border-gold);
}
.stat-item:last-child::after { display: none; }
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ──────────────────────────────────────
   GAME CARDS
────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.games-grid-6 {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.game-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.game-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,215,0,0.06), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}
.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), 0 20px 60px rgba(0,0,0,0.5);
}
.game-card:hover::before { opacity: 1; }

.game-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.game-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.game-card:hover .game-card-img img { transform: scale(1.08); }

.game-card-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold);
  color: var(--bg-void);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.game-card-body {
  padding: 20px;
  position: relative; z-index: 1;
}
.game-card-body h3 {
  font-size: 1rem;
  color: var(--text-bright);
  margin-bottom: 6px;
}
.game-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.game-card-body .btn { font-size: 0.78rem; padding: 8px 18px; }

/* Category Cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,4,12,0.92) 0%, rgba(4,4,12,0.4) 60%, transparent 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 24px;
  transition: all var(--transition);
}
.category-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}
.category-card:hover img { transform: scale(1.1); }
.category-card-overlay h3 {
  font-size: 1.1rem;
  color: var(--text-bright);
  text-align: center;
  margin-bottom: 8px;
}
.category-card-overlay .tag {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ──────────────────────────────────────
   FEATURES / WHY CHOOSE
────────────────────────────────────── */
.features-bg {
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.04) 0%, transparent 70%),
              linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  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, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  font-size: 2rem;
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  box-shadow: 0 0 30px rgba(255,215,0,0.4);
  transform: scale(1.1);
}
.feature-card h3 { font-size: 1.1rem; color: var(--text-bright); margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ──────────────────────────────────────
   PROMO BANNER
────────────────────────────────────── */
.promo-banner {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0D0500, #1A0A00, #0D0500);
  border: 1px solid rgba(255,140,0,0.3);
  padding: 60px 40px;
  text-align: center;
  margin: 0 24px;
}
.promo-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,140,0,0.12) 0%, transparent 70%);
}
.promo-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4;
}
.promo-banner-content { position: relative; z-index: 2; }
.promo-banner h2 { color: var(--gold); margin-bottom: 12px; font-size: clamp(1.8rem, 4vw, 3rem); }
.promo-banner p { color: rgba(245,240,224,0.85); max-width: 600px; margin: 0 auto 28px; font-size: 1.05rem; }

/* ──────────────────────────────────────
   REVIEWS
────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 32px rgba(255,215,0,0.1);
  transform: translateY(-4px);
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { color: var(--text-muted); font-size: 0.9rem; font-style: italic; margin-bottom: 18px; line-height: 1.7; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--bg-void);
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--text-bright); }
.review-date { font-size: 0.75rem; color: var(--text-muted); }

/* ──────────────────────────────────────
   FAQ
────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-gold); }
.faq-question {
  padding: 22px 28px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-question h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-bright);
  transition: color var(--transition);
}
.faq-item.open .faq-question h3 { color: var(--gold); }
.faq-chevron {
  width: 28px; height: 28px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.8rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 28px 24px; }

/* ──────────────────────────────────────
   BLOG
────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}
.blog-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: var(--bg-void);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.blog-card-body {
  padding: 24px;
  flex: 1; display: flex; flex-direction: column;
}
.blog-card-meta {
  font-size: 0.77rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex; gap: 14px;
}
.blog-card-body h3 {
  font-size: 1.05rem;
  color: var(--text-bright);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
}
.blog-card:hover h3 { color: var(--gold); }
.blog-card-body p { font-size: 0.86rem; color: var(--text-muted); flex: 1; margin-bottom: 18px; }
.read-more {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.blog-card:hover .read-more { gap: 10px; }

/* ──────────────────────────────────────
   VIDEO SECTION
────────────────────────────────────── */
.video-wrap {
  position: relative;
  max-width: 860px; margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255,215,0,0.2);
  border: 1px solid var(--border-gold);
}
.video-wrap iframe {
  display: block;
  width: 100%; aspect-ratio: 16/9;
}

/* ──────────────────────────────────────
   MAP SECTION
────────────────────────────────────── */
.map-wrap {
  max-width: 980px; margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 40px rgba(255,215,0,0.1);
}
.map-wrap iframe {
  display: block;
  width: 100%; height: 360px;
  border: none;
  filter: invert(90%) hue-rotate(180deg) saturate(0.4) brightness(0.85);
}

/* ──────────────────────────────────────
   PAYMENT METHODS
────────────────────────────────────── */
.payment-methods {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255,215,0,0.1);
  padding: 40px 0;
}
.payment-logos {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 24px;
}
.payment-chip {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,215,0,0.06);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}
.payment-chip:hover { border-color: var(--gold); color: var(--gold); }
.payment-chip .icon { font-size: 1.1rem; }

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-gold);
  padding: 70px 0 30px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand img { height: 50px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; max-width: 320px; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,215,0,0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
}
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,215,0,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(144,144,176,0.65);
  max-width: 700px;
  line-height: 1.6;
  text-align: center;
  margin: 20px auto 0;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold-dim); box-shadow: var(--shadow-gold); color: var(--gold-light); }

/* ──────────────────────────────────────
   SCROLL REVEAL
────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ──────────────────────────────────────
   FLOATING SIGNUP BAR
────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.floating-cta .btn {
  box-shadow: 0 8px 32px rgba(255,215,0,0.45);
  animation: float-bob 3s ease-in-out infinite;
}
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ──────────────────────────────────────
   TICKER / ANNOUNCEMENT
────────────────────────────────────── */
.ticker-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--amber), var(--gold-dark));
  background-size: 200% 100%;
  animation: ticker-gradient 4s ease infinite;
  color: var(--bg-void);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
}
@keyframes ticker-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.ticker-content {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: scroll-ticker 28s linear infinite;
}
@keyframes scroll-ticker {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}
.ticker-sep { margin: 0 28px; opacity: 0.6; }

/* ──────────────────────────────────────
   BLOG PAGE SPECIFIC
────────────────────────────────────── */
.blog-single { max-width: 860px; margin: 0 auto; }
.blog-header { margin-bottom: 40px; }
.blog-header h1 { margin-bottom: 16px; line-height: 1.3; }
.blog-meta { display: flex; gap: 20px; font-size: 0.82rem; color: var(--text-muted); }
.blog-content h2 { font-size: 1.5rem; color: var(--gold); margin: 40px 0 16px; border-left: 3px solid var(--gold); padding-left: 16px; }
.blog-content h3 { font-size: 1.2rem; color: var(--text-bright); margin: 28px 0 12px; }
.blog-content p { margin-bottom: 18px; color: rgba(245,240,224,0.85); }
.blog-content ul, .blog-content ol { margin: 0 0 18px 24px; color: rgba(245,240,224,0.85); }
.blog-content li { margin-bottom: 8px; }
.blog-content img { border-radius: var(--radius); margin: 24px 0; border: 1px solid var(--border-gold); }

/* ──────────────────────────────────────
   RESPONSIVE
────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-mobile-menu {
    position: fixed; inset: 0; top: 72px;
    background: rgba(4,4,12,0.98);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    padding: 32px 24px;
    gap: 8px;
    z-index: 999;
    border-top: 1px solid var(--border-gold);
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a {
    color: var(--text-bright);
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    display: block;
    transition: all 0.25s;
    border: 1px solid transparent;
  }
  .nav-mobile-menu a:hover { background: var(--gold-dim); border-color: var(--border-gold); color: var(--gold); }
  .nav-mobile-menu .btn-gold { display: block; text-align: center; margin-top: 12px; }

  .hero-slider { max-height: 620px; }
  .slide-content { padding: 0 5%; }
  .slider-arrow { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none; }
  .floating-cta { bottom: 16px; right: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .category-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── INNER PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--bg-void), var(--bg-deep));
  border-bottom: 1px solid var(--border-gold);
  padding: 60px 0 50px;
  text-align: center;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.07) 0%, transparent 70%);
}
.page-hero h1 { position: relative; z-index: 1; }
.page-hero p { position: relative; z-index: 1; color: var(--text-muted); max-width: 600px; margin: 16px auto 0; }

/* ── PROMOTIONS ── */
.promo-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: all var(--transition);
}
.promo-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.promo-card-badge {
  position: absolute; top: 0; right: 28px;
  background: var(--gold);
  color: var(--bg-void);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 0 10px 10px;
}
.promo-amount {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin: 12px 0 8px;
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
}
.promo-title { font-size: 1.1rem; color: var(--text-bright); font-weight: 600; margin-bottom: 10px; }
.promo-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }
.promo-terms { font-size: 0.75rem; color: rgba(144,144,176,0.5); margin-top: 10px; }
