/* =========================================
   NeonMultiplayer.pro — Main Stylesheet
   ========================================= */

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

:root {
  --neon-purple: #b400ff;
  --neon-cyan: #00e5ff;
  --neon-pink: #ff00c8;
  --neon-gold: #ffd700;
  --dark-bg: #0a0012;
  --dark-card: #130025;
  --dark-card2: #1a0035;
  --text-light: #e8d5ff;
  --text-muted: #9a7fc0;
  --border-neon: rgba(180, 0, 255, 0.4);
  --gradient-hero: linear-gradient(135deg, #0a0012 0%, #1a0035 50%, #0a001a 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo 2', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.05em;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--neon-pink);
}

/* ---- NEON TEXT EFFECTS ---- */
.neon-text-purple {
  color: var(--neon-purple);
  text-shadow: 0 0 8px var(--neon-purple), 0 0 20px var(--neon-purple);
}

.neon-text-cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

.neon-text-pink {
  color: var(--neon-pink);
  text-shadow: 0 0 8px var(--neon-pink), 0 0 20px var(--neon-pink);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  color: #fff;
  box-shadow: 0 0 20px rgba(180, 0, 255, 0.5);
}

.btn-primary:hover {
  box-shadow: 0 0 35px rgba(180, 0, 255, 0.8), 0 0 60px rgba(255, 0, 200, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
  transform: translateY(-2px);
  color: var(--neon-cyan);
}

.btn-gold {
  background: linear-gradient(135deg, #ffd700, #ff9500);
  color: #1a0035;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.btn-gold:hover {
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.8);
  transform: translateY(-2px);
  color: #1a0035;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 0, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-neon);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--neon-purple);
  box-shadow: 0 0 10px var(--neon-purple);
}

.navbar-brand .brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
}

.navbar-brand .brand-name span {
  color: var(--neon-cyan);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.navbar-nav a {
  color: var(--text-light);
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
  text-decoration: none;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon-cyan);
  transform: scaleX(0);
  transition: transform 0.3s;
  box-shadow: 0 0 6px var(--neon-cyan);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  transform: scaleX(1);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--neon-cyan);
}

.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(--neon-cyan);
  transition: all 0.3s;
}

/* ---- HERO SECTION ---- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: 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);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,0,18,0.7) 0%, rgba(26,0,53,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 100px 5% 60px;
}

.hero-badge {
  display: inline-block;
  background: rgba(180, 0, 255, 0.2);
  border: 1px solid var(--neon-purple);
  color: var(--neon-purple);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(180, 0, 255, 0.3);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.hero h1 .highlight {
  color: var(--neon-cyan);
  text-shadow: 0 0 15px var(--neon-cyan);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  right: 5%;
  z-index: 2;
  display: flex;
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- SECTIONS ---- */
.section {
  padding: 90px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: var(--neon-purple);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- GAME CARDS ---- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.game-card {
  background: var(--dark-card);
  border: 1px solid var(--border-neon);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.game-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
  transform: translateY(-5px);
}

.game-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.game-card-body {
  padding: 24px;
}

.game-card-tag {
  display: inline-block;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--neon-cyan);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.game-card-body h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}

.game-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ---- FEATURES SECTION ---- */
.features-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 50%, var(--dark-bg) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  background: var(--dark-card2);
  border: 1px solid var(--border-neon);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
}

.feature-item:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 20px rgba(180, 0, 255, 0.2);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.feature-item h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ---- NEWSLETTER SECTION ---- */
.newsletter-section {
  background: linear-gradient(135deg, rgba(180,0,255,0.1), rgba(0,229,255,0.05));
  border-top: 1px solid var(--border-neon);
  border-bottom: 1px solid var(--border-neon);
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 12px;
}

.newsletter-inner p {
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-neon);
  border-radius: 4px;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-neon);
  box-shadow: 0 0 30px rgba(180, 0, 255, 0.2);
}

.about-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-list {
  list-style: none;
  margin: 20px 0 30px;
}

.about-list li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-list li::before {
  content: '▸';
  color: var(--neon-cyan);
  font-size: 1rem;
}

/* ---- VENUES SECTION ---- */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.venue-card {
  background: var(--dark-card);
  border: 1px solid var(--border-neon);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
}

.venue-card:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 20px rgba(180, 0, 255, 0.15);
}

.venue-card h3 {
  font-size: 1rem;
  color: var(--neon-cyan);
  margin-bottom: 8px;
}

.venue-card .venue-address {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.venue-card .venue-tag {
  display: inline-block;
  background: rgba(180, 0, 255, 0.15);
  border: 1px solid rgba(180, 0, 255, 0.3);
  color: var(--neon-purple);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

/* ---- CONTACT FORM ---- */
.contact-section {
  background-image: url('../images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 18, 0.88);
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  font-size: 1.4rem;
  margin-top: 2px;
}

.contact-detail-text strong {
  display: block;
  color: var(--neon-cyan);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-detail-text span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form-box {
  background: var(--dark-card);
  border: 1px solid var(--border-neon);
  border-radius: 12px;
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-neon);
  border-radius: 4px;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background: var(--dark-card2);
  color: #fff;
}

.form-success {
  display: none;
  background: rgba(0, 255, 120, 0.1);
  border: 1px solid rgba(0, 255, 120, 0.4);
  border-radius: 8px;
  padding: 16px;
  color: #00ff78;
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
}

/* ---- FOOTER ---- */
.footer {
  background: #050010;
  border-top: 1px solid var(--border-neon);
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8rem;
  color: var(--neon-cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--neon-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(180, 0, 255, 0.15);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--neon-cyan);
}

.age-disclaimer {
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.3);
  border-radius: 8px;
  padding: 12px 20px;
  margin-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: rgba(255, 150, 150, 0.9);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ---- AGE GATE POPUP ---- */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 0, 16, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate-box {
  background: var(--dark-card2);
  border: 2px solid var(--neon-purple);
  border-radius: 16px;
  padding: 50px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(180, 0, 255, 0.4);
  animation: fadeInScale 0.4s ease;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.age-gate-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.age-gate-logo span {
  color: var(--neon-cyan);
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin: 20px auto;
  box-shadow: 0 0 30px rgba(180, 0, 255, 0.6);
}

.age-gate-box h2 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 12px;
}

.age-gate-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.age-gate-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.age-gate-buttons .btn {
  min-width: 140px;
}

.age-gate-note {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8888;
  background: rgba(19, 0, 37, 0.97);
  border-top: 1px solid var(--border-neon);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

.cookie-banner p a {
  color: var(--neon-cyan);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 140px 5% 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(26,0,53,0.6) 0%, transparent 100%);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(180,0,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- GAME ARENA PAGE ---- */
.game-arena {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5% 80px;
}

.game-tabs {
  display: flex;
  gap: 4px;
  background: var(--dark-card);
  border: 1px solid var(--border-neon);
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 40px;
  width: fit-content;
}

.game-tab {
  padding: 10px 28px;
  border-radius: 6px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-muted);
  transition: all 0.3s;
}

.game-tab.active {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  color: #fff;
  box-shadow: 0 0 15px rgba(180, 0, 255, 0.4);
}

.game-tab:hover:not(.active) {
  color: var(--neon-cyan);
}

.game-panel {
  display: none;
}

.game-panel.active {
  display: block;
}

/* ---- WHEEL GAME ---- */
.wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background: var(--dark-card);
  border: 1px solid var(--border-neon);
  border-radius: 16px;
}

.wheel-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}

.wheel-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  max-width: 90vw;
  max-height: 90vw;
}

#wheelCanvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(180, 0, 255, 0.5), 0 0 80px rgba(0, 229, 255, 0.2);
}

.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--neon-gold);
  filter: drop-shadow(0 0 8px var(--neon-gold));
  z-index: 10;
}

.wheel-result {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: var(--neon-gold);
  text-shadow: 0 0 10px var(--neon-gold);
  min-height: 32px;
  text-align: center;
}

.wheel-score-info {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

/* ---- SLOT MACHINE ---- */
.slot-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: var(--dark-card);
  border: 1px solid var(--border-neon);
  border-radius: 16px;
}

.slot-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.slot-machine {
  background: #0d001f;
  border: 3px solid var(--neon-purple);
  border-radius: 12px;
  padding: 30px;
  box-shadow: inset 0 0 30px rgba(180, 0, 255, 0.2), 0 0 40px rgba(180, 0, 255, 0.3);
}

.slot-reels {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.slot-reel {
  width: 90px;
  height: 90px;
  background: #050010;
  border: 2px solid var(--border-neon);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}

.slot-reel-inner {
  transition: transform 0.1s;
  line-height: 1;
}

.slot-reel.spinning .slot-reel-inner {
  animation: reelSpin 0.15s linear infinite;
}

@keyframes reelSpin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

.slot-info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.slot-info-row span {
  color: var(--neon-cyan);
}

.slot-result-msg {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--neon-gold);
  text-shadow: 0 0 10px var(--neon-gold);
  min-height: 28px;
  margin-bottom: 20px;
}

.slot-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ---- FANTA GAME (Token Flip) ---- */
.fanta-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: var(--dark-card);
  border: 1px solid var(--border-neon);
  border-radius: 16px;
}

.fanta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.fanta-subtitle {
  color: var(--text-muted);
  text-align: center;
  font-size: 0.88rem;
  margin-bottom: 30px;
}

.fanta-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.fanta-card {
  aspect-ratio: 1;
  background: var(--dark-card2);
  border: 2px solid var(--border-neon);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.3s;
  position: relative;
  perspective: 600px;
}

.fanta-card:hover:not(.flipped):not(.matched) {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.fanta-card.flipped,
.fanta-card.matched {
  background: rgba(180, 0, 255, 0.1);
  border-color: var(--neon-purple);
}

.fanta-card.matched {
  background: rgba(0, 255, 120, 0.1);
  border-color: #00ff78;
  cursor: default;
}

.fanta-card-back {
  font-size: 1.5rem;
  color: var(--neon-purple);
}

.fanta-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.fanta-stats span {
  color: var(--neon-cyan);
}

.fanta-result {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--neon-gold);
  min-height: 28px;
  margin-bottom: 20px;
}

.fanta-controls {
  display: flex;
  justify-content: center;
}

/* ---- POLICY PAGES ---- */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 5% 80px;
}

.policy-content h2 {
  font-size: 1.3rem;
  color: var(--neon-cyan);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.policy-content h3 {
  font-size: 1rem;
  color: var(--neon-purple);
  margin: 24px 0 10px;
}

.policy-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.93rem;
}

.policy-content ul {
  color: var(--text-muted);
  padding-left: 24px;
  margin-bottom: 14px;
}

.policy-content ul li {
  line-height: 1.8;
  font-size: 0.93rem;
  margin-bottom: 6px;
}

.policy-content a {
  color: var(--neon-cyan);
}

.policy-meta {
  background: var(--dark-card);
  border: 1px solid var(--border-neon);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 0, 18, 0.98);
    flex-direction: column;
    padding: 20px 5%;
    border-bottom: 1px solid var(--border-neon);
    gap: 16px;
  }

  .navbar-nav.open {
    display: flex;
  }

  .navbar-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .wheel-wrapper {
    width: 280px;
    height: 280px;
  }

  .slot-reel {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }

  .fanta-board {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .age-gate-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 5%;
  }

  .game-tabs {
    width: 100%;
    justify-content: center;
  }

  .game-tab {
    padding: 10px 16px;
    font-size: 0.7rem;
  }
}

/* ---- ANIMATIONS ---- */
@keyframes pulse-neon {
  0%, 100% { box-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple); }
  50% { box-shadow: 0 0 20px var(--neon-purple), 0 0 40px var(--neon-purple), 0 0 60px var(--neon-pink); }
}

.pulse {
  animation: pulse-neon 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float {
  animation: float 3s ease-in-out infinite;
}

/* ---- WIN FLASH ---- */
@keyframes winFlash {
  0%, 100% { background: var(--dark-card); }
  25% { background: rgba(255, 215, 0, 0.15); }
  50% { background: rgba(180, 0, 255, 0.15); }
  75% { background: rgba(0, 229, 255, 0.15); }
}

.win-flash {
  animation: winFlash 0.6s ease 3;
}
