/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0d0d1a;
  color: #e0e0f0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: #f0c040; text-decoration: none; transition: color .2s; }
a:hover { color: #ffe080; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --gold: #f0c040;
  --gold-light: #ffe080;
  --purple: #6c3fc5;
  --purple-dark: #4a2a8a;
  --neon-pink: #e040fb;
  --neon-blue: #40c4ff;
  --dark-bg: #0d0d1a;
  --card-bg: #1a1a2e;
  --card-border: #2e2e50;
  --text-muted: #9090b0;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,.5);
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #1a1a2e; border-top: 2px solid var(--gold);
  padding: 16px 24px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.6);
}
#cookie-banner p { font-size: .9rem; color: #ccc; flex: 1; min-width: 220px; }
#cookie-banner a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--gold); color: #0d0d1a; border: none;
  padding: 9px 22px; border-radius: 6px; cursor: pointer;
  font-weight: 700; font-size: .9rem; transition: background .2s;
}
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-decline {
  background: transparent; color: #ccc; border: 1px solid #555;
  padding: 9px 22px; border-radius: 6px; cursor: pointer;
  font-size: .9rem; transition: border-color .2s, color .2s;
}
.btn-cookie-decline:hover { border-color: #999; color: #fff; }

/* ===== AGE GATE OVERLAY ===== */
#age-gate {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
}
.age-gate-box {
  background: #1a1a2e; border: 2px solid var(--gold);
  border-radius: var(--radius); padding: 48px 40px;
  max-width: 480px; width: 90%; text-align: center;
  box-shadow: 0 0 60px rgba(240,192,64,.25);
}
.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: #bbb; margin-bottom: 28px; font-size: .95rem; }
.age-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-age-yes {
  background: linear-gradient(135deg, var(--purple), var(--neon-pink));
  color: #fff; border: none; padding: 14px 36px; border-radius: 8px;
  font-size: 1.1rem; font-weight: 700; cursor: pointer;
  transition: opacity .2s, transform .15s;
}
.btn-age-yes:hover { opacity: .9; transform: translateY(-2px); }
.btn-age-no {
  background: transparent; color: #888; border: 1px solid #444;
  padding: 14px 36px; border-radius: 8px; font-size: 1.1rem;
  cursor: pointer; transition: border-color .2s;
}
.btn-age-no:hover { border-color: #888; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(13,13,26,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800; color: var(--gold);
  letter-spacing: .5px;
}
.logo span { color: #fff; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: #ccc; font-size: .95rem; font-weight: 500;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--neon-pink));
  color: #fff !important; padding: 9px 22px; border-radius: 8px;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: .9; color: #fff !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 26px; height: 2px; background: #ccc; border-radius: 2px; transition: .3s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: #1a1a2e; border-top: 1px solid var(--card-border);
  padding: 12px 0;
}
.mobile-menu a {
  padding: 12px 24px; color: #ccc; font-size: 1rem; display: block;
  border-bottom: 1px solid var(--card-border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); background: rgba(255,255,255,.04); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/hero.jpg') center/cover no-repeat;
  filter: brightness(.45);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,26,0) 40%, rgba(13,13,26,1) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 0 24px; }
.hero-badge {
  display: inline-block; background: rgba(240,192,64,.15);
  border: 1px solid var(--gold); color: var(--gold);
  padding: 6px 18px; border-radius: 20px; font-size: .85rem;
  font-weight: 600; margin-bottom: 20px; letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.8);
}
.hero-content h1 em { color: var(--gold); font-style: normal; }
.hero-content p {
  font-size: 1.15rem; color: #ccc; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--neon-pink));
  color: #fff; border: none; padding: 16px 40px; border-radius: 10px;
  font-size: 1.1rem; font-weight: 700; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(108,63,197,.5);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(108,63,197,.7); color: #fff; }
.btn-secondary {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4);
  padding: 14px 36px; border-radius: 10px; font-size: 1.1rem;
  font-weight: 600; cursor: pointer; transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(240,192,64,.08); color: #fff; }

/* ===== SECTIONS ===== */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label {
  display: inline-block; color: var(--gold); font-size: .8rem;
  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; margin-bottom: 14px; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.game-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.game-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(108,63,197,.35); }
.game-card-img { position: relative; height: 200px; overflow: hidden; }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.game-card:hover .game-card-img img { transform: scale(1.07); }
.game-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--purple); color: #fff;
  padding: 4px 12px; border-radius: 20px; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}
.game-card-body { padding: 22px; }
.game-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.game-card-body p { color: var(--text-muted); font-size: .9rem; margin-bottom: 18px; }
.btn-play {
  display: inline-block; background: var(--gold); color: #0d0d1a;
  padding: 10px 28px; border-radius: 8px; font-weight: 700;
  font-size: .9rem; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-play:hover { background: var(--gold-light); transform: translateY(-2px); color: #0d0d1a; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: border-color .25s;
}
.feature-card:hover { border-color: var(--purple); }
.feature-icon { font-size: 2.8rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: .9rem; }

/* ===== ABOUT SECTION ===== */
.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: 100%; object-fit: cover; }
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 20px; }
.about-text h2 em { color: var(--gold); font-style: normal; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px;
}
.stat-box {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 10px; padding: 20px; text-align: center;
}
.stat-box .num { font-size: 2rem; font-weight: 900; color: var(--gold); }
.stat-box .lbl { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--purple-dark), #1a1a2e);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.newsletter-inner {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.newsletter-inner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.newsletter-inner p { color: #bbb; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input[type="email"] {
  flex: 1; min-width: 240px; padding: 14px 18px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; color: #fff; font-size: 1rem;
  outline: none; transition: border-color .2s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: #888; }
.newsletter-form button {
  background: var(--gold); color: #0d0d1a; border: none;
  padding: 14px 32px; border-radius: 8px; font-weight: 700;
  font-size: 1rem; cursor: pointer; transition: background .2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); }
.form-success {
  display: none; color: #4caf50; font-weight: 600; margin-top: 12px;
}

/* ===== LOCATIONS ===== */
.locations-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.location-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color .25s;
}
.location-card:hover { border-color: var(--gold); }
.location-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.location-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 6px; }
.location-card .loc-icon { margin-right: 6px; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form-wrap { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 36px; }
.contact-form-wrap h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .9rem; color: #bbb; margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px; color: #fff; font-size: .95rem;
  outline: none; transition: border-color .2s; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #1a1a2e; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--purple), var(--neon-pink));
  color: #fff; border: none; padding: 14px; border-radius: 8px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: opacity .2s, transform .15s;
}
.btn-submit:hover { opacity: .9; transform: translateY(-2px); }
.contact-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-text strong { display: block; font-size: .95rem; margin-bottom: 4px; }
.contact-info-text span { color: var(--text-muted); font-size: .9rem; }
.form-response {
  display: none; margin-top: 16px; padding: 14px 18px;
  border-radius: 8px; font-size: .95rem; font-weight: 600;
}
.form-response.success { background: rgba(76,175,80,.15); border: 1px solid #4caf50; color: #4caf50; }
.form-response.error { background: rgba(244,67,54,.15); border: 1px solid #f44336; color: #f44336; }

/* ===== GAME MODAL ===== */
.game-modal-overlay {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,.88); display: none;
  align-items: center; justify-content: center; padding: 20px;
}
.game-modal-overlay.open { display: flex; }
.game-modal {
  background: #1a1a2e; border: 1px solid var(--card-border);
  border-radius: 16px; padding: 32px;
  max-width: 640px; width: 100%;
  position: relative; max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.1); border: none; color: #fff;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.2); }
.game-modal h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; color: var(--gold); }
.game-modal p.game-desc { color: #bbb; margin-bottom: 24px; font-size: .9rem; }

/* ===== SLOT MACHINE ===== */
.slot-machine {
  background: linear-gradient(180deg, #2a1a4a, #1a0a2e);
  border: 3px solid var(--gold); border-radius: 16px;
  padding: 28px; text-align: center;
}
.slot-reels {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 20px;
}
.reel {
  width: 90px; height: 90px; background: #fff;
  border-radius: 10px; border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; overflow: hidden; position: relative;
}
.reel-inner {
  transition: transform .05s linear;
}
.slot-result {
  font-size: 1.1rem; font-weight: 700; min-height: 28px;
  margin-bottom: 16px; color: var(--gold);
}
.slot-score { color: #bbb; font-size: .9rem; margin-bottom: 20px; }
.slot-score span { color: var(--gold); font-weight: 700; }
.btn-spin {
  background: linear-gradient(135deg, #e040fb, #7c4dff);
  color: #fff; border: none; padding: 14px 48px;
  border-radius: 10px; font-size: 1.1rem; font-weight: 700;
  cursor: pointer; transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(224,64,251,.4);
}
.btn-spin:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(224,64,251,.6); }
.btn-spin:disabled { opacity: .6; cursor: not-allowed; }

/* ===== WHEEL OF FORTUNE ===== */
.wheel-container { text-align: center; }
.wheel-wrap { position: relative; display: inline-block; margin-bottom: 20px; }
#wheelCanvas { display: block; max-width: 100%; }
.wheel-pointer {
  position: absolute; top: -18px; 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(240,192,64,.8));
}
.wheel-result {
  font-size: 1.2rem; font-weight: 700; color: var(--gold);
  min-height: 30px; margin-bottom: 16px;
}
.btn-spin-wheel {
  background: linear-gradient(135deg, #f0c040, #e08000);
  color: #0d0d1a; border: none; padding: 14px 48px;
  border-radius: 10px; font-size: 1.1rem; font-weight: 700;
  cursor: pointer; transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(240,192,64,.4);
}
.btn-spin-wheel:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(240,192,64,.6); }
.btn-spin-wheel:disabled { opacity: .6; cursor: not-allowed; }

/* ===== COIN FLIP ===== */
.coin-game { text-align: center; }
.coin-wrap { perspective: 600px; margin: 0 auto 24px; width: 120px; height: 120px; }
.coin {
  width: 120px; height: 120px; position: relative;
  transform-style: preserve-3d; transition: transform 1.5s cubic-bezier(.4,0,.2,1);
}
.coin-face, .coin-back {
  position: absolute; inset: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; backface-visibility: hidden;
  border: 4px solid var(--gold);
}
.coin-face { background: radial-gradient(circle, #f0c040, #c07000); }
.coin-back { background: radial-gradient(circle, #c0c0c0, #808080); transform: rotateY(180deg); }
.coin.flipping { animation: coinFlip 1.5s ease-in-out forwards; }
@keyframes coinFlip {
  0% { transform: rotateY(0); }
  100% { transform: rotateY(var(--flip-end)); }
}
.coin-choice-btns { display: flex; gap: 16px; justify-content: center; margin-bottom: 16px; }
.btn-choice {
  padding: 12px 32px; border-radius: 8px; font-size: 1rem;
  font-weight: 700; cursor: pointer; border: 2px solid transparent;
  transition: all .2s;
}
.btn-choice.heads { background: var(--gold); color: #0d0d1a; }
.btn-choice.tails { background: #808080; color: #fff; }
.btn-choice:hover { transform: translateY(-2px); }
.btn-choice:disabled { opacity: .5; cursor: not-allowed; }
.coin-result { font-size: 1.1rem; font-weight: 700; color: var(--gold); min-height: 28px; }
.coin-score { color: #bbb; font-size: .9rem; margin-top: 8px; }
.coin-score span { color: var(--gold); font-weight: 700; }

/* ===== FOOTER ===== */
footer {
  background: #0a0a16; border-top: 1px solid var(--card-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: 16px; }
.footer-brand p { color: var(--text-muted); font-size: .9rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-size: .9rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--card-border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: .85rem; }
.footer-bottom .footer-legal a { color: var(--text-muted); font-size: .85rem; margin-left: 20px; }
.footer-bottom .footer-legal a:hover { color: var(--gold); }
.responsible-gaming {
  background: rgba(240,192,64,.07); border: 1px solid rgba(240,192,64,.25);
  border-radius: 10px; padding: 20px 24px; margin-bottom: 32px;
  display: flex; align-items: flex-start; gap: 14px;
}
.responsible-gaming .rg-icon { font-size: 1.8rem; flex-shrink: 0; }
.responsible-gaming p { color: #bbb; font-size: .85rem; line-height: 1.6; }
.responsible-gaming strong { color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 80px 24px 60px;
  background: linear-gradient(180deg, #1a0a2e, #0d0d1a);
  text-align: center; border-bottom: 1px solid var(--card-border);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin-bottom: 14px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ===== POLICY PAGES ===== */
.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 { font-size: 1.5rem; font-weight: 700; color: var(--gold); margin: 32px 0 12px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { color: #bbb; margin-bottom: 14px; line-height: 1.75; }
.policy-content ul { margin: 12px 0 14px 20px; list-style: disc; }
.policy-content ul li { color: #bbb; margin-bottom: 8px; line-height: 1.6; }
.policy-content a { color: var(--gold); }
.policy-content strong { color: #e0e0f0; }

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

/* ===== ABOUT PAGE ===== */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.team-avatar { font-size: 3rem; margin-bottom: 12px; }
.team-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card p { color: var(--text-muted); font-size: .85rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 14px 24px; max-width: 1200px; margin: 0 auto;
  font-size: .85rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* ===== TOAST ===== */
#toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #2a2a4a; border: 1px solid var(--gold);
  color: #fff; padding: 12px 28px; border-radius: 8px;
  font-size: .95rem; font-weight: 600; z-index: 9998;
  opacity: 0; transition: opacity .3s, transform .3s;
  pointer-events: none; white-space: nowrap;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .policy-content { padding: 28px 20px; }
  .game-modal { padding: 24px 18px; }
  .reel { width: 72px; height: 72px; font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .coin-choice-btns { flex-direction: column; align-items: center; }
}
