/* ============================================================
   VectorGaming.pro — Main Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple-dark:  #1e0a3c;
  --purple-mid:   #4c1d95;
  --purple-light: #7c3aed;
  --gold:         #f59e0b;
  --gold-light:   #fcd34d;
  --white:        #ffffff;
  --gray-light:   #f3f4f6;
  --gray-mid:     #9ca3af;
  --text-dark:    #1f2937;
  --card-bg:      #2d1b69;
  --nav-h:        70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--purple-dark);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- Cookie Banner ---------- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(30, 10, 60, 0.97);
  border-top: 2px solid var(--gold);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9000;
  flex-wrap: wrap;
}
#cookie-banner p { font-size: 0.9rem; flex: 1; min-width: 200px; }
#cookie-banner .btn-cookie {
  background: var(--gold);
  color: var(--purple-dark);
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
#cookie-banner .btn-cookie:hover { background: var(--gold-light); }

/* ---------- Age Gate Overlay ---------- */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10, 3, 25, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.age-gate-box {
  background: linear-gradient(135deg, #2d1b69, #1e0a3c);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.3);
}
.age-gate-box .age-icon { font-size: 4rem; margin-bottom: 16px; }
.age-gate-box h2 { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.age-gate-box p { color: var(--gray-mid); margin-bottom: 28px; font-size: 0.95rem; }
.age-gate-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-age-yes {
  background: var(--gold);
  color: var(--purple-dark);
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-age-yes:hover { background: var(--gold-light); }
.btn-age-no {
  background: transparent;
  color: var(--gray-mid);
  border: 2px solid var(--gray-mid);
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-age-no:hover { border-color: #ef4444; color: #ef4444; }

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  height: var(--nav-h);
  background: rgba(30, 10, 60, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 1000;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo span { color: var(--white); }
.nav-logo .logo-icon { font-size: 1.8rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--purple-dark) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; text-decoration: none !important; }

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 80px 48px;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--purple-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 32px;
  max-width: 520px;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--purple-dark);
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); text-decoration: none; }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Section Shared ---------- */
.section { padding: 80px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}
.section-title span { color: var(--gold); }
.section-sub {
  text-align: center;
  color: var(--gray-mid);
  margin-bottom: 48px;
  font-size: 1rem;
}
.divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px auto 40px;
}

/* ---------- Features Strip ---------- */
.features-strip {
  background: var(--card-bg);
  padding: 40px 32px;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.feature-card {
  text-align: center;
  padding: 24px 16px;
}
.feature-icon { font-size: 2.5rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--gold); }
.feature-card p { font-size: 0.9rem; color: var(--gray-mid); }

/* ---------- Games Section ---------- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.game-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(245,158,11,0.2); }
.game-card img { width: 100%; height: 220px; object-fit: cover; }
.game-card-body { padding: 20px; }
.game-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.game-card-body p { font-size: 0.9rem; color: var(--gray-mid); margin-bottom: 16px; }
.game-tag {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  color: var(--gold);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* ---------- Newsletter ---------- */
.newsletter-section {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  padding: 80px 32px;
  text-align: center;
  border-top: 1px solid rgba(245,158,11,0.2);
  border-bottom: 1px solid rgba(245,158,11,0.2);
}
.newsletter-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.newsletter-section h2 span { color: var(--gold); }
.newsletter-section p { color: var(--gray-mid); margin-bottom: 32px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid rgba(245,158,11,0.3);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--gray-mid); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  background: var(--gold);
  color: var(--purple-dark);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-success {
  display: none;
  background: rgba(34,197,94,0.15);
  border: 1px solid #22c55e;
  color: #86efac;
  padding: 14px 24px;
  border-radius: 10px;
  margin-top: 16px;
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(245,158,11,0.15);
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.95rem; color: #d1d5db; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 700; color: var(--gold); font-size: 0.9rem; }
.testimonial-location { font-size: 0.8rem; color: var(--gray-mid); }

/* ---------- Locations ---------- */
.locations-section { background: var(--card-bg); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.location-card {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(245,158,11,0.15);
}
.location-card h4 { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.location-card p { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.7; }

/* ---------- Page Banner ---------- */
.page-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.page-banner-content {
  position: relative;
  z-index: 1;
  padding: 60px 48px;
}
.page-banner-content h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 10px; }
.page-banner-content h1 span { color: var(--gold); }
.page-banner-content p { color: var(--gray-mid); font-size: 1rem; }

/* ---------- Games Page ---------- */
.game-embed-section { padding: 60px 32px; }
.game-embed-inner { max-width: 900px; margin: 0 auto; }
.game-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.game-tab {
  background: var(--card-bg);
  border: 2px solid rgba(245,158,11,0.3);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.game-tab.active, .game-tab:hover {
  background: var(--gold);
  color: var(--purple-dark);
  border-color: var(--gold);
}
.game-panel { display: none; }
.game-panel.active { display: block; }

/* ---------- Slot Machine ---------- */
.slot-machine {
  background: linear-gradient(135deg, #1a0a3e, #2d1b69);
  border: 3px solid var(--gold);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 0 40px rgba(245,158,11,0.3);
}
.slot-machine h2 { font-size: 1.8rem; font-weight: 900; color: var(--gold); margin-bottom: 8px; }
.slot-machine .slot-subtitle { color: var(--gray-mid); margin-bottom: 24px; font-size: 0.9rem; }
.slot-reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.reel {
  width: 100px;
  height: 100px;
  background: #0d0520;
  border: 3px solid rgba(245,158,11,0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}
.reel-inner {
  transition: transform 0.1s;
}
.slot-result {
  min-height: 40px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.slot-score {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-bottom: 20px;
}
.slot-score span { color: var(--gold-light); font-weight: 700; }
.btn-spin {
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: var(--purple-dark);
  border: none;
  padding: 16px 48px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.btn-spin:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,0.5); }
.btn-spin:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ---------- Spinning Wheel ---------- */
.wheel-game {
  background: linear-gradient(135deg, #1a0a3e, #2d1b69);
  border: 3px solid var(--gold);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 0 40px rgba(245,158,11,0.3);
}
.wheel-game h2 { font-size: 1.8rem; font-weight: 900; color: var(--gold); margin-bottom: 8px; }
.wheel-game .wheel-subtitle { color: var(--gray-mid); margin-bottom: 24px; font-size: 0.9rem; }
.wheel-container {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}
#wheelCanvas {
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(245,158,11,0.4);
  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: 28px solid var(--gold);
  filter: drop-shadow(0 2px 6px rgba(245,158,11,0.8));
}
.wheel-result {
  min-height: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.btn-wheel-spin {
  background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 16px 48px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-wheel-spin:hover:not(:disabled) { background: var(--gold); color: var(--purple-dark); }
.btn-wheel-spin:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---------- Confetti ---------- */
.confetti-piece {
  position: fixed;
  width: 10px;
  height: 10px;
  top: -10px;
  animation: confetti-fall linear forwards;
  z-index: 9999;
  pointer-events: none;
}
@keyframes confetti-fall {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ---------- About Page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-grid img { border-radius: 16px; }
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.about-text h2 span { color: var(--gold); }
.about-text p { color: #d1d5db; margin-bottom: 16px; line-height: 1.8; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.stat-box {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(245,158,11,0.2);
}
.stat-box .stat-num { font-size: 2rem; font-weight: 900; color: var(--gold); }
.stat-box .stat-label { font-size: 0.8rem; color: var(--gray-mid); margin-top: 4px; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
.contact-info h3 { font-size: 1.3rem; font-weight: 700; color: var(--gold); margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-item-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item-text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.contact-item-text p { font-size: 0.85rem; color: var(--gray-mid); }

.contact-form-wrap {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(245,158,11,0.2);
}
.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 700; color: var(--gold); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: #d1d5db; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(245,158,11,0.2);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--purple-dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  background: var(--gold);
  color: var(--purple-dark);
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--gold-light); }
.form-success {
  display: none;
  background: rgba(34,197,94,0.15);
  border: 1px solid #22c55e;
  color: #86efac;
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
  text-align: center;
  font-weight: 600;
}

/* ---------- Policy Pages ---------- */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 32px;
}
.policy-content h1 { font-size: 2rem; font-weight: 900; color: var(--gold); margin-bottom: 8px; }
.policy-content .policy-date { color: var(--gray-mid); font-size: 0.85rem; margin-bottom: 40px; }
.policy-content h2 { font-size: 1.3rem; font-weight: 700; color: var(--gold-light); margin: 32px 0 12px; }
.policy-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin: 20px 0 8px; }
.policy-content p { color: #d1d5db; line-height: 1.8; margin-bottom: 14px; font-size: 0.95rem; }
.policy-content ul { color: #d1d5db; padding-left: 24px; margin-bottom: 14px; line-height: 1.8; font-size: 0.95rem; }
.policy-content ul li { margin-bottom: 6px; }
.policy-content a { color: var(--gold); }
.policy-divider { border: none; border-top: 1px solid rgba(245,158,11,0.2); margin: 32px 0; }

/* ---------- Footer ---------- */
footer {
  background: #0d0520;
  border-top: 1px solid rgba(245,158,11,0.2);
  padding: 60px 32px 32px;
}
.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 .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--gray-mid); font-size: 0.85rem; transition: color 0.2s; text-decoration: none; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray-mid); }
.footer-bottom .footer-legal { display: flex; gap: 20px; }
.footer-bottom .footer-legal a { font-size: 0.8rem; color: var(--gray-mid); text-decoration: none; }
.footer-bottom .footer-legal a:hover { color: var(--gold); }
.responsible-gaming {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.6;
}
.responsible-gaming strong { color: var(--gold-light); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(30,10,60,0.98); padding: 20px 32px; gap: 16px; border-bottom: 1px solid rgba(245,158,11,0.2); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-content { padding: 60px 24px; }
  .page-banner-content { padding: 40px 24px; }
  .section { padding: 60px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .slot-reels { gap: 8px; }
  .reel { width: 80px; height: 80px; font-size: 2.4rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
