/* ===== CYBERSPAWN.PRO — MAIN STYLESHEET ===== */
:root {
  --primary: #6c3fc5;
  --primary-dark: #4a2a8a;
  --accent: #f1c40f;
  --accent2: #e74c3c;
  --bg-dark: #0d0820;
  --bg-card: #1a1035;
  --bg-card2: #221545;
  --text: #e8e0f8;
  --text-muted: #9b8dc0;
  --border: #3a2560;
  --radius: 14px;
  --shadow: 0 4px 32px rgba(108,63,197,0.25);
  --transition: 0.3s ease;
}

*, *::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);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

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

/* ===== AGE GATE OVERLAY ===== */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 25, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.age-gate-box {
  background: linear-gradient(135deg, #1a0a2e, #2d1060);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(108,63,197,0.5);
}
.age-gate-box .badge-18 {
  width: 80px; height: 80px;
  background: var(--accent2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 900;
  margin: 0 auto 20px;
  border: 4px solid #fff;
  color: #fff;
}
.age-gate-box h2 { font-size: 1.8rem; margin-bottom: 10px; color: #fff; }
.age-gate-box p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.age-gate-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-yes, .btn-no {
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; border: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-yes { background: linear-gradient(135deg, var(--primary), #9b59b6); color: #fff; }
.btn-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,63,197,0.5); }
.btn-no { background: #2c2c3e; color: var(--text-muted); }
.btn-no:hover { background: #3a3a50; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1035;
  border-top: 2px solid var(--primary);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 8888;
  flex-wrap: wrap;
}
#cookie-banner p { font-size: 0.88rem; color: var(--text-muted); flex: 1; min-width: 200px; }
#cookie-banner p a { color: var(--accent); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept, .btn-cookie-decline {
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: none;
}
.btn-cookie-accept { background: var(--primary); color: #fff; }
.btn-cookie-accept:hover { background: var(--primary-dark); }
.btn-cookie-decline { background: #2c2c3e; color: var(--text-muted); }
.btn-cookie-decline:hover { background: #3a3a50; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(13, 8, 32, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  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.4rem; font-weight: 800; color: #fff;
  text-decoration: none;
}
.logo img { width: 38px; height: 38px; border-radius: 8px; }
.logo span { color: var(--accent); }

nav ul {
  list-style: none;
  display: flex; gap: 6px; align-items: center;
}
nav ul li a {
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  transition: all var(--transition);
}
nav ul li a:hover, nav ul li a.active {
  color: #fff; background: var(--bg-card2);
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), #9b59b6) !important;
  color: #fff !important; padding: 9px 20px !important;
}
.nav-cta:hover { opacity: 0.9; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  min-height: 560px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('hero.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.35);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px;
}
.hero-badge {
  display: inline-block;
  background: rgba(108,63,197,0.3);
  border: 1px solid var(--primary);
  color: var(--accent);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  margin-bottom: 20px; letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.15;
  color: #fff; margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 560px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary, .btn-secondary {
  padding: 14px 32px; border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; border: none;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #9b59b6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,63,197,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,63,197,0.6); color: #fff; }
.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: #fff;
}
.btn-secondary:hover { background: var(--primary); color: #fff; }

/* ===== SECTIONS ===== */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: #fff; margin-bottom: 12px;
}
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.tag {
  display: inline-block;
  background: rgba(108,63,197,0.2);
  border: 1px solid var(--primary);
  color: var(--accent);
  padding: 4px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  margin-bottom: 12px; letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.game-card img { width: 100%; height: 200px; object-fit: cover; }
.game-card-body { padding: 20px; }
.game-card-body h3 { font-size: 1.2rem; color: #fff; margin-bottom: 8px; }
.game-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.btn-play {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), #9b59b6);
  color: #fff; padding: 10px 24px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer; border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-play:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(108,63,197,0.5); color: #fff; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  font-size: 2.5rem; margin-bottom: 16px;
  display: block;
}
.feature-card h3 { color: #fff; margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p { color: var(--text-muted); font-size: 0.88rem; }

/* ===== NEWSLETTER / CTA ===== */
.newsletter-section {
  background: linear-gradient(135deg, #1a0a2e, #2d1060);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}
.newsletter-section h2 { font-size: 2rem; color: #fff; margin-bottom: 12px; }
.newsletter-section p { color: var(--text-muted); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 200px;
  padding: 14px 20px; border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: #fff; font-size: 0.95rem;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form button {
  padding: 14px 28px; border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), #9b59b6);
  color: #fff; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: all var(--transition);
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(108,63,197,0.5); }
.form-success {
  display: none;
  background: rgba(46,204,113,0.15);
  border: 1px solid #2ecc71;
  border-radius: 10px;
  padding: 14px 20px;
  color: #2ecc71;
  margin-top: 16px;
  font-size: 0.95rem;
}

/* ===== VENUES ===== */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.venue-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition);
}
.venue-card:hover { transform: translateY(-4px); }
.venue-card h3 { color: #fff; margin-bottom: 6px; font-size: 1.05rem; }
.venue-card .venue-addr { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; }
.venue-tag {
  display: inline-block;
  background: rgba(108,63,197,0.2);
  color: var(--accent);
  padding: 3px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  position: relative; overflow: hidden;
  min-height: 380px; display: flex; align-items: center;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background-image: url('about-banner.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.3);
}
.about-content {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.about-content img { border-radius: var(--radius); }
.about-text h2 { font-size: 2rem; color: #fff; margin-bottom: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px;
}
.contact-info h2 { font-size: 1.8rem; color: #fff; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 24px; }
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px;
}
.contact-item .ci-icon {
  font-size: 1.4rem; flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--bg-card2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item .ci-text strong { color: #fff; display: block; margin-bottom: 2px; }
.contact-item .ci-text span { color: var(--text-muted); font-size: 0.88rem; }
.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form-box h3 { color: #fff; font-size: 1.3rem; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #fff; font-size: 0.95rem;
  outline: none; font-family: inherit;
  transition: border-color var(--transition);
}
.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-card2); }
.btn-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--primary), #9b59b6);
  color: #fff; font-size: 1rem; font-weight: 700;
  border: none; border-radius: 50px; cursor: pointer;
  transition: all var(--transition);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,63,197,0.5); }

/* ===== GAME PAGES ===== */
.game-page-hero {
  position: relative; overflow: hidden;
  min-height: 300px; display: flex; align-items: center;
}
.game-page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.3);
}
.game-container {
  max-width: 800px; margin: 0 auto; padding: 40px 24px;
}

/* ===== WHEEL GAME ===== */
.wheel-wrapper {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.wheel-outer {
  position: relative; width: 340px; height: 340px;
}
#wheel-canvas { border-radius: 50%; box-shadow: 0 0 40px rgba(108,63,197,0.6); }
.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(--accent2);
  filter: drop-shadow(0 2px 6px rgba(231,76,60,0.8));
  z-index: 10;
}
.wheel-info {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  min-width: 280px;
}
.wheel-info .spin-count { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 8px; }
.wheel-result {
  font-size: 1.3rem; font-weight: 800; color: var(--accent);
  min-height: 36px; margin-bottom: 16px;
}
#btn-spin {
  padding: 14px 48px; border-radius: 50px;
  background: linear-gradient(135deg, var(--accent2), #c0392b);
  color: #fff; font-size: 1.1rem; font-weight: 800;
  border: none; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(231,76,60,0.4);
}
#btn-spin:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(231,76,60,0.6); }
#btn-spin:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== SLOT MACHINE ===== */
.slot-machine {
  background: linear-gradient(135deg, #1a0a2e, #2d1060);
  border: 3px solid var(--primary);
  border-radius: 20px;
  padding: 32px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(108,63,197,0.4);
}
.slot-title {
  text-align: center; font-size: 1.6rem; font-weight: 900;
  color: var(--accent); margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(241,196,15,0.5);
}
.slot-reels {
  display: flex; gap: 12px; justify-content: center;
  margin-bottom: 20px;
}
.reel {
  width: 110px; height: 110px;
  background: #0d0820;
  border: 3px solid var(--border);
  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(-4px); }
  100% { transform: translateY(0); }
}
.slot-win-line {
  text-align: center; font-size: 1.2rem; font-weight: 800;
  min-height: 36px; margin-bottom: 16px; color: var(--accent);
}
.slot-controls {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.slot-tokens {
  color: var(--text-muted); font-size: 0.9rem;
}
.slot-tokens span { color: var(--accent); font-weight: 700; font-size: 1.1rem; }
#btn-slot-spin {
  padding: 14px 56px; border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), #9b59b6);
  color: #fff; font-size: 1.1rem; font-weight: 800;
  border: none; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(108,63,197,0.4);
}
#btn-slot-spin:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,63,197,0.6); }
#btn-slot-spin:disabled { opacity: 0.5; cursor: not-allowed; }
.slot-paytable {
  margin-top: 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px; padding: 16px;
}
.slot-paytable h4 { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.paytable-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0; font-size: 0.85rem; color: var(--text-muted);
}
.paytable-row span:first-child { font-size: 1.1rem; }

/* ===== TOKENS GAME ===== */
.tokens-game {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 600px; margin: 0 auto;
}
.tokens-display {
  text-align: center; margin-bottom: 28px;
}
.tokens-display .big-num {
  font-size: 3.5rem; font-weight: 900; color: var(--accent);
  text-shadow: 0 0 20px rgba(241,196,15,0.4);
}
.tokens-display p { color: var(--text-muted); font-size: 0.9rem; }
.tokens-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-token-action {
  padding: 12px 24px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer; border: none;
  transition: all var(--transition);
}
.btn-collect {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #fff;
}
.btn-collect:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(243,156,18,0.5); }
.btn-share {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: #fff;
}
.btn-share:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(52,152,219,0.5); }
.tokens-log {
  margin-top: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px; padding: 16px;
  max-height: 160px; overflow-y: auto;
}
.tokens-log h4 { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.log-entry {
  font-size: 0.82rem; color: var(--text-muted);
  padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.log-entry .log-plus { color: #2ecc71; font-weight: 700; }
.log-entry .log-minus { color: var(--accent2); font-weight: 700; }

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 860px; margin: 0 auto; padding: 60px 24px;
}
.policy-content h1 { font-size: 2rem; color: #fff; margin-bottom: 8px; }
.policy-content .policy-date { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 36px; }
.policy-content h2 { font-size: 1.25rem; color: #fff; margin: 28px 0 10px; }
.policy-content p, .policy-content li { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 10px; line-height: 1.7; }
.policy-content ul { padding-left: 20px; }
.policy-content a { color: var(--accent); }

/* ===== FOOTER ===== */
footer {
  background: #08041a;
  border-top: 1px solid var(--border);
  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 .logo { margin-bottom: 14px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }
.footer-disclaimer {
  color: var(--text-muted); font-size: 0.78rem;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}
.responsible-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(231,76,60,0.15);
  border: 1px solid rgba(231,76,60,0.3);
  color: #e74c3c;
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  margin-bottom: 12px;
}

/* ===== PAGE HERO (generic) ===== */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 280px; display: flex; align-items: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.3);
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 60px 24px;
}
.page-hero-content h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff; }
.page-hero-content p { color: var(--text-muted); margin-top: 10px; max-width: 500px; }

/* ===== TOAST NOTIFICATION ===== */
#toast {
  position: fixed; bottom: 80px; right: 24px;
  background: var(--bg-card2);
  border: 1px solid var(--primary);
  border-radius: 12px; padding: 14px 20px;
  color: #fff; font-size: 0.9rem;
  z-index: 7777; opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
  max-width: 320px;
}
#toast.show { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  nav ul { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #0d0820; padding: 16px; border-bottom: 1px solid var(--border); }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .wheel-outer { width: 280px; height: 280px; }
  #wheel-canvas { width: 280px !important; height: 280px !important; }
  .slot-reels { gap: 8px; }
  .reel { width: 85px; height: 85px; font-size: 2.8rem; }
  .newsletter-section { padding: 36px 20px; }
}
