/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #5a1496;
  --purple-dark: #3a0a6e;
  --purple-light: #8b2fc9;
  --gold: #f5c518;
  --gold-dark: #d4a017;
  --white: #ffffff;
  --off-white: #f8f4ff;
  --text: #1a1a2e;
  --text-light: #555577;
  --bg-dark: #0d0620;
  --bg-card: #1a0a30;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(90,20,150,0.25);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(26,10,48,0.97);
  border-top: 2px solid var(--gold);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  backdrop-filter: blur(6px);
}
#cookie-banner p { font-size: 0.9rem; color: #ccc; flex: 1; min-width: 220px; }
#cookie-banner a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; }
.btn-cookie-accept {
  background: var(--gold); color: var(--bg-dark);
  border: none; padding: 9px 22px; border-radius: 8px;
  font-weight: 700; cursor: pointer; font-size: 0.9rem; transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--gold-dark); }
.btn-cookie-decline {
  background: transparent; color: #aaa;
  border: 1px solid #555; padding: 9px 22px; border-radius: 8px;
  font-size: 0.9rem; cursor: pointer; transition: all var(--transition);
}
.btn-cookie-decline:hover { border-color: #aaa; color: #fff; }

/* ===== 18+ POPUP ===== */
#age-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.age-modal {
  background: linear-gradient(135deg, var(--purple-dark), var(--bg-card));
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px; width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(245,197,24,0.3);
}
.age-modal .age-badge {
  width: 90px; height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 900; color: var(--bg-dark);
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(245,197,24,0.5);
}
.age-modal h2 { font-size: 1.8rem; margin-bottom: 12px; color: var(--gold); }
.age-modal p { color: #ccc; margin-bottom: 28px; font-size: 0.95rem; }
.age-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-age-yes {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white); border: none;
  padding: 14px 36px; border-radius: 10px;
  font-size: 1.05rem; font-weight: 700; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(90,20,150,0.5);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(90,20,150,0.7); }
.btn-age-no {
  background: transparent; color: #aaa;
  border: 2px solid #555; padding: 14px 36px; border-radius: 10px;
  font-size: 1.05rem; cursor: pointer; transition: all var(--transition);
}
.btn-age-no:hover { border-color: #aaa; color: #fff; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(13,6,32,0.95);
  border-bottom: 1px solid rgba(245,197,24,0.2);
  backdrop-filter: blur(10px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1200px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800; color: var(--white);
  text-decoration: none;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.logo span { color: var(--gold); }

nav { display: flex; align-items: center; gap: 6px; }
nav a {
  color: #ccc; padding: 8px 14px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; transition: all var(--transition);
  text-decoration: none;
}
nav a:hover, nav a.active { background: rgba(245,197,24,0.12); color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--purple-light)) !important;
  color: var(--white) !important; padding: 9px 20px !important;
  border-radius: 8px !important; font-weight: 700 !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  min-height: 90vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('img/hero.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.45);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(58,10,110,0.7) 0%, rgba(13,6,32,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px; padding: 60px 20px;
  margin: 0 auto; text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  border: 1px solid var(--gold);
  color: var(--gold); padding: 6px 18px;
  border-radius: 20px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 20px; letter-spacing: 0.5px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  margin-bottom: 36px; max-width: 560px; 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(--gold), var(--gold-dark));
  color: var(--bg-dark); border: none;
  padding: 15px 36px; border-radius: 10px;
  font-size: 1.05rem; font-weight: 800; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(245,197,24,0.4);
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(245,197,24,0.6); color: var(--bg-dark); }
.btn-secondary {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 15px 36px; border-radius: 10px;
  font-size: 1.05rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition); text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }

/* ===== SECTION TITLES ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--gold); padding: 5px 16px;
  border-radius: 20px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; margin-bottom: 14px;
}
.section-header p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; }

/* ===== GAMES SECTION ===== */
.games-section { padding: 90px 0; }
.games-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: 18px; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(90,20,150,0.4); }
.game-card-header {
  padding: 20px 24px 0;
  display: flex; align-items: center; gap: 12px;
}
.game-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.game-card-header h3 { font-size: 1.2rem; font-weight: 700; }
.game-card-header p { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.game-canvas-area { padding: 20px 24px 24px; }

/* ===== SLOT MACHINE ===== */
.slot-machine {
  background: linear-gradient(180deg, #1e0840 0%, #0d0620 100%);
  border: 2px solid var(--gold);
  border-radius: 16px; padding: 20px;
  text-align: center;
}
.slot-display {
  display: flex; gap: 8px; justify-content: center;
  background: #000; border-radius: 10px;
  padding: 14px; margin-bottom: 16px;
  border: 2px solid rgba(245,197,24,0.3);
}
.reel {
  width: 72px; height: 72px;
  background: linear-gradient(180deg, #2a1050, #1a0840);
  border-radius: 8px; border: 1px solid rgba(245,197,24,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; overflow: hidden;
  transition: all 0.1s;
}
.reel.spinning { animation: reelSpin 0.12s linear infinite; }
@keyframes reelSpin {
  0% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-8px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.7; }
}
.slot-result {
  min-height: 28px; font-size: 0.95rem; font-weight: 700;
  color: var(--gold); margin-bottom: 14px;
}
.slot-controls { display: flex; gap: 10px; justify-content: center; }
.btn-spin {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark); border: none;
  padding: 12px 32px; border-radius: 10px;
  font-size: 1rem; font-weight: 800; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(245,197,24,0.4);
}
.btn-spin:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,197,24,0.6); }
.btn-spin:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.tokens-display {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 10px;
}
.token-count { color: var(--gold); font-weight: 700; font-size: 1rem; }

/* ===== WHEEL ===== */
.wheel-wrapper { text-align: center; }
.wheel-container {
  position: relative; display: inline-block; margin-bottom: 16px;
}
.wheel-pointer {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--gold);
  filter: drop-shadow(0 2px 6px rgba(245,197,24,0.8));
  z-index: 10;
}
#wheelCanvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(90,20,150,0.6), 0 0 0 4px var(--gold);
  display: block;
}
.wheel-result {
  min-height: 28px; font-size: 1rem; font-weight: 700;
  color: var(--gold); margin-bottom: 14px;
}
.btn-spin-wheel {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white); border: none;
  padding: 13px 36px; border-radius: 10px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(90,20,150,0.5);
}
.btn-spin-wheel:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(90,20,150,0.7); }
.btn-spin-wheel:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== TOKEN FLIP ===== */
.token-flip-game { text-align: center; }
.token-area {
  display: flex; gap: 14px; justify-content: center;
  margin-bottom: 18px; flex-wrap: wrap;
}
.token {
  width: 70px; height: 70px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; cursor: pointer;
  border: 3px solid rgba(245,197,24,0.3);
  background: linear-gradient(135deg, #2a1050, #1a0840);
  transition: transform 0.3s, box-shadow 0.3s;
  user-select: none;
}
.token:hover { transform: scale(1.1); box-shadow: 0 4px 20px rgba(245,197,24,0.4); }
.token.flipped { animation: tokenFlip 0.4s ease; }
.token.matched { border-color: var(--gold); background: linear-gradient(135deg, #5a1496, #8b2fc9); box-shadow: 0 0 16px rgba(245,197,24,0.5); }
@keyframes tokenFlip {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(90deg); }
  100% { transform: rotateY(0deg); }
}
.token-result { min-height: 28px; font-size: 0.95rem; font-weight: 700; color: var(--gold); margin-bottom: 14px; }
.token-score { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.btn-token-reset {
  background: linear-gradient(135deg, #2a1050, #3a1870);
  color: var(--white); border: 1px solid rgba(245,197,24,0.3);
  padding: 11px 28px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
}
.btn-token-reset:hover { background: linear-gradient(135deg, var(--purple), var(--purple-light)); border-color: var(--gold); }

/* ===== FEATURES ===== */
.features-section { padding: 80px 0; background: rgba(255,255,255,0.02); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid rgba(245,197,24,0.1);
  border-radius: 16px; padding: 28px 24px; text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(245,197,24,0.35); }
.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 16px;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 90px 0; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text .section-tag { display: inline-block; }
.about-text h2 { font-size: 2.2rem; font-weight: 800; margin: 12px 0 18px; }
.about-text p { color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.about-stats {
  display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ===== VENUES SECTION ===== */
.venues-section { padding: 80px 0; background: rgba(255,255,255,0.02); }
.venues-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.venue-card {
  background: var(--bg-card); border: 1px solid rgba(245,197,24,0.1);
  border-radius: 14px; padding: 22px 20px;
  transition: transform var(--transition), border-color var(--transition);
}
.venue-card:hover { transform: translateY(-4px); border-color: rgba(245,197,24,0.3); }
.venue-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--gold); }
.venue-card .venue-addr { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.venue-card .venue-city { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.venue-badge {
  display: inline-block; margin-top: 10px;
  background: rgba(90,20,150,0.3); border: 1px solid rgba(139,47,201,0.4);
  color: #c084fc; padding: 3px 10px; border-radius: 6px; font-size: 0.75rem;
}

/* ===== NEWSLETTER / CONTACT ===== */
.contact-section { padding: 90px 0; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.contact-detail-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(90,20,150,0.3); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-detail-text strong { display: block; font-size: 0.85rem; color: var(--gold); }
.contact-detail-text span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.contact-form {
  background: var(--bg-card); border: 1px solid rgba(245,197,24,0.15);
  border-radius: 18px; padding: 32px;
}
.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 22px; color: var(--gold); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 7px; font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 11px 14px;
  color: var(--white); font-size: 0.9rem; font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: #1a0a30; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark); border: none;
  padding: 14px; border-radius: 10px;
  font-size: 1rem; font-weight: 800; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(245,197,24,0.35);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,0.55); }
.form-success {
  display: none; text-align: center; padding: 20px;
  color: #4ade80; font-size: 1rem; font-weight: 600;
}
.form-success.show { display: block; }

/* ===== NEWSLETTER STRIP ===== */
.newsletter-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--purple-dark), #1a0a30);
  border-top: 1px solid rgba(245,197,24,0.15);
  border-bottom: 1px solid rgba(245,197,24,0.15);
}
.newsletter-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.newsletter-text h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.newsletter-text p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; padding: 12px 18px; color: var(--white);
  font-size: 0.9rem; min-width: 240px; outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.btn-newsletter {
  background: var(--gold); color: var(--bg-dark);
  border: none; padding: 12px 24px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-newsletter:hover { background: var(--gold-dark); transform: translateY(-1px); }
#newsletter-success { display: none; color: #4ade80; font-weight: 600; font-size: 0.9rem; padding: 12px 0; }
#newsletter-success.show { display: block; }

/* ===== FOOTER ===== */
footer {
  background: #060212;
  border-top: 1px solid rgba(245,197,24,0.1);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: var(--gold); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.45); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--gold); }
.footer-links { display: flex; gap: 18px; }
.disclaimer {
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
  margin-top: 16px; line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--purple-dark), var(--bg-dark));
  text-align: center;
  border-bottom: 1px solid rgba(245,197,24,0.15);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; }

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 860px; margin: 0 auto; padding: 60px 20px 80px;
}
.policy-content h2 { font-size: 1.5rem; font-weight: 700; margin: 32px 0 12px; color: var(--gold); }
.policy-content h3 { font-size: 1.1rem; font-weight: 600; margin: 24px 0 8px; color: rgba(255,255,255,0.85); }
.policy-content p { color: rgba(255,255,255,0.65); margin-bottom: 14px; line-height: 1.75; }
.policy-content ul { color: rgba(255,255,255,0.65); padding-left: 22px; margin-bottom: 14px; }
.policy-content ul li { margin-bottom: 6px; line-height: 1.7; }
.policy-content a { color: var(--gold); }
.policy-meta { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 32px; }
.policy-toc {
  background: var(--bg-card); border: 1px solid rgba(245,197,24,0.15);
  border-radius: 12px; padding: 22px 24px; margin-bottom: 36px;
}
.policy-toc h4 { font-size: 0.9rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.policy-toc ol { padding-left: 20px; }
.policy-toc ol li { margin-bottom: 6px; }
.policy-toc ol li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.policy-toc ol li a:hover { color: var(--gold); }

/* ===== GAMES PAGE ===== */
.games-page-section { padding: 70px 0; }
.games-page-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

/* ===== ABOUT PAGE ===== */
.about-page { padding: 70px 0; }
.about-page-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 70px;
}
.team-section { padding: 60px 0; background: rgba(255,255,255,0.02); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card {
  background: var(--bg-card); border: 1px solid rgba(245,197,24,0.1);
  border-radius: 16px; padding: 28px 20px; text-align: center;
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 14px;
}
.team-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-inner, .contact-inner, .about-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-img { order: -1; }
}
@media (max-width: 768px) {
  nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(13,6,32,0.98); padding: 16px; gap: 4px; border-bottom: 1px solid rgba(245,197,24,0.15); }
  nav.open { display: flex; }
  nav a { padding: 12px 16px; border-radius: 8px; }
  .hamburger { display: flex; }
  header { position: relative; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { gap: 16px; }
  .hero-content { padding: 40px 20px; }
}
@media (max-width: 480px) {
  .age-modal { padding: 32px 24px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .slot-display { gap: 5px; }
  .reel { width: 60px; height: 60px; font-size: 1.8rem; }
}
