/* =============================================
   VirtualMission.pro – Main Stylesheet
   ============================================= */

:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --secondary: #f59e0b;
  --accent: #10b981;
  --dark: #0f0f1a;
  --dark2: #1a1a2e;
  --dark3: #16213e;
  --light: #f8fafc;
  --text-muted: #94a3b8;
  --card-bg: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.1);
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fbbf24; }

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

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

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; text-align: center; margin-bottom: 16px; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 56px; max-width: 600px; margin-left: auto; margin-right: auto; }
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; border: none; transition: all var(--transition); text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: 0 4px 20px rgba(124,58,237,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.6); color: #fff; }
.btn-secondary { background: transparent; color: var(--secondary); border: 2px solid var(--secondary); }
.btn-secondary:hover { background: var(--secondary); color: var(--dark); }
.btn-accent { background: linear-gradient(135deg, var(--secondary), #f97316); color: var(--dark); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,0.5); color: var(--dark); }
.tag { display: inline-block; padding: 4px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.tag-purple { background: rgba(124,58,237,0.2); color: #a78bfa; border: 1px solid rgba(124,58,237,0.3); }
.tag-gold { background: rgba(245,158,11,0.2); color: var(--secondary); border: 1px solid rgba(245,158,11,0.3); }
.tag-green { background: rgba(16,185,129,0.2); color: #34d399; border: 1px solid rgba(16,185,129,0.3); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,15,26,0.9);
  backdrop-filter: blur(20px);
  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: 10px; font-size: 1.4rem; font-weight: 800; color: var(--light); text-decoration: none; }
.navbar-logo span { color: var(--secondary); }
.navbar-logo .logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.navbar-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.navbar-links a { color: var(--light); font-weight: 500; font-size: 0.95rem; transition: color var(--transition); position: relative; }
.navbar-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--secondary); transition: width var(--transition); }
.navbar-links a:hover::after, .navbar-links a.active::after { width: 100%; }
.navbar-links a:hover, .navbar-links a.active { color: var(--secondary); }
.navbar-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--light); border-radius: 2px; transition: all var(--transition); }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(15,15,26,0.98); backdrop-filter: blur(20px); padding: 24px 20px; border-bottom: 1px solid var(--border); z-index: 999; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu ul a { color: var(--light); font-size: 1.1rem; font-weight: 500; display: block; padding: 8px 0; border-bottom: 1px solid var(--border); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,15,26,0.92) 0%, rgba(26,26,46,0.85) 50%, rgba(15,15,26,0.75) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3); border-radius: 50px; padding: 8px 18px; font-size: 0.85rem; color: #a78bfa; font-weight: 600; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 36px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--secondary); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.8rem; animation: bounce 2s infinite; }
.hero-scroll .arrow { width: 20px; height: 20px; border-right: 2px solid var(--text-muted); border-bottom: 2px solid var(--text-muted); transform: rotate(45deg); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── GAMES PREVIEW CARDS ── */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.game-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.game-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: var(--shadow); }
.game-card-img { position: relative; height: 200px; overflow: hidden; }
.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.08); }
.game-card-badge { position: absolute; top: 12px; right: 12px; }
.game-card-body { padding: 24px; }
.game-card-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.game-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.game-card-meta { display: flex; align-items: center; justify-content: space-between; }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all var(--transition); }
.feature-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.feature-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; }
.feature-icon.purple { background: rgba(124,58,237,0.15); }
.feature-icon.gold { background: rgba(245,158,11,0.15); }
.feature-icon.green { background: rgba(16,185,129,0.15); }
.feature-icon.blue { background: rgba(59,130,246,0.15); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── LOCATIONS ── */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.location-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all var(--transition); }
.location-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.location-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.location-card .address { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 8px; }
.location-card .hours { color: var(--accent); font-size: 0.85rem; font-weight: 600; }
.location-card .phone { color: var(--text-muted); font-size: 0.85rem; margin-top: 6px; }

/* ── NEWSLETTER ── */
.newsletter-section { background: linear-gradient(135deg, var(--dark2), var(--dark3)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 8px; }
.newsletter-text p { color: var(--text-muted); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; flex: 1; max-width: 500px; }
.newsletter-form input { flex: 1; min-width: 200px; padding: 14px 20px; border-radius: 50px; border: 1px solid var(--border); background: rgba(255,255,255,0.05); color: var(--light); 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 FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form-wrap { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border-radius: 10px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.05);
  color: var(--light); font-size: 0.95rem; font-family: inherit;
  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(--dark2); }
.form-success { display: none; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); border-radius: var(--radius); padding: 20px; text-align: center; color: #34d399; font-weight: 600; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(124,58,237,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-info-text h4 { font-weight: 700; margin-bottom: 4px; }
.contact-info-text p { color: var(--text-muted); font-size: 0.9rem; }

/* ── ABOUT PAGE ── */
.about-hero { min-height: 50vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 70px; }
.about-hero-bg { position: absolute; inset: 0; background-image: url('../images/about-bg.jpg'); background-size: cover; background-position: center; }
.about-hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(15,15,26,0.82); }
.about-hero-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all var(--transition); }
.team-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 16px; }
.team-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-card p { color: var(--text-muted); font-size: 0.85rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.value-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; }
.value-number { font-size: 2.5rem; font-weight: 800; color: var(--secondary); margin-bottom: 8px; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ── GAMES PAGE ── */
.games-page-hero { min-height: 45vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 70px; }
.games-page-hero-bg { position: absolute; inset: 0; background-image: url('../images/games-bg.jpg'); background-size: cover; background-position: center; }
.games-page-hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(15,15,26,0.80); }
.games-page-hero-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.game-section { background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 48px; margin-bottom: 48px; }
.game-section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.game-section-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.game-section-header h2 { font-size: 1.6rem; font-weight: 700; }
.game-section-header p { color: var(--text-muted); font-size: 0.9rem; }

/* ── SPINNING WHEEL ── */
.wheel-container { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.wheel-wrapper { position: relative; display: inline-block; }
.wheel-pointer { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 16px solid transparent; border-right: 16px solid transparent; border-top: 32px solid var(--secondary); filter: drop-shadow(0 4px 8px rgba(245,158,11,0.6)); z-index: 10; }
#wheelCanvas { border-radius: 50%; box-shadow: 0 0 40px rgba(124,58,237,0.5), 0 0 80px rgba(124,58,237,0.2); cursor: pointer; }
.wheel-result { min-height: 60px; display: flex; align-items: center; justify-content: center; }
.wheel-result-box { background: rgba(245,158,11,0.1); border: 2px solid var(--secondary); border-radius: var(--radius); padding: 16px 32px; text-align: center; display: none; }
.wheel-result-box.show { display: block; animation: fadeInUp 0.4s ease; }
.wheel-result-box .result-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.wheel-result-box .result-value { font-size: 1.4rem; font-weight: 800; color: var(--secondary); }
#spinBtn { min-width: 160px; font-size: 1.1rem; padding: 16px 40px; }
#spinBtn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── SLOT MACHINE ── */
.slot-machine { max-width: 480px; margin: 0 auto; }
.slot-display { background: var(--dark); border: 2px solid var(--primary); border-radius: 16px; padding: 24px; margin-bottom: 24px; }
.slot-reels { display: flex; gap: 8px; justify-content: center; }
.slot-reel { width: 100px; height: 100px; background: var(--dark2); border: 2px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; position: relative; }
.slot-reel.spinning { animation: slotSpin 0.1s linear infinite; }
@keyframes slotSpin { 0% { transform: translateY(0); } 50% { transform: translateY(-4px); } 100% { transform: translateY(0); } }
.slot-reel-inner { transition: transform 0.1s; }
.slot-status { text-align: center; margin-top: 16px; min-height: 32px; font-size: 1.1rem; font-weight: 700; }
.slot-status.win { color: var(--secondary); animation: pulse 0.5s ease infinite alternate; }
.slot-status.lose { color: var(--text-muted); }
@keyframes pulse { from { opacity: 0.7; } to { opacity: 1; } }
.slot-controls { display: flex; justify-content: center; gap: 16px; }
#slotBtn { min-width: 160px; font-size: 1.1rem; padding: 16px 40px; }
#slotBtn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── COIN FLIP ── */
.coin-game { max-width: 400px; margin: 0 auto; text-align: center; }
.coin-wrapper { margin: 24px auto; }
.coin { width: 140px; height: 140px; margin: 0 auto; position: relative; transform-style: preserve-3d; cursor: pointer; }
.coin.flipping { animation: coinFlip 1.2s ease forwards; }
@keyframes coinFlip {
  0% { transform: rotateY(0); }
  25% { transform: rotateY(720deg) translateY(-40px); }
  50% { transform: rotateY(1440deg) translateY(-60px); }
  75% { transform: rotateY(2160deg) translateY(-40px); }
  100% { transform: rotateY(2880deg); }
}
.coin-face { position: absolute; inset: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; backface-visibility: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.coin-heads { background: linear-gradient(135deg, #f59e0b, #d97706); }
.coin-tails { background: linear-gradient(135deg, #6366f1, #4338ca); transform: rotateY(180deg); }
.coin-choice { display: flex; gap: 16px; justify-content: center; margin: 24px 0; }
.coin-choice-btn { padding: 12px 28px; border-radius: 50px; border: 2px solid var(--border); background: transparent; color: var(--light); font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all var(--transition); }
.coin-choice-btn.selected, .coin-choice-btn:hover { border-color: var(--secondary); background: rgba(245,158,11,0.1); color: var(--secondary); }
.coin-result { min-height: 48px; font-size: 1.2rem; font-weight: 700; margin-top: 16px; }
.coin-result.win { color: var(--accent); }
.coin-result.lose { color: #f87171; }
#flipBtn { min-width: 160px; }
#flipBtn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── FOOTER ── */
.footer { background: var(--dark2); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--light); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--light); }
.responsible-gaming { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); border-radius: var(--radius); padding: 16px 20px; margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.responsible-gaming p { color: var(--text-muted); font-size: 0.82rem; }
.responsible-gaming strong { color: var(--secondary); }

/* ── AGE POPUP ── */
.age-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.age-modal { background: var(--dark2); border: 1px solid var(--border); border-radius: 24px; padding: 48px 40px; max-width: 480px; width: 90%; text-align: center; box-shadow: 0 32px 80px rgba(0,0,0,0.8); }
.age-modal .age-icon { font-size: 4rem; margin-bottom: 20px; }
.age-modal h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.age-modal p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.age-modal .age-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.age-modal .age-buttons button { padding: 14px 36px; border-radius: 50px; font-size: 1rem; font-weight: 700; cursor: pointer; border: none; transition: all var(--transition); }
.age-btn-yes { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: 0 4px 20px rgba(124,58,237,0.4); }
.age-btn-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.6); }
.age-btn-no { background: transparent; color: var(--text-muted); border: 2px solid var(--border) !important; }
.age-btn-no:hover { border-color: #f87171 !important; color: #f87171; }
.age-disclaimer { font-size: 0.78rem; color: var(--text-muted); margin-top: 20px; }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark2); border-top: 1px solid var(--border); padding: 20px 24px; z-index: 8000; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-banner p { color: var(--text-muted); font-size: 0.88rem; flex: 1; }
.cookie-banner a { color: var(--secondary); }
.cookie-banner-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept { padding: 10px 24px; border-radius: 50px; background: var(--primary); color: #fff; border: none; font-weight: 600; cursor: pointer; font-size: 0.9rem; transition: all var(--transition); }
.cookie-accept:hover { background: var(--primary-dark); }
.cookie-decline { padding: 10px 24px; border-radius: 50px; background: transparent; color: var(--text-muted); border: 1px solid var(--border); font-weight: 600; cursor: pointer; font-size: 0.9rem; transition: all var(--transition); }
.cookie-decline:hover { border-color: var(--text-muted); color: var(--light); }

/* ── POLICY PAGES ── */
.policy-hero { padding: 120px 0 60px; background: var(--dark2); border-bottom: 1px solid var(--border); }
.policy-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.policy-hero p { color: var(--text-muted); }
.policy-content { max-width: 800px; }
.policy-content h2 { font-size: 1.35rem; font-weight: 700; margin: 40px 0 16px; color: var(--secondary); }
.policy-content h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 10px; }
.policy-content p { color: #cbd5e1; margin-bottom: 16px; line-height: 1.8; }
.policy-content ul { color: #cbd5e1; padding-left: 24px; margin-bottom: 16px; }
.policy-content ul li { margin-bottom: 8px; line-height: 1.7; }
.policy-content a { color: var(--secondary); }
.policy-toc { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 40px; }
.policy-toc h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.policy-toc ol { padding-left: 20px; color: var(--secondary); }
.policy-toc ol li { margin-bottom: 6px; font-size: 0.9rem; }
.policy-toc ol li a { color: var(--secondary); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp 0.6s ease both; }
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .newsletter-inner { flex-direction: column; }
  .game-section { padding: 28px 20px; }
  .slot-reel { width: 80px; height: 80px; font-size: 2.4rem; }
  .age-modal { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .coin-choice { flex-direction: column; align-items: center; }
}
