/* ============================================================
   PENN PLAY CASINO — styles.css
   Fonts: Montserrat (headings) + Open Sans (body)
   Theme: Dark luxury casino — gold accents on deep navy/black
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --gold:        #FFD700;
  --gold-light:  #FFE566;
  --gold-dark:   #C9A800;
  --red:         #E63946;
  --red-dark:    #C1121F;
  --navy:        #0A0E1A;
  --navy-2:      #0D1426;
  --navy-3:      #131B2E;
  --card-bg:     #111827;
  --card-border: rgba(255,215,0,0.12);
  --text:        #E8EAF0;
  --text-muted:  #8B95A8;
  --white:       #FFFFFF;
  --green:       #22C55E;
  --radius:      14px;
  --radius-lg:   20px;
  --shadow:      0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 24px rgba(255,215,0,0.18);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::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(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  min-height: 48px;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(255,215,0,0.35);
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(255,215,0,0.55); color: var(--navy); }
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-secondary:hover { background: rgba(255,215,0,0.1); transform: scale(1.03); color: var(--gold); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), #FF8C00);
  color: var(--navy);
  padding: 18px 40px;
  font-size: 1.05rem;
  box-shadow: 0 6px 32px rgba(255,140,0,0.45);
  border-radius: 50px;
}
.btn-hero-primary:hover { transform: scale(1.06); box-shadow: 0 10px 40px rgba(255,140,0,0.65); color: var(--navy); }
.btn-hero-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.btn-gold {
  background: linear-gradient(135deg, #FFD700, #C9A800);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}
.btn-gold:hover { transform: scale(1.05); color: var(--navy); }
.btn-play {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
}
.btn-demo {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-xl { padding: 22px 56px; font-size: 1.15rem; }

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  background: linear-gradient(90deg, var(--red-dark), #9B1C2A, var(--red-dark));
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.4px;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,215,0,0.1);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(10,14,26,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.navbar { padding: 0; }
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 2px;
}
.logo-accent { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); background: rgba(255,215,0,0.08); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--navy-2);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 0 24px;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(255,215,0,0.12);
    z-index: 800;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 14px 24px; border-radius: 0; font-size: 1rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,140,0,0.12) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 80%, rgba(230,57,70,0.1) 0%, transparent 55%),
              var(--navy);
  z-index: 0;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow.glow-1 {
  width: 600px; height: 600px;
  background: rgba(255,140,0,0.14);
  top: -200px; left: -100px;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow.glow-2 {
  width: 400px; height: 400px;
  background: rgba(230,57,70,0.12);
  bottom: -100px; right: -50px;
  animation: glowPulse 8s ease-in-out infinite reverse;
}
@keyframes glowPulse { 0%,100%{opacity:0.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.08)} }

.hero-chips { position: absolute; inset: 0; pointer-events: none; }
.chip {
  position: absolute;
  font-size: 2.4rem;
  animation: floatChip 7s ease-in-out infinite;
  opacity: 0.22;
}
.chip-1 { top: 15%; left: 6%; animation-delay: 0s; }
.chip-2 { top: 25%; right: 8%; animation-delay: 1.2s; }
.chip-3 { top: 60%; left: 4%; animation-delay: 2.4s; }
.chip-4 { bottom: 20%; right: 12%; animation-delay: 0.6s; }
.chip-5 { bottom: 35%; left: 12%; animation-delay: 3s; }
.chip-6 { top: 45%; right: 5%; animation-delay: 1.8s; }
@keyframes floatChip {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-18px) rotate(12deg); }
  66% { transform: translateY(8px) rotate(-8deg); }
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.title-highlight {
  background: linear-gradient(90deg, var(--gold), #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--text); }

/* Timer */
.hero-timer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.3);
  padding: 12px 24px;
  border-radius: 12px;
  margin-bottom: 28px;
}
.timer-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
}
.timer-display { display: flex; align-items: center; gap: 6px; }
.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--red);
  color: white;
  border-radius: 8px;
  padding: 6px 14px;
  min-width: 52px;
}
.timer-unit span {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1;
}
.timer-unit small { font-size: 0.6rem; letter-spacing: 1px; font-family: var(--font-head); font-weight: 700; }
.timer-sep { font-family: var(--font-head); font-weight: 900; font-size: 1.4rem; color: var(--red); }

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-indicator span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,215,0,0.35);
  border-radius: 11px;
  position: relative;
}
.scroll-indicator span::after {
  content: '';
  display: block;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 1.8s infinite;
}
@keyframes scrollBounce { 0%,100%{opacity:1;top:5px} 50%{opacity:0;top:16px} }

/* ============================================================
   ANIMATIONS (fade-in-up, reveal)
   ============================================================ */
.fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.75s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in-up, .reveal, .chip, .hero-glow { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(90deg, var(--navy-3), var(--navy-2), var(--navy-3));
  border-top: 1px solid rgba(255,215,0,0.12);
  border-bottom: 1px solid rgba(255,215,0,0.12);
  padding: 32px 20px;
}
.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 10px; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-plus { font-size: 0.75em; vertical-align: super; }
.stat-label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .stats-container { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header p strong { color: var(--text); }
.section-cta { text-align: center; margin-top: 44px; }

/* ============================================================
   FILTER TABS
   ============================================================ */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  min-height: 44px;
}
.tab-btn:hover { color: var(--gold); border-color: rgba(255,215,0,0.3); }
.tab-btn.active { background: rgba(255,215,0,0.12); color: var(--gold); border-color: var(--gold); }

/* ============================================================
   GAMES GRID
   ============================================================ */
.games-section { background: var(--navy); padding: 0; }
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.game-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.game-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.55), var(--shadow-gold); border-color: rgba(255,215,0,0.35); }
.game-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}
.new-badge { background: linear-gradient(135deg, #0EA5E9, #0369A1) !important; }
.hot-badge { background: linear-gradient(135deg, #F97316, #EA580C) !important; }
.vip-badge { background: linear-gradient(135deg, #A855F7, #7C3AED) !important; }
.game-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.game-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .game-img-wrap img { transform: scale(1.06); }
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(3px);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-info { padding: 14px 16px 16px; }
.game-info h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 6px;
}
.game-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.game-rtp {
  margin-top: 6px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
}
.game-card.hidden { display: none; }

@media (max-width: 1000px) { .games-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .games-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LIVE DEALER
   ============================================================ */
.live-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-2);
  padding: 0;
}
.live-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 100% 50%, rgba(230,57,70,0.08) 0%, transparent 60%); }
.live-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(230,57,70,0.1);
  border-radius: 50%;
  filter: blur(80px);
  top: 50%; right: -150px;
  transform: translateY(-50%);
  animation: glowPulse 6s ease-in-out infinite;
}
.live-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.live-content .section-tag { margin-bottom: 16px; display: block; }
.live-tag { background: rgba(230,57,70,0.12); border-color: rgba(230,57,70,0.3); color: var(--red); }
.live-content h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 18px;
}
.live-content p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 24px; }
.live-content p strong { color: var(--text); }
.live-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.live-features li {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-images { display: flex; flex-direction: column; gap: 14px; }
.live-img-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.live-img-main img { width: 100%; height: 260px; object-fit: cover; }
.live-badge-card {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1s infinite;
}
.live-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.live-img-grid img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--radius); }

@media (max-width: 900px) {
  .live-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   VIP SECTION
   ============================================================ */
.vip-section { background: var(--navy); }
.vip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vip-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.vip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.vip-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1a1a2e, var(--card-bg));
  box-shadow: 0 0 30px rgba(255,215,0,0.12);
}
.vip-crown {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.vip-icon { font-size: 2.4rem; margin-bottom: 14px; }
.vip-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.vip-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 18px; }
.vip-points {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(255,215,0,0.08);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
}

@media (max-width: 900px) { .vip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .vip-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses-section { position: relative; overflow: hidden; background: var(--navy-2); }
.bonus-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255,140,0,0.07) 0%, transparent 60%);
}
.bonuses-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
}
.bonus-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.bonus-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.bonus-main {
  border-color: rgba(255,140,0,0.4);
  background: linear-gradient(160deg, rgba(255,140,0,0.06), var(--card-bg));
  box-shadow: 0 0 30px rgba(255,140,0,0.1);
}
.bonus-ribbon {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF8C00, #E63946);
  color: white;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.bonus-icon { font-size: 2.4rem; margin-bottom: 14px; }
.bonus-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.bonus-amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}
.bonus-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }

@media (max-width: 1000px) { .bonuses-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .bonuses-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TOURNAMENTS
   ============================================================ */
.tournaments-section { background: var(--navy); }
.tournaments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tournament-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--transition);
}
.tournament-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.t-status {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.live-status   { background: rgba(230,57,70,0.15); color: var(--red); border: 1px solid rgba(230,57,70,0.3); }
.soon-status   { background: rgba(255,165,0,0.12); color: #FFA500; border: 1px solid rgba(255,165,0,0.25); }
.monthly-status{ background: rgba(168,85,247,0.12); color: #A855F7; border: 1px solid rgba(168,85,247,0.25); }
.tournament-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.tournament-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 18px; }
.t-prize {
  font-family: var(--font-head);
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 6px;
}
.t-prize strong { color: var(--gold); }
.t-ends { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 20px; }

@media (max-width: 800px) { .tournaments-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section { background: var(--navy-3); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-5px); border-color: rgba(255,215,0,0.3); box-shadow: var(--shadow-gold); }
.why-icon { font-size: 2.4rem; margin-bottom: 14px; }
.why-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.why-card p strong { color: var(--text); }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--navy); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-featured { border-color: rgba(255,215,0,0.35); box-shadow: 0 0 24px rgba(255,215,0,0.1); }
.review-stars { font-size: 1rem; margin-bottom: 14px; }
.review-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-card p strong { color: var(--text); }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.reviewer div { display: flex; flex-direction: column; gap: 2px; }
.reviewer strong { color: var(--white); font-size: 0.9rem; }
.reviewer span { font-size: 0.78rem; color: var(--text-muted); }
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.rating-score {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--gold);
}
.rating-text { display: flex; flex-direction: column; gap: 3px; }
.rating-text strong { color: var(--white); font-family: var(--font-head); }
.rating-text span { font-size: 0.82rem; color: var(--text-muted); }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--navy-2); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(255,215,0,0.3); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  min-height: 64px;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a div { padding: 0 22px 20px; }
.faq-a p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.faq-a p strong { color: var(--text); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  text-align: center;
  padding: 0;
}
.cta-particles { position: absolute; inset: 0; overflow: hidden; }
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-glow-1 {
  width: 700px; height: 700px;
  background: rgba(255,140,0,0.12);
  top: -200px; left: -150px;
  animation: glowPulse 7s infinite;
}
.cta-glow-2 {
  width: 500px; height: 500px;
  background: rgba(230,57,70,0.1);
  bottom: -150px; right: -100px;
  animation: glowPulse 9s infinite reverse;
}
.cta-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-chips-anim {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 1.8rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.cta-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1.15;
  margin: 14px 0 18px;
}
.cta-sub { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 28px; }
.cta-sub strong { color: var(--text); }
.cta-timer-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.25);
  padding: 12px 28px;
  border-radius: 14px;
  margin-bottom: 32px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  flex-wrap: wrap;
  justify-content: center;
}
.cta-buttons { margin-bottom: 28px; }
.cta-pulse { animation: pulseCta 2.2s ease-in-out infinite; }
@keyframes pulseCta { 0%,100%{box-shadow:0 6px 32px rgba(255,140,0,0.45)} 50%{box-shadow:0 6px 52px rgba(255,140,0,0.75),0 0 60px rgba(255,215,0,0.3)} }
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #06090F;
  border-top: 1px solid rgba(255,215,0,0.1);
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 60px 20px 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.65; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badges span {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 20px;
}
.footer-links h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
}
.disclaimer {
  margin-top: 12px;
  padding: 14px 20px;
  background: rgba(255,165,0,0.05);
  border: 1px solid rgba(255,165,0,0.12);
  border-radius: 10px;
  font-size: 0.78rem !important;
  text-align: center;
}
.disclaimer strong { color: var(--text); }

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
  z-index: 700;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(255,215,0,0.6); }

/* ============================================================
   NOTIFICATION POPUP
   ============================================================ */
.notif-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--card-bg);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  z-index: 800;
  max-width: 320px;
  transform: translateX(-120%);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  backdrop-filter: blur(12px);
}
.notif-popup.show { transform: translateX(0); }
.notif-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notif-content { flex: 1; min-width: 0; }
.notif-content strong { display: block; font-family: var(--font-head); font-size: 0.85rem; color: var(--white); margin-bottom: 2px; }
.notif-content span { font-size: 0.8rem; color: var(--text-muted); display: block; }
.notif-content small { font-size: 0.72rem; color: var(--text-muted); display: block; margin-top: 2px; }
.notif-close {
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 6px;
  flex-shrink: 0;
}
.notif-close:hover { color: var(--white); }

/* Mobile: bottom-full-width notification */
@media (max-width: 500px) {
  .notif-popup {
    left: 12px; right: 12px;
    max-width: calc(100% - 24px);
    bottom: 80px;
  }
}

/* ============================================================
   EXIT POPUP
   ============================================================ */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-popup-overlay.show { opacity: 1; pointer-events: all; }
.exit-popup {
  background: linear-gradient(160deg, #111827, #0D1426);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7), 0 0 60px rgba(255,215,0,0.08);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.exit-popup-overlay.show .exit-popup { transform: scale(1); }
.exit-close {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 1.6rem;
  color: var(--text-muted);
  padding: 4px 8px;
  min-width: 36px; min-height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.exit-close:hover { color: var(--white); }
.exit-icon { font-size: 3.2rem; margin-bottom: 16px; animation: float 2.5s infinite; }
.exit-popup h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: var(--white);
  margin-bottom: 14px;
}
.exit-popup p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; }
.exit-popup p strong { color: var(--text); }
.exit-offer { margin-bottom: 26px; }
.exit-tag {
  display: inline-block;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.3);
  color: var(--red);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 30px;
}
.exit-cta { width: 100%; justify-content: center; margin-bottom: 16px; }
.exit-decline {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
}
.exit-decline:hover { color: var(--text); }

/* ============================================================
   MINI POPUP (delayed)
   ============================================================ */
.mini-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--card-bg);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 14px;
  padding: 14px 16px;
  z-index: 750;
  max-width: 360px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  transform: translateY(120%);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  backdrop-filter: blur(12px);
}
.mini-popup.show { transform: translateY(0); }
.mini-close {
  position: absolute;
  top: 8px; right: 10px;
  font-size: 1.1rem;
  color: var(--text-muted);
  padding: 4px;
  min-width: 32px; min-height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.mini-close:hover { color: var(--white); }
.mini-content {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 16px;
}
.mini-icon { font-size: 1.8rem; flex-shrink: 0; }
.mini-content div { flex: 1; }
.mini-content strong { display: block; font-family: var(--font-head); font-size: 0.9rem; color: var(--white); margin-bottom: 3px; }
.mini-content p { font-size: 0.8rem; color: var(--text-muted); }

@media (max-width: 500px) {
  .mini-popup { left: 12px; right: 12px; max-width: none; bottom: 80px; }
  .scroll-top { bottom: 24px; right: 16px; width: 52px; height: 52px; }
}

/* ============================================================
   TOUCH FEEDBACK (mobile)
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
  .btn:active { transform: scale(0.97); }
  .game-card:active { transform: scale(0.98); }
}
