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

:root {
  --primary: #6B21A8;
  --primary-dark: #4C1D95;
  --primary-light: #9333EA;
  --accent: #FFD700;
  --accent-dark: #D97706;
  --bg-dark: #0F0A1E;
  --bg-card: #1A1035;
  --bg-card2: #1E1040;
  --text-main: #F3F0FF;
  --text-muted: #A78BFA;
  --text-dark: #1F2937;
  --border: rgba(167,139,250,0.2);
  --shadow: 0 8px 32px rgba(107,33,168,0.35);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

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

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: #FFF; }
img { max-width: 100%; height: auto; display: block; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(15,10,30,0.97);
  border-top: 2px solid var(--primary);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 0.88rem; color: var(--text-muted); flex: 1; min-width: 220px; }
#cookie-banner a { color: var(--accent); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--primary); color: #fff; border: none;
  padding: 9px 22px; border-radius: var(--radius-sm); cursor: pointer;
  font-weight: 600; font-size: 0.9rem; transition: var(--transition);
}
.btn-cookie-accept:hover { background: var(--primary-light); }
.btn-cookie-decline {
  background: transparent; color: var(--text-muted); border: 1px solid var(--border);
  padding: 9px 22px; border-radius: var(--radius-sm); cursor: pointer;
  font-size: 0.9rem; transition: var(--transition);
}
.btn-cookie-decline:hover { border-color: var(--text-muted); color: #fff; }

/* ===== AGE GATE OVERLAY ===== */
#age-gate {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(10,5,20,0.97);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.age-gate-box {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 460px; width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(107,33,168,0.5);
}
.age-gate-box .age-icon { font-size: 4rem; margin-bottom: 16px; }
.age-gate-box h2 { font-size: 2rem; color: var(--accent); margin-bottom: 8px; }
.age-gate-box p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.age-gate-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-age-yes {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border: none; padding: 14px 36px;
  border-radius: 50px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(107,33,168,0.5);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(107,33,168,0.7); }
.btn-age-no {
  background: transparent; color: var(--text-muted);
  border: 2px solid var(--border); padding: 14px 36px;
  border-radius: 50px; font-size: 1rem; cursor: pointer; transition: var(--transition);
}
.btn-age-no:hover { border-color: var(--text-muted); color: #fff; }
.age-disclaimer { font-size: 0.75rem; color: #6B7280; margin-top: 20px; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(15,10,30,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  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(--text-main);
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.logo span { color: var(--accent); }

nav ul {
  list-style: none;
  display: flex; align-items: center; gap: 6px;
}
nav ul li a {
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem; font-weight: 500;
  transition: var(--transition);
}
nav ul li a:hover, nav ul li a.active {
  color: var(--text-main);
  background: rgba(107,33,168,0.25);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
  color: #fff !important; padding: 9px 20px !important;
  border-radius: 50px !important; font-weight: 700 !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(107,33,168,0.5); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-main); border-radius: 2px; transition: 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('../img/hero-banner.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.35);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(107,33,168,0.6) 0%, rgba(15,10,30,0.8) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  max-width: 680px; margin: 0 auto 0 calc(50% - 600px);
  padding: 80px 24px;
}
@media (max-width: 1200px) {
  .hero-content { margin: 0 auto; text-align: center; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(107,33,168,0.4); border: 1px solid var(--primary);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.1rem; color: var(--text-muted);
  margin-bottom: 32px; max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border: none; padding: 15px 36px;
  border-radius: 50px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition); display: inline-block;
  box-shadow: 0 4px 20px rgba(107,33,168,0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(107,33,168,0.7); color: #fff; }
.btn-secondary {
  background: transparent; color: var(--text-main);
  border: 2px solid rgba(255,255,255,0.3); padding: 15px 36px;
  border-radius: 50px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); display: inline-block;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ===== SECTIONS ===== */
section { padding: 80px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-label {
  display: inline-block;
  color: var(--accent); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800; margin-bottom: 14px;
}
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ===== 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: var(--transition);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.game-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
}
.game-card-body { padding: 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: 0.9rem; margin-bottom: 16px; }
.game-tag {
  display: inline-block;
  background: rgba(107,33,168,0.3); color: var(--accent);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 50px; padding: 3px 12px; font-size: 0.78rem; font-weight: 600;
  margin-right: 6px; margin-bottom: 6px;
}
.btn-play {
  display: block; width: 100%; margin-top: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border: none; padding: 12px;
  border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--transition); text-align: center;
}
.btn-play:hover { opacity: 0.9; transform: scale(1.02); color: #fff; }

/* ===== FEATURES ===== */
.features-bg { background: var(--bg-card); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-item {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.feature-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.feature-icon { font-size: 2.4rem; margin-bottom: 14px; }
.feature-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-item p { color: var(--text-muted); font-size: 0.88rem; }

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px;
}
.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px; text-align: center;
}
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ===== LOCATIONS ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.location-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.location-icon { font-size: 1.8rem; margin-bottom: 12px; }
.location-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.location-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 4px; }
.location-card .address { color: #A78BFA; font-size: 0.85rem; }

/* ===== NEWSLETTER ===== */
.newsletter-bg {
  background: linear-gradient(135deg, var(--primary-dark), var(--bg-card));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-inner {
  max-width: 600px; margin: 0 auto; text-align: center;
}
.newsletter-inner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.newsletter-inner p { color: var(--text-muted); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input[type="email"] {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 50px; padding: 13px 22px;
  color: var(--text-main); font-size: 0.95rem;
  outline: none; transition: var(--transition);
}
.newsletter-form input[type="email"]:focus { border-color: var(--primary-light); }
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }
.btn-subscribe {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--bg-dark); border: none; padding: 13px 30px;
  border-radius: 50px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-subscribe:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,215,0,0.4); }
.form-success {
  display: none;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  border-radius: var(--radius-sm);
  padding: 14px 20px; margin-top: 16px;
  color: #4ADE80; font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  background: rgba(10,5,20,0.98);
  border-top: 1px solid var(--border);
  padding: 60px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1200px; margin: 0 auto 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: var(--accent); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--text-main); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--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: 0.82rem; }
.footer-disclaimer {
  max-width: 1200px; margin: 16px auto 0;
  background: rgba(107,33,168,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.78rem; color: #6B7280; line-height: 1.5;
}

/* ===== GAME MODAL ===== */
.game-modal {
  display: none;
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(10,5,20,0.95);
  align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.game-modal.open { display: flex; }
.game-modal-inner {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 20px;
  width: 90%; max-width: 700px;
  max-height: 90vh; overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: 0 0 60px rgba(107,33,168,0.5);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.1); border: none;
  color: var(--text-main); width: 36px; height: 36px;
  border-radius: 50%; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--primary); }
.game-modal-inner h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 24px; color: var(--accent); }

/* ===== WHEEL GAME ===== */
.wheel-container {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.wheel-wrapper { position: relative; display: inline-block; }
#wheelCanvas { border-radius: 50%; box-shadow: 0 0 40px rgba(107,33,168,0.6); }
.wheel-pointer {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--accent);
  filter: drop-shadow(0 2px 6px rgba(255,215,0,0.7));
}
.wheel-result {
  font-size: 1.2rem; font-weight: 700; color: var(--accent);
  min-height: 30px; text-align: center;
}
.wheel-score {
  background: rgba(107,33,168,0.2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 20px;
  font-size: 0.9rem; color: var(--text-muted);
}
.wheel-score span { color: var(--accent); font-weight: 700; }
#spinBtn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border: none; padding: 14px 48px;
  border-radius: 50px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(107,33,168,0.5);
}
#spinBtn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(107,33,168,0.7); }
#spinBtn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== SLOT GAME ===== */
.slot-machine {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.slot-reels {
  display: flex; gap: 8px;
  background: rgba(0,0,0,0.5);
  border: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5), 0 0 30px rgba(255,215,0,0.3);
}
.reel {
  width: 90px; height: 90px;
  background: #0F0A1E;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; overflow: hidden;
  transition: transform 0.1s;
}
.reel.spinning { animation: reelSpin 0.15s linear infinite; }
@keyframes reelSpin {
  0% { transform: translateY(-4px); }
  50% { transform: translateY(4px); }
  100% { transform: translateY(-4px); }
}
.slot-result {
  font-size: 1.2rem; font-weight: 700; color: var(--accent);
  min-height: 30px; text-align: center;
}
.slot-score {
  background: rgba(107,33,168,0.2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 20px;
  font-size: 0.9rem; color: var(--text-muted);
}
.slot-score span { color: var(--accent); font-weight: 700; }
#spinSlotBtn {
  background: linear-gradient(135deg, #D97706, #FFD700);
  color: var(--bg-dark); border: none; padding: 14px 48px;
  border-radius: 50px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
}
#spinSlotBtn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,215,0,0.6); }
#spinSlotBtn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== COINS GAME ===== */
.coins-game {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.coins-board {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
  background: rgba(0,0,0,0.3); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.coin-cell {
  width: 60px; height: 60px;
  background: rgba(107,33,168,0.2);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.coin-cell:hover { border-color: var(--accent); transform: scale(1.1); }
.coin-cell.revealed { background: rgba(255,215,0,0.15); border-color: var(--accent); }
.coin-cell.empty { background: rgba(255,0,0,0.1); border-color: rgba(255,0,0,0.3); }
.coins-info {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
}
.coins-stat {
  background: rgba(107,33,168,0.2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 20px; text-align: center;
}
.coins-stat .val { font-size: 1.4rem; font-weight: 800; color: var(--accent); }
.coins-stat .lbl { font-size: 0.78rem; color: var(--text-muted); }
#newGameBtn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border: none; padding: 12px 36px;
  border-radius: 50px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
#newGameBtn:hover { transform: translateY(-2px); }
.coins-result { font-size: 1.1rem; font-weight: 700; color: var(--accent); min-height: 28px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 28px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(107,33,168,0.3); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-detail-text h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.contact-detail-text p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }
.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 7px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-main); font-size: 0.95rem;
  outline: none; transition: var(--transition);
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary-light);
  background: rgba(107,33,168,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-card); color: var(--text-main); }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border: none; padding: 14px;
  border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-1px); }

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 820px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}
.policy-content h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.policy-content .last-updated { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 32px; }
.policy-content h2 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 12px; color: var(--accent); }
.policy-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.7; }
.policy-content ul { color: var(--text-muted); padding-left: 22px; margin-bottom: 14px; }
.policy-content ul li { margin-bottom: 6px; line-height: 1.6; }
.policy-content a { color: var(--accent); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--bg-card));
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 16px; font-size: 0.85rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ===== RESPONSIBLE GAMING ===== */
.rg-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px;
}
.rg-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.rg-card .rg-icon { font-size: 2.2rem; margin-bottom: 14px; }
.rg-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.rg-card p { color: var(--text-muted); font-size: 0.88rem; }
.rg-resources {
  background: rgba(107,33,168,0.1); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; margin-top: 32px;
}
.rg-resources h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; color: var(--accent); }
.rg-resources ul { list-style: none; }
.rg-resources ul li { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); font-size: 0.9rem; }
.rg-resources ul li:last-child { border-bottom: none; }
.rg-resources ul li strong { color: var(--text-main); }

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed; bottom: 80px; right: 24px; z-index: 9500;
  background: var(--bg-card); border: 1px solid var(--primary);
  border-radius: var(--radius-sm); padding: 14px 20px;
  color: var(--text-main); font-size: 0.9rem;
  box-shadow: var(--shadow);
  transform: translateX(120%); transition: transform 0.4s ease;
  max-width: 300px;
}
.toast.show { transform: translateX(0); }
.toast.success { border-color: #22C55E; }
.toast.error { border-color: #EF4444; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav ul { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(15,10,30,0.98); border-bottom: 1px solid var(--border); padding: 16px; }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  section { padding: 56px 16px; }
  .policy-content { padding: 28px 20px; }
  .contact-form-box { padding: 24px; }
  .game-modal-inner { padding: 20px; }
  .coins-board { gap: 6px; padding: 14px; }
  .coin-cell { width: 48px; height: 48px; font-size: 1.4rem; }
}
