/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0d0020;
  color: #e8e0f0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --purple-dark: #0d0020;
  --purple-mid: #2a0050;
  --purple-main: #6a00cc;
  --purple-light: #9b30ff;
  --gold: #ffd700;
  --gold-light: #ffe566;
  --teal: #00d4aa;
  --pink: #ff4da6;
  --white: #ffffff;
  --text-light: #e8e0f0;
  --text-muted: #a090c0;
  --card-bg: rgba(106,0,204,0.15);
  --card-border: rgba(255,215,0,0.25);
  --radius: 16px;
  --shadow: 0 8px 32px rgba(106,0,204,0.3);
}

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,0,32,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,215,0,0.2);
  padding: 0 24px;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  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(--gold);
  letter-spacing: 1px;
}
.logo span { color: var(--purple-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: all 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(106,0,204,0.4);
  color: var(--gold);
}
.nav-cta {
  background: linear-gradient(135deg, var(--purple-main), var(--purple-light)) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 15px rgba(106,0,204,0.4);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(106,0,204,0.6) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,0,32,0.7) 0%, rgba(42,0,80,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}
.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: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(106,0,204,0.8);
}
.hero h1 .highlight { color: var(--gold); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--purple-main), var(--purple-light));
  color: var(--white);
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(106,0,204,0.5);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(106,0,204,0.7); }
.btn-secondary {
  background: transparent;
  color: var(--gold);
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255,215,0,0.1); transform: translateY(-3px); }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== SECTION BASE ===== */
section { padding: 80px 24px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  background: rgba(106,0,204,0.3);
  border: 1px solid var(--purple-light);
  color: var(--purple-light);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.section-title .gold { color: var(--gold); }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== GAMES SECTION ===== */
.games-section { background: var(--purple-dark); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.game-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.game-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold); }
.game-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.game-card-body { padding: 24px; }
.game-card-tag {
  display: inline-block;
  background: rgba(106,0,204,0.4);
  color: var(--purple-light);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.game-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.game-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.btn-play {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-dark);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  width: 100%;
}
.btn-play:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,215,0,0.4); }

/* ===== FEATURES ===== */
.features-section { background: linear-gradient(180deg, var(--purple-dark) 0%, var(--purple-mid) 100%); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.feature-card:hover { background: rgba(106,0,204,0.2); border-color: var(--purple-light); transform: translateY(-4px); }
.feature-icon { font-size: 3rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.2rem; 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(--purple-mid); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.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: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-list { margin: 20px 0; }
.about-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: var(--text-light); }
.about-list li::before { content: '✦'; color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--purple-main), #3a0080);
  text-align: center;
}
.newsletter-inner { max-width: 600px; margin: 0 auto; }
.newsletter-inner h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.newsletter-inner p { color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 10px;
  border: 2px 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.3s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--purple-dark);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); transform: translateY(-2px); }
.newsletter-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 12px; }

/* ===== FOOTER ===== */
footer {
  background: #07000f;
  border-top: 1px solid rgba(255,215,0,0.1);
  padding: 60px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { color: var(--gold); font-weight: 700; margin-bottom: 16px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 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 {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom a { color: var(--purple-light); }
.footer-bottom a:hover { color: var(--gold); }
.responsible-gaming {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 8px;
  padding: 12px 20px;
  margin: 24px auto;
  max-width: 1200px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.responsible-gaming strong { color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(106,0,204,0.3) 0%, transparent 100%);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--purple-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info h3 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-item-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item-text h4 { color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.contact-item-text p { color: var(--text-muted); font-size: 0.9rem; }
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form-wrap h3 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--text-light); font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--purple-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--purple-main), var(--purple-light));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(106,0,204,0.5); }
.form-success {
  display: none;
  background: rgba(0,212,170,0.15);
  border: 1px solid var(--teal);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: var(--teal);
  font-weight: 600;
  margin-top: 16px;
}

/* ===== GAMES PAGE ===== */
.games-page-section { background: var(--purple-dark); }

/* ===== SLOT MACHINE ===== */
.slot-machine-wrap {
  background: linear-gradient(135deg, #1a0035, #2d0060);
  border: 3px solid var(--gold);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto 60px;
  box-shadow: 0 0 60px rgba(255,215,0,0.2), inset 0 0 40px rgba(106,0,204,0.3);
  text-align: center;
}
.slot-machine-wrap h2 { color: var(--gold); font-size: 1.8rem; font-weight: 900; margin-bottom: 8px; }
.slot-machine-wrap .subtitle { color: var(--text-muted); margin-bottom: 30px; font-size: 0.9rem; }
.slot-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.reel {
  width: 110px;
  height: 110px;
  background: #0d0020;
  border: 3px solid rgba(255,215,0,0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}
.reel.spinning { animation: reelSpin 0.1s linear infinite; }
@keyframes reelSpin {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}
.slot-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  padding: 12px 20px;
  margin-bottom: 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; }
.slot-info-item .value { font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.btn-spin {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-dark);
  padding: 16px 48px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 6px 25px rgba(255,215,0,0.4);
}
.btn-spin:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(255,215,0,0.6); }
.btn-spin:disabled { opacity: 0.6; cursor: not-allowed; }
.slot-result {
  min-height: 40px;
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
}
.slot-result.win { color: var(--gold); animation: pulse 0.5s ease-in-out 3; }
.slot-result.lose { color: var(--text-muted); }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.paytable { margin-top: 24px; text-align: left; }
.paytable h4 { color: var(--gold); margin-bottom: 12px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.paytable-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.paytable-item {
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.paytable-item .symbols { font-size: 1rem; }
.paytable-item .reward { color: var(--gold); font-weight: 700; }

/* ===== SPIN WHEEL ===== */
.wheel-wrap {
  background: linear-gradient(135deg, #1a0035, #2d0060);
  border: 3px solid var(--purple-light);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto 60px;
  box-shadow: 0 0 60px rgba(155,48,255,0.2);
  text-align: center;
}
.wheel-wrap h2 { color: var(--purple-light); font-size: 1.8rem; font-weight: 900; margin-bottom: 8px; }
.wheel-wrap .subtitle { color: var(--text-muted); margin-bottom: 30px; font-size: 0.9rem; }
.wheel-container {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto 24px;
}
#wheelCanvas { border-radius: 50%; box-shadow: 0 0 40px rgba(155,48,255,0.4); }
.wheel-pointer {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 36px solid var(--gold);
  filter: drop-shadow(0 4px 8px rgba(255,215,0,0.6));
  z-index: 10;
}
.btn-wheel-spin {
  background: linear-gradient(135deg, var(--purple-main), var(--purple-light));
  color: var(--white);
  padding: 16px 48px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 6px 25px rgba(106,0,204,0.5);
}
.btn-wheel-spin:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(106,0,204,0.7); }
.btn-wheel-spin:disabled { opacity: 0.6; cursor: not-allowed; }
.wheel-result {
  min-height: 40px;
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-light);
}
.wheel-result.active { animation: pulse 0.5s ease-in-out 3; color: var(--gold); }

/* ===== COIN FLIP ===== */
.coin-flip-wrap {
  background: linear-gradient(135deg, #001a35, #002d60);
  border: 3px solid var(--teal);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(0,212,170,0.15);
  text-align: center;
}
.coin-flip-wrap h2 { color: var(--teal); font-size: 1.8rem; font-weight: 900; margin-bottom: 8px; }
.coin-flip-wrap .subtitle { color: var(--text-muted); margin-bottom: 30px; font-size: 0.9rem; }
.coin-scene {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  perspective: 600px;
}
.coin-3d {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.coin-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  backface-visibility: hidden;
  border: 6px solid var(--gold);
  box-shadow: 0 0 30px rgba(255,215,0,0.3);
}
.coin-heads { background: radial-gradient(circle, #ffd700, #cc9900); }
.coin-tails { background: radial-gradient(circle, #9b30ff, #4a0080); transform: rotateY(180deg); }
.coin-choice-btns { display: flex; gap: 16px; justify-content: center; margin-bottom: 20px; }
.btn-choice {
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
}
.btn-choice.heads { border-color: var(--gold); color: var(--gold); }
.btn-choice.tails { border-color: var(--purple-light); color: var(--purple-light); }
.btn-choice.selected.heads { background: rgba(255,215,0,0.2); }
.btn-choice.selected.tails { background: rgba(155,48,255,0.2); }
.btn-flip {
  background: linear-gradient(135deg, var(--teal), #00a882);
  color: var(--purple-dark);
  padding: 14px 40px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.btn-flip:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,212,170,0.4); }
.btn-flip:disabled { opacity: 0.6; cursor: not-allowed; }
.coin-result {
  min-height: 40px;
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 700;
}
.coin-result.win { color: var(--teal); animation: pulse 0.5s ease-in-out 3; }
.coin-result.lose { color: var(--text-muted); }
.coin-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.coin-stat { text-align: center; }
.coin-stat .num { font-size: 1.5rem; font-weight: 800; color: var(--teal); }
.coin-stat .lbl { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== POLICY PAGES ===== */
.policy-section { background: var(--purple-dark); }
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 48px;
}
.policy-content h2 { color: var(--gold); font-size: 1.5rem; font-weight: 700; margin: 32px 0 12px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 { color: var(--purple-light); font-size: 1.1rem; font-weight: 600; margin: 20px 0 8px; }
.policy-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { margin: 12px 0 16px 20px; }
.policy-content ul li { color: var(--text-muted); margin-bottom: 8px; list-style: disc; }
.policy-content a { color: var(--purple-light); }
.policy-content a:hover { color: var(--gold); }
.policy-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.policy-toc { background: rgba(106,0,204,0.1); border-radius: 10px; padding: 20px 24px; margin-bottom: 32px; }
.policy-toc h4 { color: var(--gold); margin-bottom: 12px; }
.policy-toc ol { margin-left: 20px; }
.policy-toc ol li { margin-bottom: 6px; }
.policy-toc ol li a { color: var(--purple-light); font-size: 0.9rem; }

/* ===== 18+ POPUP ===== */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,0,15,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-popup {
  background: linear-gradient(135deg, #1a0035, #2d0060);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 80px rgba(255,215,0,0.2);
  animation: popupIn 0.4s ease-out;
}
@keyframes popupIn { from { opacity:0; transform: scale(0.85); } to { opacity:1; transform: scale(1); } }
.age-icon { font-size: 4rem; margin-bottom: 16px; }
.age-popup h2 { font-size: 2rem; font-weight: 900; color: var(--gold); margin-bottom: 8px; }
.age-popup p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.age-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-age-yes {
  background: linear-gradient(135deg, var(--purple-main), var(--purple-light));
  color: var(--white);
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(106,0,204,0.5); }
.btn-age-no {
  background: transparent;
  color: var(--text-muted);
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-age-no:hover { border-color: var(--pink); color: var(--pink); }
.age-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 20px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(13,0,32,0.97);
  border-top: 1px solid rgba(255,215,0,0.3);
  padding: 20px 24px;
  z-index: 8000;
  display: none;
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 200px; font-size: 0.9rem; color: var(--text-muted); }
.cookie-text a { color: var(--purple-light); }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--gold);
  color: var(--purple-dark);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-decline {
  background: transparent;
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.btn-cookie-decline:hover { border-color: var(--text-muted); color: var(--white); }

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  top: 90px;
  right: 24px;
  background: linear-gradient(135deg, var(--purple-main), var(--purple-light));
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 7000;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 25px rgba(106,0,204,0.4);
  max-width: 320px;
}
.toast.show { transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(13,0,32,0.98); padding: 16px; border-bottom: 1px solid rgba(255,215,0,0.2); gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .slot-reels { gap: 8px; }
  .reel { width: 90px; height: 90px; font-size: 2.8rem; }
  .policy-content { padding: 24px; }
  .contact-form-wrap { padding: 24px; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .reel { width: 75px; height: 75px; font-size: 2.2rem; }
  .wheel-container { width: 260px; height: 260px; }
  #wheelCanvas { width: 260px; height: 260px; }
}
