/* ===== PIXEL REACTOR — MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Exo+2:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #7c3aed;
  --primary-light: #a855f7;
  --accent: #06b6d4;
  --accent-gold: #f59e0b;
  --bg-dark: #0a0a1a;
  --bg-card: #12122a;
  --bg-card2: #1a1a35;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --border: rgba(124,58,237,0.3);
  --glow: 0 0 20px rgba(124,58,237,0.5);
  --glow-accent: 0 0 20px rgba(6,182,212,0.5);
  --radius: 12px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Orbitron', monospace; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
p { margin-bottom: 1rem; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { color: var(--primary-light); margin-bottom: 12px; }
.section-title p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(124,58,237,0.8); color: #fff; }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #0891b2);
  color: #fff;
  box-shadow: var(--glow-accent);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(6,182,212,0.8); color: #fff; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary-light);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #d97706);
  color: #1a1a00;
  font-weight: 900;
}
.btn-gold:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 0 30px rgba(245,158,11,0.8); color: #1a1a00; }
.btn-lg { padding: 18px 48px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.75rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,26,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar-logo img { width: 40px; height: 40px; border-radius: 8px; }
.navbar-logo span {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.navbar-nav a {
  color: var(--text-muted);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition);
  font-size: 0.9rem;
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--primary-light);
  background: rgba(124,58,237,0.15);
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.navbar-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,26,0.7) 0%, rgba(124,58,237,0.2) 50%, rgba(10,10,26,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  background: rgba(124,58,237,0.3);
  border: 1px solid var(--primary);
  color: var(--primary-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: 'Orbitron', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title { color: #fff; margin-bottom: 20px; }
.hero-title span { color: var(--primary-light); }
.hero-subtitle { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 36px; max-width: 550px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  display: block;
}
.hero-stat-label { color: var(--text-muted); font-size: 0.85rem; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: all var(--transition);
}
.card:hover { border-color: var(--primary); box-shadow: var(--glow); transform: translateY(-4px); }
.card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.card-title { font-family: 'Orbitron', monospace; font-size: 1rem; color: var(--primary-light); margin-bottom: 10px; }
.card-text { color: var(--text-muted); font-size: 0.9rem; }

/* ===== GAMES GRID ===== */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.game-card:hover { border-color: var(--accent); box-shadow: var(--glow-accent); transform: translateY(-4px); }
.game-card-img { position: relative; overflow: hidden; height: 200px; }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.game-card:hover .game-card-img img { transform: scale(1.05); }
.game-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
}
.game-card-body { padding: 24px; }
.game-card-title { font-family: 'Orbitron', monospace; font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.game-card-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }

/* ===== ABOUT ===== */
.about-section { background: var(--bg-card2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--glow); }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-list { list-style: none; margin: 20px 0; }
.about-list li { padding: 8px 0; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.about-list li::before { content: '◆'; color: var(--primary-light); font-size: 0.6rem; }

/* ===== LOCATIONS ===== */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.location-card:hover { border-color: var(--accent-gold); box-shadow: 0 0 20px rgba(245,158,11,0.3); }
.location-icon { font-size: 2rem; margin-bottom: 12px; }
.location-name { font-family: 'Orbitron', monospace; font-size: 0.95rem; color: var(--accent-gold); margin-bottom: 8px; }
.location-address { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(6,182,212,0.1));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-main);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form input::placeholder { color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(124,58,237,0.2);
  border: 1px solid var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-label { font-family: 'Orbitron', monospace; font-size: 0.8rem; color: var(--primary-light); margin-bottom: 4px; }
.contact-info-value { color: var(--text-muted); font-size: 0.9rem; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 8px; font-family: 'Orbitron', monospace; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-main);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: rgba(6,182,212,0.1);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 16px;
  color: var(--accent);
  text-align: center;
  margin-top: 16px;
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-logo img { width: 36px; height: 36px; border-radius: 6px; }
.footer-brand-logo span {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }
.footer-col-title { font-family: 'Orbitron', monospace; font-size: 0.8rem; color: var(--primary-light); margin-bottom: 16px; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-text { color: var(--text-muted); font-size: 0.8rem; }
.footer-disclaimer {
  background: rgba(124,58,237,0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 30px;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ===== 18+ POPUP ===== */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-popup {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(124,58,237,0.5);
  animation: popupIn 0.4s ease;
}
@keyframes popupIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
.age-badge {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: var(--glow);
}
.age-title { font-size: 1.6rem; color: #fff; margin-bottom: 12px; }
.age-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 32px; line-height: 1.6; }
.age-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.age-buttons .btn { min-width: 160px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 20px;
  z-index: 5000;
  display: none;
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text { color: var(--text-muted); font-size: 0.85rem; flex: 1; }
.cookie-text a { color: var(--accent); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== GAME PAGES ===== */
.game-page { padding-top: 90px; min-height: 100vh; }
.game-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}
.game-title { color: var(--primary-light); margin-bottom: 8px; }
.game-subtitle { color: var(--text-muted); margin-bottom: 40px; }

/* ===== WHEEL GAME ===== */
.wheel-wrapper {
  position: relative;
  display: inline-block;
  margin: 0 auto 30px;
}
#wheelCanvas {
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(124,58,237,0.6), 0 0 80px rgba(124,58,237,0.3);
}
.wheel-pointer {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 36px solid var(--accent-gold);
  filter: drop-shadow(0 0 8px rgba(245,158,11,0.8));
  z-index: 10;
}
.wheel-result {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  color: var(--accent-gold);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wheel-score-board {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
}
.score-item { text-align: center; }
.score-num { font-family: 'Orbitron', monospace; font-size: 1.5rem; color: var(--accent-gold); }
.score-label { color: var(--text-muted); font-size: 0.8rem; }

/* ===== SLOT GAME ===== */
.slot-machine {
  background: linear-gradient(135deg, #1a0a3a, #0a1a3a);
  border: 3px solid var(--primary);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 50px rgba(124,58,237,0.4);
  margin: 0 auto 30px;
  max-width: 500px;
}
.slot-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.reel {
  width: 110px;
  height: 110px;
  background: var(--bg-dark);
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}
.reel.spinning { animation: reelSpin 0.15s linear infinite; }
@keyframes reelSpin {
  0% { transform: translateY(0); }
  25% { transform: translateY(-8px); }
  75% { transform: translateY(8px); }
  100% { transform: translateY(0); }
}
.slot-win-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: -12px 0 12px;
  opacity: 0;
  transition: opacity 0.3s;
}
.slot-win-line.active { opacity: 1; }
.slot-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
}
.slot-info-item { text-align: center; }
.slot-info-label { color: var(--text-muted); font-size: 0.7rem; font-family: 'Orbitron', monospace; }
.slot-info-value { color: var(--accent-gold); font-family: 'Orbitron', monospace; font-size: 1.1rem; font-weight: 700; }
.slot-message {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
}
.slot-paytable {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
  text-align: left;
}
.slot-paytable h4 { font-family: 'Orbitron', monospace; color: var(--primary-light); margin-bottom: 12px; font-size: 0.85rem; }
.paytable-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 0.85rem; }
.paytable-row:last-child { border-bottom: none; }
.paytable-row span:last-child { color: var(--accent-gold); font-family: 'Orbitron', monospace; }

/* ===== COIN FLIP ===== */
.coin-scene {
  perspective: 600px;
  margin: 0 auto 30px;
  width: 160px;
  height: 160px;
}
.coin {
  width: 160px;
  height: 160px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.coin-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  backface-visibility: hidden;
  border: 4px solid var(--accent-gold);
  box-shadow: 0 0 30px rgba(245,158,11,0.5);
}
.coin-heads {
  background: radial-gradient(circle at 35% 35%, #fde68a, #d97706);
}
.coin-tails {
  background: radial-gradient(circle at 35% 35%, #c4b5fd, #7c3aed);
  transform: rotateY(180deg);
}
.coin.flipping { animation: coinFlip 1.5s ease forwards; }
@keyframes coinFlip {
  0% { transform: rotateY(0); }
  50% { transform: rotateY(900deg); }
  100% { transform: rotateY(var(--final-rotation)); }
}
.coin-result-display {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin: 16px 0;
  min-height: 40px;
}
.coin-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px 0;
}
.coin-stat { text-align: center; }
.coin-stat-num { font-family: 'Orbitron', monospace; font-size: 1.8rem; color: var(--accent-gold); }
.coin-stat-label { color: var(--text-muted); font-size: 0.8rem; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.05));
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header h1 { color: var(--primary-light); margin-bottom: 12px; }
.page-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}
.policy-content h2 { color: var(--primary-light); margin: 40px 0 16px; font-size: 1.3rem; }
.policy-content h3 { color: var(--accent); margin: 24px 0 12px; font-size: 1rem; }
.policy-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.policy-content ul { color: var(--text-muted); padding-left: 24px; margin-bottom: 16px; }
.policy-content ul li { margin-bottom: 8px; line-height: 1.7; }
.policy-content a { color: var(--accent); }
.policy-meta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 40px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.policy-meta strong { color: var(--primary-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(10,10,26,0.98); padding: 20px; border-bottom: 1px solid var(--border); }
  .navbar-nav.open { display: flex; }
  .navbar-toggle { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .slot-reels { gap: 8px; }
  .reel { width: 85px; height: 85px; font-size: 2.8rem; }
  .age-popup { padding: 36px 24px; }
  .age-buttons { flex-direction: column; }
  .age-buttons .btn { width: 100%; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn-lg { padding: 16px 32px; }
  .slot-machine { padding: 20px 16px; }
  .reel { width: 75px; height: 75px; font-size: 2.4rem; }
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 20px rgba(124,58,237,0.5); } 50% { box-shadow: 0 0 40px rgba(124,58,237,0.9); } }
.glow-text { text-shadow: 0 0 20px rgba(124,58,237,0.8); }

/* ===== WIN ANIMATION ===== */
@keyframes winPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.win-anim { animation: winPulse 0.5s ease 3; }

/* ===== CONFETTI ===== */
.confetti-container {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  top: -20px;
  animation: confettiFall linear forwards;
}
@keyframes confettiFall {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}
