/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0d0d1a;
  color: #e0e0f0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --primary: #7c3aed;
  --primary-light: #a855f7;
  --accent: #f59e0b;
  --accent2: #10b981;
  --dark: #0d0d1a;
  --dark2: #13132a;
  --card-bg: #1a1a35;
  --border: rgba(124,58,237,0.3);
  --text: #e0e0f0;
  --text-muted: #9090b0;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(124,58,237,0.2);
}

/* ===== AGE GATE POPUP ===== */
#age-gate {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.age-gate-box {
  background: linear-gradient(135deg, #1a1a35 0%, #13132a 100%);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(124,58,237,0.4);
}
.age-gate-box .logo-icon { font-size: 56px; margin-bottom: 16px; }
.age-gate-box h2 { font-size: 2rem; color: var(--accent); margin-bottom: 8px; }
.age-gate-box p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.age-gate-box .age-warning {
  background: rgba(245,158,11,0.1);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--accent);
}
.age-btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-age-yes {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border: none; padding: 14px 36px;
  border-radius: 50px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.6); }
.btn-age-no {
  background: transparent; color: var(--text-muted);
  border: 2px solid var(--border); padding: 14px 36px;
  border-radius: 50px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
}
.btn-age-no:hover { border-color: #ef4444; color: #ef4444; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #1a1a35; border-top: 2px solid var(--border);
  padding: 16px 24px; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}
#cookie-banner p { font-size: 0.88rem; color: var(--text-muted); flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--primary-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--primary); color: #fff; border: none;
  padding: 10px 24px; border-radius: 50px; font-size: 0.9rem;
  font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.btn-cookie-accept:hover { background: var(--primary-light); }
.btn-cookie-decline {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border); padding: 10px 24px;
  border-radius: 50px; font-size: 0.9rem; cursor: pointer; transition: all 0.2s;
}
.btn-cookie-decline:hover { border-color: #ef4444; color: #ef4444; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(13,13,26,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800;
  color: #fff;
}
.nav-logo span { color: var(--accent); }
.nav-logo .logo-emoji { font-size: 1.6rem; }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(124,58,237,0.2); }
.nav-links .btn-nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff !important; padding: 8px 20px; border-radius: 50px;
}
.nav-links .btn-nav-cta:hover { box-shadow: 0 4px 20px rgba(124,58,237,0.5); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.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(124,58,237,0.3) 0%, rgba(13,13,26,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 40px 24px;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,158,11,0.15); border: 1px solid var(--accent);
  color: var(--accent); padding: 6px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.15rem; color: rgba(224,224,240,0.85);
  margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border: none; padding: 16px 36px;
  border-radius: 50px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s; display: inline-block;
  box-shadow: 0 4px 24px rgba(124,58,237,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 36px rgba(124,58,237,0.6); }
.btn-secondary {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.4); padding: 14px 36px;
  border-radius: 50px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s; display: inline-block;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hero-stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--accent); }
.hero-stat .label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ===== SECTIONS ===== */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(124,58,237,0.15); border: 1px solid var(--border);
  color: var(--primary-light); padding: 5px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 14px; letter-spacing: 1px;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800;
  color: #fff; margin-bottom: 14px;
}
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1rem; }

/* ===== GAMES GRID ===== */
.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 0.3s; cursor: pointer;
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary); }
.game-card-img { height: 200px; overflow: hidden; position: relative; }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.game-card:hover .game-card-img img { transform: scale(1.05); }
.game-card-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--accent); color: #000; padding: 4px 12px;
  border-radius: 50px; font-size: 0.75rem; font-weight: 700;
}
.game-card-body { padding: 24px; }
.game-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.game-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }
.btn-play {
  display: inline-block; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; padding: 10px 28px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700; border: none; cursor: pointer;
  transition: all 0.3s; width: 100%; text-align: center;
}
.btn-play:hover { box-shadow: 0 4px 20px rgba(124,58,237,0.5); transform: translateY(-1px); }

/* ===== FEATURES ===== */
.features-section { background: var(--dark2); }
.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 0.3s;
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== ABOUT SECTION ===== */
.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(--shadow); }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-list { margin: 24px 0; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px; color: var(--text-muted); font-size: 0.95rem;
}
.about-list li::before { content: '✓'; color: var(--accent2); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ===== VENUES SECTION ===== */
.venues-section { background: var(--dark2); }
.venues-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.venue-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: all 0.3s;
}
.venue-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.venue-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.venue-card .venue-city { color: var(--accent); font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.venue-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 6px; }
.venue-card .venue-hours { color: var(--accent2); font-size: 0.85rem; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(13,13,26,0.8) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.newsletter-inner p { color: var(--text-muted); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input[type="email"] {
  flex: 1; min-width: 220px; padding: 14px 20px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 50px; color: #fff; font-size: 0.95rem; outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--primary); }
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }
.newsletter-form button {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border: none; padding: 14px 32px;
  border-radius: 50px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.newsletter-form button:hover { box-shadow: 0 4px 20px rgba(124,58,237,0.5); transform: translateY(-1px); }
.form-success {
  display: none; margin-top: 16px;
  background: rgba(16,185,129,0.1); border: 1px solid var(--accent2);
  color: var(--accent2); padding: 12px 20px; border-radius: 8px; font-size: 0.9rem;
}

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail .icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-detail h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.contact-detail p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }
.contact-form-box {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--dark); border: 1px solid var(--border);
  border-radius: 8px; color: #fff; font-size: 0.95rem; outline: none;
  transition: border-color 0.2s; font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark2); }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border: none; padding: 14px;
  border-radius: 50px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s;
}
.btn-submit:hover { box-shadow: 0 4px 20px rgba(124,58,237,0.5); transform: translateY(-1px); }
.contact-success {
  display: none; margin-top: 16px;
  background: rgba(16,185,129,0.1); border: 1px solid var(--accent2);
  color: var(--accent2); padding: 14px 20px; border-radius: 8px;
  text-align: center; font-size: 0.95rem;
}

/* ===== GAME MODAL ===== */
.game-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.85); z-index: 800;
  align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.game-modal.open { display: flex; }
.game-modal-inner {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; width: 90%; max-width: 600px;
  max-height: 90vh; overflow-y: auto; position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 36px; height: 36px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: rgba(239,68,68,0.3); }
.modal-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 24px; text-align: center; }

/* ===== WHEEL GAME ===== */
.wheel-container { text-align: center; }
#wheel-canvas { border-radius: 50%; box-shadow: 0 0 40px rgba(124,58,237,0.5); }
.wheel-pointer {
  font-size: 2.5rem; margin-bottom: -8px; display: block; color: var(--accent);
  filter: drop-shadow(0 2px 8px rgba(245,158,11,0.6));
}
.wheel-result {
  margin-top: 20px; padding: 14px 24px;
  background: rgba(124,58,237,0.15); border: 1px solid var(--border);
  border-radius: 10px; font-size: 1.1rem; font-weight: 700; min-height: 52px;
  display: flex; align-items: center; justify-content: center;
}
.btn-spin {
  margin-top: 16px; background: linear-gradient(135deg, var(--accent), #d97706);
  color: #000; border: none; padding: 14px 40px;
  border-radius: 50px; font-size: 1.1rem; font-weight: 800;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.btn-spin:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,0.6); }
.btn-spin:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== SLOT MACHINE ===== */
.slot-machine { text-align: center; }
.slot-reels {
  display: flex; gap: 8px; justify-content: center;
  background: #0a0a18; border: 3px solid var(--primary);
  border-radius: 12px; padding: 20px; margin-bottom: 20px;
}
.reel {
  width: 80px; height: 80px; background: var(--dark2);
  border: 2px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; overflow: hidden; position: relative;
  transition: all 0.1s;
}
.reel.spinning { animation: reelSpin 0.1s linear infinite; }
@keyframes reelSpin {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
.slot-result {
  margin-bottom: 16px; padding: 12px 20px;
  background: rgba(124,58,237,0.1); border: 1px solid var(--border);
  border-radius: 8px; font-size: 1rem; font-weight: 700; min-height: 46px;
  display: flex; align-items: center; justify-content: center;
}
.slot-result.win { background: rgba(16,185,129,0.15); border-color: var(--accent2); color: var(--accent2); }
.btn-slot-spin {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border: none; padding: 14px 40px;
  border-radius: 50px; font-size: 1.1rem; font-weight: 800;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.btn-slot-spin:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.6); }
.btn-slot-spin:disabled { opacity: 0.5; cursor: not-allowed; }
.slot-score { color: var(--accent); font-size: 0.9rem; margin-top: 10px; }

/* ===== SCRATCH CARD ===== */
.scratch-container { text-align: center; }
.scratch-board {
  position: relative; width: 280px; height: 180px;
  margin: 0 auto 20px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
#scratch-canvas {
  position: absolute; top: 0; left: 0; cursor: crosshair; border-radius: 12px;
}
.scratch-reveal {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a35, #2d1b69);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.scratch-reveal .prize-emoji { font-size: 3rem; }
.scratch-reveal .prize-text { font-size: 1.1rem; font-weight: 700; color: var(--accent); }
.scratch-reveal .prize-sub { font-size: 0.85rem; color: var(--text-muted); }
.btn-new-scratch {
  background: linear-gradient(135deg, var(--accent2), #059669);
  color: #fff; border: none; padding: 12px 32px;
  border-radius: 50px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s;
}
.btn-new-scratch:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(16,185,129,0.4); }
.scratch-hint { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark2); border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 16px; font-size: 1.3rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; color: #fff; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary-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: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
.footer-bottom a { color: var(--primary-light); }
.footer-disclaimer {
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2);
  border-radius: 8px; padding: 14px 20px; margin-bottom: 32px;
  font-size: 0.82rem; color: var(--text-muted); text-align: center;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(13,13,26,1) 100%);
  padding: 100px 24px 60px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ===== POLICY PAGES ===== */
.policy-content { max-width: 860px; margin: 0 auto; padding: 60px 24px; }
.policy-content h2 { font-size: 1.5rem; font-weight: 700; margin: 36px 0 14px; color: var(--primary-light); }
.policy-content h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 10px; }
.policy-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { margin: 12px 0 14px 20px; }
.policy-content ul li { color: var(--text-muted); margin-bottom: 8px; list-style: disc; }
.policy-content a { color: var(--primary-light); text-decoration: underline; }
.policy-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 32px; }

/* ===== ABOUT PAGE ===== */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 40px;
}
.team-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; text-align: center;
  transition: all 0.3s;
}
.team-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.team-avatar { font-size: 3rem; margin-bottom: 12px; }
.team-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(13,13,26,0.98); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  header { position: sticky; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .game-modal-inner { padding: 24px 16px; }
  .slot-reels { gap: 4px; }
  .reel { width: 64px; height: 64px; font-size: 2rem; }
}

/* ===== UTILITY ===== */
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary-light); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.hidden { display: none !important; }
