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

:root {
  --purple: #7B2FBE;
  --purple-dark: #5a1f8a;
  --purple-light: #9d4fd6;
  --gold: #FFD700;
  --gold-dark: #e6b800;
  --dark: #0d0d1a;
  --dark2: #1a1a2e;
  --dark3: #16213e;
  --text: #e8e8f0;
  --text-muted: #a0a0b8;
  --white: #ffffff;
  --success: #2ecc71;
  --danger: #e74c3c;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(123,47,190,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
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;
  background: rgba(13,13,26,0.97);
  border-top: 2px solid var(--purple);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  flex-wrap: wrap;
}
#cookie-banner p { font-size: 0.9rem; color: var(--text-muted); flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-cookie-accept:hover { background: var(--purple-light); }
.btn-cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--text-muted);
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-cookie-decline:hover { border-color: var(--text); color: var(--text); }

/* ===== AGE GATE POPUP ===== */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(6px);
}
.age-gate-box {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border: 2px solid var(--purple);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 460px;
  width: 90%;
  box-shadow: 0 0 60px rgba(123,47,190,0.5);
}
.age-gate-box .age-icon { font-size: 4rem; margin-bottom: 16px; }
.age-gate-box h2 { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.age-gate-box p { color: var(--text-muted); margin-bottom: 30px; font-size: 0.95rem; }
.age-gate-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-age-yes {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(123,47,190,0.4);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(123,47,190,0.6); }
.btn-age-no {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--text-muted);
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-age-no:hover { border-color: var(--danger); color: var(--danger); }

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(13,13,26,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(123,47,190,0.3);
  z-index: 1000;
  height: 70px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--gold); }
.logo img { width: 36px; height: 36px; border-radius: 50%; }

nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}
nav ul li a {
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 0.95rem;
}
nav ul li a:hover, nav ul li a.active {
  background: rgba(123,47,190,0.3);
  color: var(--gold);
}
.nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--purple-light)) !important;
  color: #fff !important;
  font-weight: 700 !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,26,0.7) 0%, rgba(123,47,190,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,215,0,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(123,47,190,0.4);
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(123,47,190,0.6);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2rem; font-weight: 900; color: var(--gold); }
.hero-stat .lbl { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  color: var(--purple-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.section-header h2 span { color: var(--gold); }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1rem; }

/* ===== 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: linear-gradient(135deg, var(--dark3), var(--dark2));
  border: 1px solid rgba(123,47,190,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  box-shadow: var(--shadow);
}
.game-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.game-card:hover .game-card-img img { transform: scale(1.05); }
.game-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--purple);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.game-card-body { padding: 20px; }
.game-card-body h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 8px; }
.game-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.btn-play {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-play:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 20px; }
.about-text h2 span { color: var(--gold); }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-features { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(123,47,190,0.2);
  border: 1px solid rgba(123,47,190,0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-text h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.feature-text p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ===== NEWSLETTER / CTA ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--purple-dark), var(--dark3));
  border-top: 1px solid rgba(123,47,190,0.3);
  border-bottom: 1px solid rgba(123,47,190,0.3);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-text h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.newsletter-text h2 span { color: var(--gold); }
.newsletter-text p { color: var(--text-muted); }
.newsletter-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.form-group label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(123,47,190,0.4);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  width: 100%;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple-light);
  background: rgba(255,255,255,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--dark2); }
.form-success {
  display: none;
  background: rgba(46,204,113,0.15);
  border: 1px solid var(--success);
  border-radius: 10px;
  padding: 16px;
  color: var(--success);
  text-align: center;
  font-weight: 600;
}

/* ===== LOCATIONS ===== */
.locations-section { background: var(--dark2); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.location-card {
  background: var(--dark3);
  border: 1px solid rgba(123,47,190,0.25);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
}
.location-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.location-icon { font-size: 2rem; margin-bottom: 12px; }
.location-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.location-card .address { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 4px; }
.location-card .city { color: var(--purple-light); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(123,47,190,0.3);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { color: var(--white); font-weight: 700; margin-bottom: 16px; font-size: 0.95rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom .disclaimer {
  color: var(--text-muted);
  font-size: 0.78rem;
  max-width: 600px;
  text-align: right;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  padding: 120px 0 60px;
  border-bottom: 1px solid rgba(123,47,190,0.3);
  text-align: center;
}
.page-hero h1 { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ===== GAME PAGES ===== */
.game-area {
  background: var(--dark2);
  min-height: 100vh;
  padding: 100px 0 60px;
}
.game-wrapper {
  background: var(--dark3);
  border: 1px solid rgba(123,47,190,0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.game-wrapper h2 { text-align: center; font-size: 1.8rem; color: var(--white); margin-bottom: 8px; }
.game-wrapper .game-desc { text-align: center; color: var(--text-muted); margin-bottom: 32px; }

/* SLOT MACHINE */
.slot-machine {
  background: linear-gradient(135deg, #1a0a2e, #0d0d1a);
  border: 3px solid var(--purple);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 40px rgba(123,47,190,0.4), inset 0 0 20px rgba(0,0,0,0.5);
}
.slot-reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.reel {
  width: 100px;
  height: 120px;
  background: #0a0a15;
  border: 2px solid var(--purple-light);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}
.reel-inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.1s linear;
}
.reel-symbol {
  width: 100px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}
.reel::before, .reel::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 30px;
  z-index: 2;
  pointer-events: none;
}
.reel::before { top: 0; background: linear-gradient(to bottom, rgba(10,10,21,0.9), transparent); }
.reel::after { bottom: 0; background: linear-gradient(to top, rgba(10,10,21,0.9), transparent); }

.slot-info {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  gap: 12px;
}
.slot-info-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(123,47,190,0.3);
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
}
.slot-info-item .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.slot-info-item .value { font-size: 1.4rem; font-weight: 800; color: var(--gold); }

.btn-spin {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  border: none;
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(123,47,190,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-spin:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(123,47,190,0.7);
}
.btn-spin:disabled { opacity: 0.5; cursor: not-allowed; }

.slot-message {
  margin-top: 16px;
  min-height: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
}
.slot-message.win { color: var(--success); animation: pulse 0.5s ease-in-out 3; }
.slot-message.lose { color: var(--text-muted); }

/* WHEEL OF FORTUNE */
.wheel-container { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.wheel-wrapper { position: relative; display: inline-block; }
.wheel-pointer {
  position: absolute;
  top: -20px;
  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 6px rgba(255,215,0,0.8));
  z-index: 10;
}
#wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(123,47,190,0.6), 0 0 0 6px var(--purple), 0 0 0 10px rgba(123,47,190,0.3);
  display: block;
}
.btn-spin-wheel {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  border: none;
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(255,215,0,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-spin-wheel:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,215,0,0.6);
}
.btn-spin-wheel:disabled { opacity: 0.5; cursor: not-allowed; }
.wheel-result {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  min-height: 36px;
  text-align: center;
}

/* TOKENS GAME */
.tokens-game { text-align: center; }
.tokens-board {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  max-width: 420px;
  margin: 0 auto 24px;
}
.token-col { display: flex; flex-direction: column; gap: 8px; }
.token-cell {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(123,47,190,0.4);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.token-cell:hover { border-color: var(--purple-light); background: rgba(123,47,190,0.1); }
.token-cell.red { background: #e74c3c; border-color: #c0392b; cursor: default; }
.token-cell.yellow { background: var(--gold); border-color: var(--gold-dark); cursor: default; }
.token-cell.winning { animation: pulse 0.4s ease-in-out 4; }
.tokens-info {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tokens-info-item { text-align: center; }
.tokens-info-item .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }
.tokens-info-item .value { font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.tokens-message { font-size: 1.1rem; font-weight: 700; min-height: 32px; color: var(--gold); }
.btn-new-game {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(123,47,190,0.4);
  padding: 10px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 12px;
}
.btn-new-game:hover { border-color: var(--purple); color: var(--white); }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 60px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 1.8rem; color: var(--white); margin-bottom: 16px; }
.contact-info h2 span { color: var(--gold); }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 48px; height: 48px;
  background: rgba(123,47,190,0.2);
  border: 1px solid rgba(123,47,190,0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item-text h4 { color: var(--white); margin-bottom: 4px; }
.contact-item-text p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.contact-form-box {
  background: var(--dark3);
  border: 1px solid rgba(123,47,190,0.3);
  border-radius: 20px;
  padding: 40px;
}
.contact-form-box h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}
.policy-content h2 { font-size: 1.5rem; color: var(--white); margin: 32px 0 12px; }
.policy-content h3 { font-size: 1.1rem; color: var(--purple-light); margin: 20px 0 8px; }
.policy-content p { color: var(--text-muted); margin-bottom: 12px; line-height: 1.8; }
.policy-content ul { color: var(--text-muted); padding-left: 24px; margin-bottom: 12px; }
.policy-content ul li { margin-bottom: 6px; line-height: 1.7; }
.policy-content a { color: var(--gold); }
.policy-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid rgba(123,47,190,0.2); }

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes spin-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(123,47,190,0.4); }
  50% { box-shadow: 0 0 40px rgba(123,47,190,0.8); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav ul {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(13,13,26,0.98);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(123,47,190,0.3);
    gap: 4px;
  }
  nav ul.open { display: flex; }
  nav ul li a { display: block; padding: 12px 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .slot-reels { gap: 8px; }
  .reel { width: 80px; height: 96px; }
  .reel-symbol { width: 80px; height: 96px; font-size: 2.4rem; }
  .form-row { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom .disclaimer { text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .tokens-board { grid-template-columns: repeat(7, 1fr); gap: 4px; }
  .game-wrapper { padding: 24px 16px; }
  #wheel-canvas { width: 280px !important; height: 280px !important; }
}
