/* ============================================================
   BattlePixel.info — Main Stylesheet
   Social Games | Australia
   ============================================================ */

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

:root {
  --purple-dark:  #1a0a2e;
  --purple-mid:   #2d1b5e;
  --purple-light: #4a2d8c;
  --gold:         #f0c040;
  --gold-light:   #ffe082;
  --accent:       #e040fb;
  --text-light:   #f5f0ff;
  --text-muted:   #b0a0d0;
  --white:        #ffffff;
  --card-bg:      rgba(45, 27, 94, 0.85);
  --radius:       12px;
  --shadow:       0 8px 32px rgba(0,0,0,0.45);
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--purple-dark);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Age Verification Popup ── */
#age-gate {
  position: fixed; inset: 0;
  background: rgba(10, 4, 22, 0.97);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}

.age-gate-box {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(240,192,64,0.3);
}

.age-gate-box .wheel-icon { font-size: 64px; margin-bottom: 16px; }

.age-gate-box h2 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.age-gate-box p {
  color: var(--text-muted);
  margin-bottom: 32px;
  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);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-yes {
  background: linear-gradient(135deg, var(--gold), #e0a800);
  color: var(--purple-dark);
  box-shadow: 0 4px 20px rgba(240,192,64,0.5);
}

.btn-yes:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(240,192,64,0.7); }

.btn-no {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--text-muted);
}

.btn-no:hover { border-color: var(--accent); color: var(--accent); }

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--purple-mid);
  border-top: 2px solid var(--gold);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 8000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

#cookie-banner p { font-size: 0.88rem; color: var(--text-muted); flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--gold); }

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

.btn-cookie-accept, .btn-cookie-decline {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform var(--transition);
  text-transform: uppercase;
}

.btn-cookie-accept { background: var(--gold); color: var(--purple-dark); }
.btn-cookie-accept:hover { transform: scale(1.05); }
.btn-cookie-decline { background: transparent; border: 1px solid var(--text-muted); color: var(--text-muted); }
.btn-cookie-decline:hover { border-color: var(--accent); color: var(--accent); }

/* ── Header / Nav ── */
header {
  background: rgba(26, 10, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240,192,64,0.25);
  position: sticky; top: 0; z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.5rem; font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo span { color: var(--accent); }

nav ul { list-style: none; display: flex; gap: 8px; }

nav ul li a {
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

nav ul li a:hover,
nav ul li a.active {
  background: var(--purple-light);
  color: var(--gold);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 25px; height: 3px; background: var(--gold); border-radius: 3px; transition: var(--transition); }

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  z-index: 0;
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 750px;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero h1 .highlight { color: var(--gold); }

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  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(--gold), #e0a800);
  color: var(--purple-dark);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(240,192,64,0.5);
  display: inline-block;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(240,192,64,0.7); color: var(--purple-dark); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── Section Titles ── */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 span { color: var(--gold); }

.section-title p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ── Games Section ── */
.games-section { padding: 80px 0; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid rgba(240,192,64,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}

.game-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }

.game-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
}

.game-card-body { padding: 24px; }

.game-card-body h3 { font-size: 1.3rem; color: var(--gold); margin-bottom: 8px; }
.game-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.btn-play {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-light), var(--accent));
  color: var(--white);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}

.btn-play:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,64,251,0.5); color: var(--white); }

/* ── About Section ── */
.about-section { padding: 80px 0; background: rgba(45, 27, 94, 0.3); }

.about-inner {
  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: 380px; object-fit: cover; }

.about-text h2 { font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.about-text h2 span { color: var(--gold); }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }

.about-features { list-style: none; margin-top: 24px; }
.about-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(240,192,64,0.1);
  color: var(--text-light);
  display: flex; align-items: center; gap: 10px;
}
.about-features li::before { content: '✦'; color: var(--gold); font-size: 0.8rem; }

/* ── Venues Section ── */
.venues-section { padding: 80px 0; }

.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.venue-card {
  background: var(--card-bg);
  border: 1px solid rgba(240,192,64,0.15);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition);
}

.venue-card:hover { transform: translateY(-4px); }
.venue-card h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 8px; }
.venue-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }
.venue-card .venue-city { color: var(--accent); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }

/* ── Newsletter Section ── */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--purple-mid), rgba(74,45,140,0.5));
  text-align: center;
}

.newsletter-box { max-width: 560px; margin: 0 auto; }
.newsletter-box h2 { font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.newsletter-box h2 span { color: var(--gold); }
.newsletter-box p { color: var(--text-muted); margin-bottom: 32px; }

.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.newsletter-form input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(240,192,64,0.3);
  background: rgba(26,10,46,0.8);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input[type="email"]:focus { border-color: var(--gold); }
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }

.newsletter-success {
  display: none;
  color: var(--gold);
  font-size: 1rem;
  margin-top: 16px;
  font-weight: 600;
}

/* ── Footer ── */
footer {
  background: rgba(10, 4, 22, 0.98);
  border-top: 1px solid rgba(240,192,64,0.15);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { font-size: 1.3rem; margin-bottom: 14px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

.footer-col h4 { color: var(--gold); font-size: 0.95rem; 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(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.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: wrap;
  gap: 12px;
}

.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
.footer-bottom .disclaimer { color: rgba(176,160,208,0.6); font-size: 0.78rem; max-width: 600px; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(240,192,64,0.15);
}

.page-hero h1 { font-size: 2.8rem; color: var(--gold); margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ── Contact Page ── */
.contact-section { padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 24px; }

.contact-details { list-style: none; }
.contact-details li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; color: var(--text-muted); font-size: 0.9rem; }
.contact-details li .icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.contact-form-box {
  background: var(--card-bg);
  border: 1px solid rgba(240,192,64,0.2);
  border-radius: var(--radius);
  padding: 36px;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 8px; font-weight: 600; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid rgba(240,192,64,0.2);
  background: rgba(26,10,46,0.8);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: var(--purple-dark); }

.form-success {
  display: none;
  background: rgba(240,192,64,0.1);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 16px;
  color: var(--gold);
  text-align: center;
  margin-top: 16px;
  font-weight: 600;
}

/* ── Games Page ── */
.games-page-section { padding: 80px 0; }

/* ── Wheel Game ── */
.wheel-container {
  background: var(--card-bg);
  border: 1px solid rgba(240,192,64,0.2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
  box-shadow: var(--shadow);
}

.wheel-container h2 { color: var(--gold); font-size: 1.8rem; margin-bottom: 8px; }
.wheel-container p { color: var(--text-muted); margin-bottom: 28px; }

.wheel-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

#wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(240,192,64,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(240,192,64,0.8));
  z-index: 10;
}

#wheel-result {
  min-height: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

#spin-btn {
  background: linear-gradient(135deg, var(--gold), #e0a800);
  color: var(--purple-dark);
  padding: 14px 48px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(240,192,64,0.5);
}

#spin-btn:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(240,192,64,0.7); }
#spin-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Slots Game ── */
.slots-container {
  background: var(--card-bg);
  border: 1px solid rgba(240,192,64,0.2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
  box-shadow: var(--shadow);
}

.slots-container h2 { color: var(--gold); font-size: 1.8rem; margin-bottom: 8px; }
.slots-container p { color: var(--text-muted); margin-bottom: 28px; }

.slots-machine {
  background: linear-gradient(180deg, #1a0a2e, #0d0520);
  border: 3px solid var(--gold);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5), 0 0 30px rgba(240,192,64,0.3);
}

.slots-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.reel {
  width: 90px; height: 90px;
  background: rgba(26,10,46,0.9);
  border: 2px solid rgba(240,192,64,0.4);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}

.reel-inner {
  transition: transform 0.1s linear;
  line-height: 90px;
  text-align: center;
}

.slots-status {
  font-size: 1.1rem;
  font-weight: 700;
  min-height: 32px;
  color: var(--gold);
}

.slots-score { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px; }

#slots-btn {
  background: linear-gradient(135deg, var(--gold), #e0a800);
  color: var(--purple-dark);
  padding: 14px 48px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(240,192,64,0.5);
}

#slots-btn:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(240,192,64,0.7); }
#slots-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Scratch Card Game ── */
.scratch-container {
  background: var(--card-bg);
  border: 1px solid rgba(240,192,64,0.2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.scratch-container h2 { color: var(--gold); font-size: 1.8rem; margin-bottom: 8px; }
.scratch-container p { color: var(--text-muted); margin-bottom: 28px; }

.scratch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.scratch-cell {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #c0a030, #a08020);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.scratch-cell::before {
  content: '?';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #b8960c, #8b6914);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
  font-weight: 900;
  transition: opacity 0.4s;
  border-radius: 8px;
}

.scratch-cell.revealed::before { opacity: 0; pointer-events: none; }
.scratch-cell:hover { transform: scale(1.05); }

#scratch-result { font-size: 1.1rem; font-weight: 700; min-height: 32px; color: var(--gold); margin-bottom: 16px; }

#scratch-btn {
  background: linear-gradient(135deg, var(--gold), #e0a800);
  color: var(--purple-dark);
  padding: 14px 48px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(240,192,64,0.5);
}

#scratch-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(240,192,64,0.7); }

/* ── Policy Pages ── */
.policy-section { padding: 80px 0; }

.policy-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid rgba(240,192,64,0.15);
  border-radius: var(--radius);
  padding: 48px;
}

.policy-content h2 { color: var(--gold); font-size: 1.5rem; margin: 32px 0 12px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 { color: var(--gold-light); font-size: 1.1rem; margin: 20px 0 8px; }
.policy-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { color: var(--text-muted); padding-left: 24px; margin-bottom: 14px; }
.policy-content ul li { margin-bottom: 6px; line-height: 1.7; }
.policy-content a { color: var(--gold); }
.policy-content .last-updated { color: rgba(176,160,208,0.6); font-size: 0.85rem; margin-bottom: 32px; }

/* ── Responsible Gaming ── */
.responsible-section { padding: 80px 0; }

.responsible-content {
  max-width: 860px;
  margin: 0 auto;
}

.responsible-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.responsible-card {
  background: var(--card-bg);
  border: 1px solid rgba(240,192,64,0.15);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.responsible-card .icon { font-size: 2.5rem; margin-bottom: 12px; }
.responsible-card h3 { color: var(--gold); margin-bottom: 8px; font-size: 1.1rem; }
.responsible-card p { color: var(--text-muted); font-size: 0.88rem; }

.help-box {
  background: linear-gradient(135deg, var(--purple-mid), rgba(74,45,140,0.5));
  border: 1px solid rgba(240,192,64,0.3);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  margin-top: 48px;
}

.help-box h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 12px; }
.help-box p { color: var(--text-muted); margin-bottom: 20px; }
.help-box .hotline { font-size: 1.5rem; font-weight: 800; color: var(--white); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--purple-dark); padding: 16px; border-bottom: 1px solid rgba(240,192,64,0.2); }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .hero { min-height: 70vh; }
  .footer-grid { grid-template-columns: 1fr; }
  .policy-content { padding: 28px 20px; }
  .slots-reels { gap: 8px; }
  .reel { width: 75px; height: 75px; font-size: 2.4rem; }
  .reel-inner { line-height: 75px; }
}

@media (max-width: 480px) {
  .age-gate-box { padding: 32px 20px; }
  .age-gate-box h2 { font-size: 1.5rem; }
  .wheel-container, .slots-container, .scratch-container { padding: 24px 16px; }
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.6s ease forwards; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(240,192,64,0.3); }
  50%       { box-shadow: 0 0 40px rgba(240,192,64,0.7); }
}

.glow { animation: pulse-glow 2s infinite; }

/* ── Confetti overlay ── */
.confetti-container {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9000;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 10px; height: 10px;
  top: -20px;
  animation: confetti-fall 2.5s linear forwards;
  border-radius: 2px;
}

@keyframes confetti-fall {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}
