/* =============================================
   ZONE ONLINE CASINO — styles.css
   Dark luxury theme | Mobile-first
   ============================================= */

/* ─── CSS Variables ─── */
:root {
  --gold: #FFD700;
  --gold-light: #FFE566;
  --gold-dark: #C8A800;
  --red: #E8192C;
  --red-dark: #B50F1F;
  --green: #00C853;
  --bg-dark: #0A0A0F;
  --bg-mid: #12121A;
  --bg-card: #1A1A28;
  --bg-card-hover: #22223A;
  --border: rgba(255,215,0,0.15);
  --border-bright: rgba(255,215,0,0.4);
  --text-primary: #FFFFFF;
  --text-secondary: #B8B8CC;
  --text-muted: #787890;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-gold: 0 0 30px rgba(255,215,0,0.2);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-height: 70px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

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

ul { list-style: none; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  min-height: 48px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0A0A0F;
  box-shadow: 0 4px 20px rgba(255,215,0,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 40px rgba(255,215,0,0.5);
  color: #0A0A0F;
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-nav {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  padding: 10px 20px;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(232,25,44,0.4);
}
.btn-nav:hover { box-shadow: 0 6px 25px rgba(232,25,44,0.6); color: #fff; }

.btn-play {
  background: var(--gold);
  color: #0A0A0F;
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 50px;
}

.btn-outline-sm {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 8px 18px;
  font-size: 0.8rem;
  border-radius: 50px;
  min-height: 36px;
}
.btn-outline-sm:hover {
  background: var(--gold);
  color: #0A0A0F;
}

.btn-large { padding: 18px 36px; font-size: 1.05rem; }

.btn-cta-final {
  background: linear-gradient(135deg, var(--gold) 0%, #FF8C00 100%);
  color: #0A0A0F;
  font-size: 1.1rem;
  padding: 20px 40px;
  box-shadow: 0 6px 40px rgba(255,215,0,0.5);
  animation: pulseCta 2s ease-in-out infinite;
}
@keyframes pulseCta {
  0%,100% { box-shadow: 0 6px 40px rgba(255,215,0,0.5); }
  50% { box-shadow: 0 6px 60px rgba(255,215,0,0.8); }
}

/* ─── Section Utilities ─── */
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
  border: 1px solid var(--border-bright);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label.center { display: block; text-align: center; }

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.section-title.center { text-align: center; }

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 48px;
}
.section-desc.center { text-align: center; margin-left: auto; margin-right: auto; }

.highlight {
  background: linear-gradient(135deg, var(--gold), #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Reveal Animations ─── */
.reveal-section { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-section.visible { opacity: 1; transform: translateY(0); }
.reveal-card { opacity: 0; transform: translateY(30px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-card.visible { opacity: 1; transform: translateY(0); }

/* ─── NAVBAR ─── */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

.navbar {
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  height: var(--nav-height);
  display: flex;
  align-items: center;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary) !important;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.6rem; }
.logo-text { color: #fff; }
.logo-text strong { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.nav-link {
  color: var(--text-secondary);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold); background: rgba(255,215,0,0.08); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: none;
  border: 2px solid var(--border-bright);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,25,44,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,215,0,0.08) 0%, transparent 50%),
              var(--bg-dark);
  padding: calc(var(--nav-height) + 40px) 20px 80px;
}

.hero-bg-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,0.7) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(232,25,44,0.2), rgba(232,25,44,0.05));
  border: 1px solid rgba(232,25,44,0.4);
  color: #FF6B80;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.hero-title-main {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-title-brand {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.05;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 60%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.3));
}
.hero-title-sub {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-secondary);
}
.hero-title-sub em { font-style: normal; color: var(--gold); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-desc strong { color: var(--text-primary); }

/* Countdown Timer */
.hero-timer {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(232,25,44,0.1);
  border: 1px solid rgba(232,25,44,0.3);
  padding: 16px 24px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.timer-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: #FF6B80;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.timer-boxes {
  display: flex;
  align-items: center;
  gap: 8px;
}
.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(232,25,44,0.2);
  border-radius: 8px;
  padding: 8px 16px;
  min-width: 60px;
}
.timer-box span {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}
.timer-box small {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.timer-sep {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold);
}
.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-image-wrap {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  z-index: 1;
  opacity: 0.85;
}
.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 80px rgba(255,215,0,0.15), 0 0 0 1px var(--border);
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-family: var(--font-head);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%,100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* Hero entrance animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.animate-hero-img {
  animation: heroImgIn 1s ease 0.5s both;
}
@keyframes heroImgIn {
  from { opacity: 0; transform: translateY(-50%) translateX(40px); }
  to { opacity: 0.85; transform: translateY(-50%) translateX(0); }
}

/* Floating particles */
.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
  pointer-events: none;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: linear-gradient(90deg, rgba(255,215,0,0.08) 0%, rgba(255,215,0,0.04) 50%, rgba(255,215,0,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
  overflow: hidden;
}
.trust-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 36px;
}
.trust-item {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-item strong { color: var(--gold); }

/* ─── DIFFERENCE SECTION ─── */
.difference-section {
  padding: 100px 20px;
  background: var(--bg-mid);
}
.section-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.diff-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.diff-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  border: 1px solid var(--border);
}
.diff-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0A0A0F;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}
.diff-content-col h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  line-height: 1.25;
}
.diff-content-col p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1rem;
}
.diff-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.diff-list li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 12px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.diff-list li:hover { background: var(--bg-card-hover); transform: translateX(4px); }
.diff-list li strong { color: var(--text-primary); }

/* ─── GAMES SECTION ─── */
.games-section {
  padding: 100px 20px;
  background: var(--bg-dark);
}
.games-container { max-width: 1280px; margin: 0 auto; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.game-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-mid);
}
.game-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}
.game-card:hover .game-img-wrap img { transform: scale(1.07); }

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }

.game-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 50px;
}

.game-info {
  padding: 20px;
}
.game-info h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.game-info p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

.games-cta { text-align: center; margin-top: 16px; }

/* ─── FEATURED GAME ─── */
.featured-game {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(255,215,0,0.06) 0%, var(--bg-mid) 50%, rgba(232,25,44,0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.featured-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.featured-content h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  line-height: 1.25;
}
.featured-content p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.featured-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.featured-list li { color: var(--text-secondary); font-size: 0.95rem; }
.featured-list li strong { color: var(--text-primary); }
.featured-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  border: 1px solid var(--border);
  animation: heroFloat 5s ease-in-out infinite;
}

/* ─── SECURITY SECTION ─── */
.security-section {
  padding: 100px 20px;
  background: var(--bg-dark);
}
.security-container { max-width: 1180px; margin: 0 auto; }
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.security-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.security-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.sec-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.security-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.security-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.security-img-wrap { text-align: center; }
.security-img-wrap img {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

/* ─── REVIEWS SECTION ─── */
.reviews-section {
  padding: 100px 20px;
  background: var(--bg-mid);
}
.reviews-container { max-width: 1180px; margin: 0 auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.review-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.review-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.review-stars { font-size: 1.1rem; margin-bottom: 16px; }
.review-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.review-text strong { color: var(--text-primary); }
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: #0A0A0F;
  flex-shrink: 0;
}
.review-meta strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.review-meta span { color: var(--text-muted); font-size: 0.85rem; }

/* ─── FAQ SECTION ─── */
.faq-section {
  padding: 100px 20px;
  background: var(--bg-dark);
}
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }

.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg-card); }
.faq-item.open { border-color: var(--border-bright); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  transition: var(--transition);
  min-height: 64px;
}
.faq-question:hover { color: var(--gold); }
.faq-question span:first-child { flex: 1; }

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-cta { text-align: center; }

/* ─── FINAL CTA SECTION ─── */
.final-cta-section {
  position: relative;
  padding: 120px 20px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.12) 0%, transparent 70%),
              radial-gradient(ellipse at 20% 100%, rgba(232,25,44,0.1) 0%, transparent 60%),
              var(--bg-mid);
  overflow: hidden;
  text-align: center;
}
.final-cta-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.final-cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(232,25,44,0.2), rgba(232,25,44,0.05));
  border: 1px solid rgba(232,25,44,0.4);
  color: #FF6B80;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.final-cta-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold), #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-cta-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.final-cta-desc strong { color: var(--text-primary); }
.final-cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.final-cta-features span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
}
.final-cta-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 16px;
}

/* Floating casino icons */
.floating-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.float-card {
  position: absolute;
  font-size: 2rem;
  opacity: 0.08;
  animation: floatAround linear infinite;
}
.fc1 { left: 5%; top: 10%; animation-duration: 8s; font-size: 3rem; }
.fc2 { left: 15%; bottom: 15%; animation-duration: 11s; }
.fc3 { right: 10%; top: 20%; animation-duration: 9s; font-size: 2.5rem; }
.fc4 { right: 20%; bottom: 10%; animation-duration: 13s; }
.fc5 { left: 50%; top: 5%; animation-duration: 10s; font-size: 2.5rem; }
.fc6 { left: 30%; bottom: 5%; animation-duration: 7s; }

@keyframes floatAround {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

/* ─── FOOTER ─── */
.site-footer {
  background: #060609;
  border-top: 1px solid var(--border);
  padding: 60px 20px 0;
}
.footer-container { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 16px; line-height: 1.6; }
.footer-links h4, .footer-games h4, .footer-contact h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul li, .footer-games ul li {
  margin-bottom: 10px;
}
.footer-links a, .footer-games a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover, .footer-games a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact a { color: var(--gold); }

.footer-bottom {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-bottom > p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}
.footer-bottom > p strong { color: #FF6B80; }
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal span { color: var(--text-muted); font-size: 0.8rem; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: var(--text-muted); font-size: 0.8rem; transition: var(--transition); }
.footer-legal-links a:hover { color: var(--gold); }

/* ─── SCROLL TO TOP ─── */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0A0A0F;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(255,215,0,0.6); }

/* ─── PURCHASE POPUP ─── */
.purchase-popup {
  position: fixed;
  bottom: -100px;
  left: 16px;
  right: 16px;
  max-width: 380px;
  z-index: 800;
  transition: bottom 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.purchase-popup.show { bottom: 90px; }
@media (min-width: 480px) {
  .purchase-popup { right: auto; }
  .purchase-popup.show { bottom: 90px; }
}

.purchase-popup-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), var(--shadow-gold);
  position: relative;
}
.popup-game-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.popup-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex: 1;
  line-height: 1.4;
}
.popup-text strong { color: var(--gold); }
.popup-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.popup-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ─── EXIT POPUP ─── */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}
.exit-popup-overlay.show { opacity: 1; visibility: visible; }

.exit-popup-box {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-gold), var(--shadow-card);
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.exit-popup-overlay.show .exit-popup-box { transform: scale(1) translateY(0); }

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.exit-popup-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

.exit-popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(232,25,44,0.2), rgba(232,25,44,0.05));
  border: 1px solid rgba(232,25,44,0.4);
  color: #FF6B80;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.exit-popup-box h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  line-height: 1.3;
  margin-bottom: 14px;
}
.exit-popup-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.exit-popup-box p strong { color: var(--text-primary); }
.exit-popup-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.exit-popup-features span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: var(--bg-mid);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
}
.exit-claim-btn { width: 100%; max-width: 400px; }
.exit-dismiss {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  transition: var(--transition);
}
.exit-dismiss:hover { color: var(--text-secondary); }

/* ─── PREFERS REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── MOBILE RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-image-wrap { width: 40%; right: -2%; opacity: 0.5; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  /* Navbar mobile */
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10,10,15,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 1rem; }
  .btn-nav { text-align: center; margin: 8px 0 4px; padding: 14px; border-radius: var(--radius-sm); }

  /* Hero */
  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 32px) 20px 60px;
    text-align: center;
  }
  .hero-container { text-align: center; }
  .hero-image-wrap { display: none; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-timer { margin-left: auto; margin-right: auto; }

  /* Sections */
  .section-container { grid-template-columns: 1fr; gap: 40px; }
  .featured-container { grid-template-columns: 1fr; gap: 40px; }
  .featured-image { order: -1; }
  .diff-img-wrap { max-width: 400px; margin: 0 auto; }
  .diff-img-badge { bottom: -12px; right: 0; }

  .games-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-legal { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal-links { justify-content: center; }

  .purchase-popup.show { bottom: 16px; }

  .exit-popup-box { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .games-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .trust-container { gap: 12px 20px; }
  .final-cta-features { flex-direction: column; align-items: center; }
}
