/* ============================================================
   GlitchSector.info — Main Stylesheet
   ============================================================ */

:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-light: #a78bfa;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --dark: #0f0a1e;
  --dark2: #1a1035;
  --dark3: #241a4a;
  --text: #e2d9f3;
  --text-muted: #9d8ec4;
  --white: #ffffff;
  --success: #10b981;
  --danger: #ef4444;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold);
}

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

/* ============================================================
   HEADER & NAV
   ============================================================ */
header {
  background: rgba(15, 10, 30, 0.97);
  border-bottom: 1px solid rgba(124, 58, 237, 0.3);
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.5);
}

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

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,10,30,0.8) 0%, rgba(91,33,182,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 700px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 36px;
  opacity: 0.9;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
  color: var(--dark);
}

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

.btn-outline:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
  padding: 80px 24px;
}

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

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

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

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

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

/* ============================================================
   GAMES GRID
   ============================================================ */
.games-section {
  background: var(--dark2);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.game-card {
  background: var(--dark3);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

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

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

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

.game-card-tag {
  display: inline-block;
  background: rgba(124, 58, 237, 0.2);
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.game-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

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

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--dark2);
  border: 1px solid rgba(124, 58, 237, 0.15);
  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 {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(91,33,182,0.3));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

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

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

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--dark3);
}

.about-grid {
  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: 400px;
  object-fit: cover;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

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

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.stat-box {
  background: var(--dark2);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.stat-box .stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.stat-box .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   NEWSLETTER / CTA SECTION
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark2));
  text-align: center;
}

.newsletter-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter-section p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 260px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-success {
  display: none;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 14px 24px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-weight: 600;
}

/* ============================================================
   LOCATIONS SECTION
   ============================================================ */
.locations-section {
  background: var(--dark);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.location-card {
  background: var(--dark2);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}

.location-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.location-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.location-card .loc-city {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--dark2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

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

.contact-item-text strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
}

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

.contact-form {
  background: var(--dark3);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  padding: 40px;
}

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

.form-group label {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: var(--dark2);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius);
  color: var(--white);
  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);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

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

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

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.form-success h3 {
  color: var(--success);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #080512;
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  padding: 60px 24px 24px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

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

.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.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.9rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(124, 58, 237, 0.15);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.age-disclaimer {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  line-height: 1.6;
}

.age-disclaimer strong {
  color: #ef4444;
}

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

.age-modal {
  background: linear-gradient(145deg, var(--dark2), var(--dark3));
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  animation: modalIn 0.4s ease;
}

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

.age-modal-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
}

.age-modal h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.age-modal p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.age-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

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

.age-modal-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark2);
  border-top: 1px solid rgba(124, 58, 237, 0.3);
  padding: 20px 24px;
  z-index: 800;
  display: none;
}

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

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

.cookie-banner p a {
  color: var(--primary-light);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ============================================================
   GAME PAGES
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  padding: 60px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

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

/* SLOT MACHINE */
.slot-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--dark3);
  border: 2px solid rgba(124, 58, 237, 0.4);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.slot-machine-top {
  background: linear-gradient(135deg, var(--primary-dark), #3b0764);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 24px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.reel-container {
  width: 110px;
  height: 110px;
  background: var(--dark);
  border: 2px solid rgba(124, 58, 237, 0.4);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.reel {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3rem;
  transition: transform 0.1s linear;
  will-change: transform;
}

.reel-symbol {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.slot-result-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(245, 158, 11, 0.5);
  transform: translateY(-50%);
  pointer-events: none;
}

.slot-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.slot-info-item {
  text-align: center;
}

.slot-info-item .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.slot-info-item .value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
}

.slot-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.slot-message {
  text-align: center;
  min-height: 36px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s;
}

.slot-message.win {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  animation: pulse 0.5s ease;
}

.slot-message.lose {
  color: var(--text-muted);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* FORTUNE WHEEL */
.wheel-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--dark3);
  border: 2px solid rgba(124, 58, 237, 0.4);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
}

.wheel-canvas-container {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

#wheelCanvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.5);
}

.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: 30px solid var(--gold);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  z-index: 10;
}

.wheel-result {
  min-height: 48px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 12px;
  border-radius: var(--radius);
  transition: all 0.3s;
}

.wheel-result.show {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.wheel-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

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

.wheel-stat .wstat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.wheel-stat .wstat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TOKENS GAME */
.tokens-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--dark3);
  border: 2px solid rgba(124, 58, 237, 0.4);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.tokens-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 16px 24px;
}

.tokens-display {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tokens-display .token-icon {
  font-size: 1.5rem;
}

.tokens-display .token-count {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}

.tokens-display .token-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tokens-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.token-cell {
  aspect-ratio: 1;
  background: var(--dark2);
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.token-cell:hover {
  border-color: var(--primary);
  background: rgba(124, 58, 237, 0.15);
  transform: scale(1.05);
}

.token-cell.revealed {
  cursor: default;
  transform: none;
}

.token-cell.revealed:hover {
  transform: none;
}

.token-cell.win-cell {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--gold);
  animation: cellWin 0.5s ease;
}

.token-cell.lose-cell {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

@keyframes cellWin {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.tokens-message {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 20px;
  min-height: 32px;
}

.tokens-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px;
}

.policy-page h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.policy-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.policy-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 32px 0 12px;
}

.policy-page p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

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

.policy-page ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.policy-page a {
  color: var(--primary-light);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--dark2);
  padding: 12px 24px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-inner a {
  color: var(--text-muted);
}

.breadcrumb-inner a:hover {
  color: var(--gold);
}

.breadcrumb-inner span {
  color: var(--text);
}

/* ============================================================
   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 {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark);
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    z-index: 800;
  }

  nav.open {
    display: flex;
  }

  nav a {
    width: 100%;
    padding: 12px 16px;
  }

  .hamburger {
    display: flex;
  }

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

  .age-modal {
    padding: 32px 24px;
  }

  .age-modal-buttons {
    flex-direction: column;
  }

  .slot-reels {
    gap: 8px;
  }

  .reel-container {
    width: 90px;
    height: 90px;
  }

  .reel-symbol {
    width: 90px;
    height: 90px;
    font-size: 2.4rem;
  }

  .tokens-board {
    grid-template-columns: repeat(4, 1fr);
  }
}
