/* ===== BOSS ARENA - Main Stylesheet ===== */
:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --accent: #fbbf24;
  --accent-dark: #d97706;
  --bg-dark: #0f0720;
  --bg-card: #1a0a2e;
  --bg-card2: #1e1040;
  --text-light: #f3f0ff;
  --text-muted: #a78bfa;
  --success: #10b981;
  --danger: #ef4444;
  --border: rgba(124,58,237,0.3);
  --glow: 0 0 20px rgba(124,58,237,0.5);
}

*, *::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(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,7,32,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.logo span { color: var(--text-light); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
  background: rgba(124,58,237,0.15);
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 8px !important;
}

.nav-cta:hover { background: var(--primary-dark) !important; color: #fff !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,7,32,0.7) 0%, rgba(124,58,237,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(251,191,36,0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(243,240,255,0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #9333ea);
  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);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #1a0a2e;
  box-shadow: 0 4px 20px rgba(251,191,36,0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251,191,36,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(251,191,36,0.05);
}

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 1.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  background: rgba(124,58,237,0.15);
  border: 1px solid var(--primary);
  color: var(--text-muted);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--glow);
}

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

.card-body { padding: 1.5rem; }

.card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.card-body p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== GRID ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ===== STATS ===== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 1.5rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}

.stat-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== GAME SECTION ===== */
.games-section { background: var(--bg-card2); }

.game-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.game-tab {
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.game-tab.active, .game-tab:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

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

/* ===== SLOT MACHINE ===== */
.slot-machine {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(160deg, #1e0a3c, #2d1060);
  border: 3px solid var(--accent);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 0 40px rgba(251,191,36,0.2), inset 0 0 40px rgba(0,0,0,0.3);
  text-align: center;
}

.slot-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(251,191,36,0.5);
}

.slot-reels {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: #0a0515;
  border: 2px solid rgba(251,191,36,0.3);
  border-radius: 12px;
  padding: 1rem;
}

.reel {
  width: 90px;
  height: 90px;
  background: #120830;
  border: 2px solid rgba(124,58,237,0.5);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}

.reel.spinning {
  animation: reelSpin 0.1s linear infinite;
}

@keyframes reelSpin {
  0% { transform: translateY(0); }
  25% { transform: translateY(-5px); }
  75% { transform: translateY(5px); }
  100% { transform: translateY(0); }
}

.slot-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.slot-info-box {
  flex: 1;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
}

.slot-info-box label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.slot-info-box span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.slot-message {
  min-height: 28px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 1rem;
}

.spin-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #1a0a2e;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(251,191,36,0.4);
}

.spin-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251,191,36,0.6);
}

.spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ===== WHEEL ===== */
.wheel-container {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.wheel-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.wheel-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.wheel-pointer {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--accent);
  filter: drop-shadow(0 0 8px rgba(251,191,36,0.8));
  z-index: 10;
}

#wheelCanvas {
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(124,58,237,0.5), 0 0 60px rgba(251,191,36,0.2);
  border: 4px solid var(--accent);
}

.wheel-result {
  min-height: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 1rem;
}

.spin-wheel-btn {
  padding: 0.9rem 3rem;
  font-size: 1.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), #9333ea);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}

.spin-wheel-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.6);
}

.spin-wheel-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ===== TOKEN GAME ===== */
.token-game {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(160deg, #0d1f0a, #1a3a12);
  border: 3px solid #22c55e;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(34,197,94,0.15);
}

.token-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.token-subtitle {
  color: rgba(74,222,128,0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.token-display {
  background: rgba(0,0,0,0.4);
  border: 2px solid rgba(34,197,94,0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.token-count {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fbbf24;
  display: block;
  line-height: 1;
}

.token-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.token-btn {
  padding: 0.75rem 0.5rem;
  border-radius: 10px;
  border: 2px solid rgba(34,197,94,0.4);
  background: rgba(34,197,94,0.1);
  color: #4ade80;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.token-btn:hover {
  background: rgba(34,197,94,0.25);
  border-color: #22c55e;
  transform: translateY(-2px);
}

.token-btn .emoji { font-size: 1.5rem; }

.token-message {
  min-height: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 1rem;
}

.reset-tokens {
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 2px solid rgba(34,197,94,0.4);
  color: rgba(74,222,128,0.7);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.reset-tokens:hover {
  border-color: #22c55e;
  color: #4ade80;
}

/* ===== FEATURES ===== */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(124,58,237,0.15);
  border: 2px solid var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.newsletter-box h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.newsletter-box p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--border);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form input::placeholder { color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
}

.contact-info p { color: var(--text-muted); margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(124,58,237,0.15);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.contact-item-text span { color: var(--text-light); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--border);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }

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

.form-group select option { background: var(--bg-card); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success {
  display: none;
  background: rgba(16,185,129,0.1);
  border: 1px solid var(--success);
  border-radius: 10px;
  padding: 1rem;
  color: var(--success);
  text-align: center;
  margin-top: 1rem;
}

/* ===== LOCATIONS ===== */
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.location-card:hover {
  border-color: var(--primary);
  box-shadow: var(--glow);
}

.location-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.location-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.location-badge {
  display: inline-block;
  background: rgba(16,185,129,0.15);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
  background: #080314;
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  color: rgba(243,240,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(243,240,255,0.4);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(243,240,255,0.4);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--accent); }

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.age-disclaimer {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: rgba(239,68,68,0.8);
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ===== 18+ POPUP ===== */
.age-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.age-popup {
  background: linear-gradient(160deg, #1a0a2e, #2d1060);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(251,191,36,0.2);
  animation: popupIn 0.4s ease;
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.age-popup-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.age-popup h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.age-popup p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.age-popup-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.age-popup-buttons .btn { flex: 1; justify-content: center; }

.age-popup .disclaimer {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(167,139,250,0.5);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15,7,32,0.97);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  z-index: 8000;
  display: none;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  flex: 1;
  color: var(--text-muted);
  font-size: 0.88rem;
  min-width: 200px;
}

.cookie-inner p a { color: var(--accent); text-decoration: none; }
.cookie-inner p a:hover { text-decoration: underline; }

.cookie-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(160deg, var(--bg-dark), var(--bg-card));
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.policy-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin: 2rem 0 0.75rem;
}

.policy-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 1.5rem 0 0.5rem;
}

.policy-content p {
  color: rgba(243,240,255,0.75);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content ul {
  color: rgba(243,240,255,0.75);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content ul li { margin-bottom: 0.4rem; line-height: 1.7; }

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

.policy-meta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  position: relative;
  overflow: hidden;
}

.about-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(0.4);
  display: block;
}

.about-hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.about-hero-text h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  max-width: 700px;
}

/* ===== RESPONSIBLE GAMING ===== */
.rg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.rg-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.rg-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: rgba(15,7,32,0.98); flex-direction: column; padding: 1rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .slot-reels { gap: 0.5rem; }
  .reel { width: 75px; height: 75px; font-size: 2.5rem; }
}
