/* ============================================================
   Bull4Red — Premium Social Casino | css/style.css
   New Zealand Entertainment Platform | 18+ Only
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --red: #C8102E;
  --red-dark: #9b0c23;
  --red-glow: rgba(200,16,46,0.35);
  --gold: #D4AF37;
  --gold-light: #f5d469;
  --gold-glow: rgba(212,175,55,0.25);
  --bg: #0a0a0c;
  --bg2: #111114;
  --bg3: #18181d;
  --bg4: #1e1e25;
  --border: rgba(255,255,255,0.07);
  --text: #e8e8f0;
  --text-muted: #7a7a90;
  --text-dim: #4a4a60;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-red: 0 8px 40px rgba(200,16,46,0.3);
  --shadow-gold: 0 4px 24px rgba(212,175,55,0.2);
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: var(--font); }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ============================================================
   AGE GATE OVERLAY
   ============================================================ */
#age-gate {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}

.age-gate-box {
  background: linear-gradient(145deg, var(--bg3), var(--bg4));
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8), 0 0 60px var(--red-glow);
  animation: gateIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes gateIn {
  from { transform: scale(0.85) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.age-gate-logo {
  font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -1px; margin-bottom: 8px;
}

.age-gate-badge {
  display: inline-block;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 24px;
}

.age-gate-box h2 {
  font-size: 1.5rem; font-weight: 700; color: var(--white);
  margin-bottom: 12px;
}

.age-gate-box p {
  font-size: 0.9rem; color: var(--text-muted);
  margin-bottom: 32px; line-height: 1.7;
}

.age-btns { display: flex; gap: 12px; justify-content: center; }

.btn-age-yes {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-weight: 700; font-size: 1rem;
  padding: 14px 32px; border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--red-glow);
  flex: 1;
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--red-glow); }

.btn-age-no {
  background: var(--bg4); color: var(--text-muted);
  border: 1px solid var(--border); font-size: 1rem;
  padding: 14px 32px; border-radius: var(--radius);
  transition: var(--transition); flex: 1;
}
.btn-age-no:hover { border-color: var(--text-muted); color: var(--text); }

.age-gate-disclaimer {
  font-size: 11px; color: var(--text-dim);
  margin-top: 20px; line-height: 1.5;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--bg3);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  max-width: 640px; width: calc(100% - 32px);
  display: flex; align-items: center; gap: 20px;
  z-index: 9000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  animation: slideUp 0.4s ease both;
}

@keyframes slideUp {
  from { transform: translateX(-50%) translateY(40px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}

#cookie-banner p {
  font-size: 0.85rem; color: var(--text-muted); flex: 1; line-height: 1.5;
}

#cookie-banner a { color: var(--gold); }

.btn-cookie {
  background: var(--red); color: #fff;
  font-size: 0.85rem; font-weight: 600;
  padding: 10px 22px; border-radius: var(--radius);
  transition: var(--transition); white-space: nowrap;
  box-shadow: 0 2px 12px var(--red-glow);
}
.btn-cookie:hover { background: var(--red-dark); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(10,10,12,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

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

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}

.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; color: #fff;
  letter-spacing: -1px;
  box-shadow: 0 4px 16px var(--red-glow);
  position: relative; overflow: hidden;
}

.logo-mark::after {
  content: '';
  position: absolute; top: -50%; right: -50%;
  width: 80%; height: 80%;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}

.logo-text {
  display: flex; flex-direction: column; line-height: 1;
}

.logo-title {
  font-size: 1.2rem; font-weight: 800; color: var(--white);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 0.65rem; font-weight: 500; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}

.nav-links a {
  color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: rgba(255,255,255,0.06);
}

.nav-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff !important; font-weight: 600 !important;
  padding: 10px 20px !important; border-radius: var(--radius) !important;
  box-shadow: 0 4px 16px var(--red-glow);
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px var(--red-glow) !important; }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 8px;
}

.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,16,46,0.12) 0%, transparent 70%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  padding: 120px 24px 80px;
}

.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: particleFly var(--duration, 8s) var(--delay, 0s) infinite linear;
  opacity: 0;
}

@keyframes particleFly {
  0%   { transform: translate(0, 100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translate(var(--dx, 20px), -20px) scale(1.5); opacity: 0; }
}

.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; width: 100%;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,16,46,0.15); border: 1px solid rgba(200,16,46,0.3);
  border-radius: 20px; padding: 6px 14px;
  font-size: 0.75rem; font-weight: 600; color: var(--red);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -2px; color: var(--white);
  margin-bottom: 20px;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 36px; max-width: 480px;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-weight: 700; font-size: 1rem;
  padding: 16px 36px; border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow-red);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px var(--red-glow);
  color: #fff;
}

.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border); font-weight: 600; font-size: 1rem;
  padding: 16px 36px; border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
}

.hero-stat { text-align: left; }
.hero-stat-num {
  font-size: 1.6rem; font-weight: 800; color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
}

/* Hero Visual — Slot Preview */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; justify-content: center;
}

.hero-slot-preview {
  background: linear-gradient(145deg, var(--bg3), var(--bg4));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%; max-width: 360px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 40px var(--gold-glow);
  animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.preview-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}

.preview-title {
  font-size: 0.8rem; font-weight: 700; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase;
}

.preview-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.7rem; color: #4ade80; font-weight: 600;
}

.preview-live::before {
  content: ''; width: 6px; height: 6px;
  background: #4ade80; border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.preview-reels {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-bottom: 16px;
}

.preview-reel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  animation: reelBounce 0.3s ease;
  position: relative; overflow: hidden;
}

.preview-reel.win {
  border-color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
  animation: winGlow 1s ease infinite alternate;
}

@keyframes winGlow {
  from { box-shadow: 0 0 8px var(--gold-glow); }
  to   { box-shadow: 0 0 24px var(--gold-glow), 0 0 4px var(--gold); }
}

.preview-balance {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg); border-radius: 8px; padding: 10px 14px;
}

.preview-bal-label {
  font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;
}

.preview-bal-val {
  font-size: 1.1rem; font-weight: 800; color: var(--gold);
}

.preview-spin-btn {
  width: 100%; margin-top: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 12px; border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--red-glow);
}

.preview-spin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.preview-spin-btn:active { transform: scale(0.97); }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
section { padding: 96px 24px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem; font-weight: 700; color: var(--red);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--white);
  line-height: 1.2; letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.7; max-width: 560px;
}

/* Divider */
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px; margin: 16px 0;
}

/* ============================================================
   FEATURED GAMES SECTION
   ============================================================ */
#games-preview { background: var(--bg2); }

.games-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}

.game-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  group: true;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 30px var(--gold-glow);
}

.game-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
}

.game-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card-img img { transform: scale(1.05); }

.game-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
  display: flex; align-items: flex-end; padding: 16px;
}

.game-card-badge {
  background: var(--red); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 4px;
}

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

.game-card-title {
  font-size: 1.15rem; font-weight: 700; color: var(--white);
  margin-bottom: 6px;
}

.game-card-desc {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 16px;
}

.game-card-meta {
  display: flex; gap: 12px; margin-bottom: 16px;
}

.game-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem; color: var(--text-dim);
}

.game-meta-item .dot {
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
}

.btn-play-card {
  width: 100%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-weight: 600; font-size: 0.9rem;
  padding: 12px; border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 14px var(--red-glow);
}

.btn-play-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
#features {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}

.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
  border-color: rgba(200,16,46,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.feature-icon {
  width: 52px; height: 52px;
  background: rgba(200,16,46,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}

.feature-title {
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   HOW TO PLAY
   ============================================================ */
#how-to-play { background: var(--bg2); }

.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
  position: relative;
}

.steps-grid::after {
  content: '';
  position: absolute; top: 26px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  z-index: 0;
}

.step-card {
  text-align: center; position: relative; z-index: 1;
  padding: 24px 20px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.step-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }

.step-num {
  width: 52px; height: 52px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: #fff;
  box-shadow: 0 4px 16px var(--red-glow);
}

.step-title {
  font-size: 0.95rem; font-weight: 700; color: var(--white);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.6;
}

/* ============================================================
   RESPONSIBLE GAMBLING STRIP
   ============================================================ */
#responsible-strip {
  background: linear-gradient(135deg, rgba(200,16,46,0.06) 0%, rgba(212,175,55,0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
}

.rg-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.rg-content .section-title { font-size: 1.8rem; }

.rg-links {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px;
}

.rg-link-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 16px;
  font-size: 0.8rem; font-weight: 600; color: var(--text);
  transition: var(--transition);
}

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

.rg-orgs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}

.rg-org-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; transition: var(--transition);
  text-decoration: none;
}

.rg-org-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-3px); }

.rg-org-card img {
  height: 36px; width: auto; object-fit: contain; filter: brightness(1.1);
}

.rg-org-name {
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 24px 0;
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand { }

.footer-logo { margin-bottom: 16px; }

.footer-tagline {
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 24px; max-width: 280px;
}

.footer-disclaimer {
  background: rgba(200,16,46,0.08);
  border: 1px solid rgba(200,16,46,0.15);
  border-radius: var(--radius); padding: 12px 16px;
  font-size: 0.75rem; color: var(--text-muted); line-height: 1.6;
}

.footer-col-title {
  font-size: 0.8rem; font-weight: 700; color: var(--white);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links li a {
  font-size: 0.875rem; color: var(--text-muted);
  transition: var(--transition);
}

.footer-links li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  font-size: 0.9rem; color: var(--red); flex-shrink: 0; margin-top: 2px;
}

.footer-contact-text {
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.5;
}

/* Footer bottom */
.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}

.footer-legal-logos {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}

.footer-legal-logos img {
  height: 28px; width: auto; object-fit: contain;
  filter: grayscale(1) brightness(1.5) opacity(0.7);
  transition: var(--transition);
}

.footer-legal-logos img:hover { filter: grayscale(0) brightness(1); opacity: 1; }

.footer-copyright {
  font-size: 0.75rem; color: var(--text-dim);
}

.footer-18 {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,16,46,0.15); border: 1px solid rgba(200,16,46,0.25);
  border-radius: 6px; padding: 4px 10px;
  font-size: 0.75rem; font-weight: 700; color: var(--red);
}

/* ============================================================
   INNER PAGE WRAPPER
   ============================================================ */
.page-wrapper {
  padding-top: 72px;
}

.page-hero {
  background: linear-gradient(135deg, rgba(200,16,46,0.08) 0%, rgba(212,175,55,0.05) 100%);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}

.page-hero-inner {
  max-width: 900px; margin: 0 auto;
}

.page-hero-label {
  font-size: 0.7rem; font-weight: 700; color: var(--red);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -1px; margin-bottom: 12px;
}

.page-hero-desc {
  font-size: 1rem; color: var(--text-muted); line-height: 1.7;
}

.page-content {
  max-width: 900px; margin: 0 auto; padding: 64px 24px;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 1.2rem; font-weight: 700; color: var(--white);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.policy-section h3 {
  font-size: 1rem; font-weight: 600; color: var(--gold);
  margin: 16px 0 8px;
}

.policy-section p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 12px;
}

.policy-section ul, .policy-section ol {
  padding-left: 24px; margin-bottom: 12px;
}

.policy-section li {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 6px;
}

/* ============================================================
   GAMES PAGE
   ============================================================ */
.games-page-layout {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 24px; padding: 24px;
  min-height: calc(100vh - 72px);
}

/* Sidebar */
.games-sidebar {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  height: fit-content;
  position: sticky; top: 92px;
}

.sidebar-title {
  font-size: 0.7rem; font-weight: 700; color: var(--red);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-game-btn {
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  background: transparent; border: 1px solid transparent;
  border-radius: var(--radius); padding: 12px;
  text-align: left; transition: var(--transition);
  margin-bottom: 8px; color: var(--text-muted);
  font-size: 0.85rem; font-weight: 500;
}

.sidebar-game-btn:hover, .sidebar-game-btn.active {
  background: rgba(200,16,46,0.1);
  border-color: rgba(200,16,46,0.25);
  color: var(--white);
}

.sidebar-game-btn.active { color: var(--white); }

.sidebar-thumb {
  width: 40px; height: 40px; border-radius: 8px; object-fit: cover; flex-shrink: 0;
}

.sidebar-game-info { flex: 1; }
.sidebar-game-name { font-weight: 600; color: inherit; font-size: 0.85rem; }
.sidebar-game-type { font-size: 0.7rem; color: var(--text-dim); }

/* Game Container */
.games-main { }

.game-container {
  display: none;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.game-container.active { display: block; }

.game-header {
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.game-title-block { }
.game-title { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.game-subtitle { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.game-badges { display: flex; gap: 8px; }
.game-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 4px;
  text-transform: uppercase;
}
.badge-rtp { background: rgba(74,222,128,0.15); color: #4ade80; border: 1px solid rgba(74,222,128,0.25); }
.badge-free { background: rgba(212,175,55,0.15); color: var(--gold); border: 1px solid rgba(212,175,55,0.25); }
.badge-new { background: rgba(200,16,46,0.15); color: var(--red); border: 1px solid rgba(200,16,46,0.25); }

/* Slot Machine */
.slot-machine {
  padding: 24px;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.04) 0%, transparent 70%);
}

/* HUD */
.slot-hud {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 20px;
}

.hud-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 12px;
  text-align: center;
}

.hud-label {
  font-size: 0.65rem; font-weight: 700; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px;
}

.hud-value {
  font-size: 1.2rem; font-weight: 800; color: var(--white);
  font-variant-numeric: tabular-nums;
}

.hud-value.gold { color: var(--gold); }
.hud-value.red  { color: var(--red); }
.hud-value.green{ color: #4ade80; }

/* Reels Frame */
.reels-frame {
  background: var(--bg);
  border: 2px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.reels-frame::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.win-line-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 10;
  display: flex; align-items: center; justify-content: center;
}

.win-line-bar {
  width: 90%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px; opacity: 0; transition: opacity 0.3s;
}

.win-line-bar.active { opacity: 1; animation: winLinePulse 0.8s ease infinite alternate; }

@keyframes winLinePulse {
  from { opacity: 0.5; }
  to   { opacity: 1; box-shadow: 0 0 16px var(--gold); }
}

.reels-track {
  display: grid;
  gap: 10px;
}

.reels-track.cols-3 { grid-template-columns: repeat(3, 1fr); }
.reels-track.cols-5 { grid-template-columns: repeat(5, 1fr); }

.reel {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.reel-window {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.reel-strip {
  display: flex; flex-direction: column; align-items: center;
  transition: transform 0.6s cubic-bezier(0.17, 0.67, 0.35, 1);
}

.reel-symbol {
  width: 100%; height: 80px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  user-select: none;
  position: relative;
  flex-shrink: 0;
}

.reel-symbol.fruit-symbol {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.reel-symbol.win-symbol {
  background: rgba(212,175,55,0.1);
  animation: symbolWin 0.5s ease;
}

@keyframes symbolWin {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25); filter: brightness(1.5); }
  100% { transform: scale(1); }
}

.reel.spinning .reel-strip {
  animation: reelSpin 0.1s linear infinite;
}

@keyframes reelSpin {
  from { transform: translateY(0); }
  to   { transform: translateY(-80px); }
}

/* Paylines indicator */
.paylines-bar {
  display: flex; justify-content: center; gap: 6px;
  margin-bottom: 16px;
}

.payline-dot {
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--border); transition: var(--transition);
}

.payline-dot.active { background: var(--gold); }

/* Controls */
.slot-controls {
  display: grid; grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
  gap: 12px; align-items: center;
}

.bet-control {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px;
  text-align: center;
}

.bet-label {
  font-size: 0.65rem; font-weight: 700; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}

.bet-value {
  font-size: 1rem; font-weight: 700; color: var(--white);
  font-variant-numeric: tabular-nums;
}

.btn-bet {
  background: var(--bg4); color: var(--text);
  border: 1px solid var(--border); padding: 8px;
  border-radius: 8px; font-size: 0.85rem; width: 100%;
  transition: var(--transition);
}
.btn-bet:hover { border-color: var(--gold); color: var(--gold); }

.btn-spin {
  width: 100%; padding: 18px 8px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; font-weight: 800; font-size: 1.1rem;
  border-radius: var(--radius); transition: var(--transition);
  box-shadow: 0 6px 24px var(--red-glow);
  position: relative; overflow: hidden;
  letter-spacing: 1px; text-transform: uppercase;
}

.btn-spin::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.4s;
}

.btn-spin:hover::before { left: 100%; }

.btn-spin:hover { transform: translateY(-2px); box-shadow: 0 10px 36px var(--red-glow); }
.btn-spin:active { transform: scale(0.97); }
.btn-spin:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-auto {
  background: var(--bg4); color: var(--text-muted);
  border: 1px solid var(--border); padding: 18px 8px;
  border-radius: var(--radius); font-size: 0.85rem; font-weight: 600;
  width: 100%; transition: var(--transition); text-align: center;
}
.btn-auto:hover { border-color: var(--gold); color: var(--gold); }
.btn-auto.active { background: rgba(212,175,55,0.1); border-color: var(--gold); color: var(--gold); }

/* Win overlay */
.win-overlay {
  position: fixed; inset: 0;
  z-index: 8000; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}

.win-overlay.show { opacity: 1; pointer-events: auto; }

.win-popup {
  background: linear-gradient(145deg, var(--bg3), var(--bg4));
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 52px;
  text-align: center;
  box-shadow: 0 0 80px var(--gold-glow), 0 24px 80px rgba(0,0,0,0.7);
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes popIn {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.win-popup-label {
  font-size: 0.7rem; font-weight: 700; color: var(--gold);
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 8px;
}

.win-popup-amount {
  font-size: 3.5rem; font-weight: 900; color: var(--gold);
  text-shadow: 0 0 30px var(--gold-glow);
  animation: countUp 0.5s ease;
}

@keyframes countUp {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.win-popup-type {
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  margin-top: 8px;
}

/* Free spins overlay */
.free-spins-banner {
  position: absolute; inset: 0;
  background: rgba(212,175,55,0.06);
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0; transition: opacity 0.4s;
}

.free-spins-banner.show {
  opacity: 1;
  animation: fsBannerPulse 1s ease infinite alternate;
}

@keyframes fsBannerPulse {
  from { border-color: rgba(212,175,55,0.3); }
  to   { border-color: var(--gold); box-shadow: 0 0 24px var(--gold-glow); }
}

.free-spins-text {
  font-size: 1.4rem; font-weight: 800; color: var(--gold);
  text-transform: uppercase; letter-spacing: 3px;
}

/* Paytable */
.paytable {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  margin-top: 20px;
}

.paytable-title {
  font-size: 0.7rem; font-weight: 700; color: var(--text-dim);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}

.paytable-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}

.paytable-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 6px;
  text-align: center; transition: var(--transition);
}

.paytable-item:hover { border-color: rgba(212,175,55,0.3); }

.paytable-sym { font-size: 1.4rem; margin-bottom: 4px; }
.paytable-val { font-size: 0.7rem; font-weight: 700; color: var(--gold); }
.paytable-mul { font-size: 0.65rem; color: var(--text-dim); }

/* Toast notification */
.toast-container {
  position: fixed; bottom: 80px; right: 24px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 7000; pointer-events: none;
}

.toast {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 20px;
  font-size: 0.85rem; color: var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s both;
  transform-origin: right;
}

.toast.win  { border-color: rgba(212,175,55,0.4); color: var(--gold); }
.toast.info { border-color: var(--border); }

@keyframes toastIn {
  from { transform: translateX(100%) scale(0.9); opacity: 0; }
  to   { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes toastOut {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(100%); opacity: 0; }
}

/* ============================================================
   CONTACTS PAGE
   ============================================================ */
.contacts-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-top: 40px;
}

.contact-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}

.contact-card-title {
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px; height: 40px; background: rgba(200,16,46,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.7rem; font-weight: 700; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px;
}

.contact-detail-val {
  font-size: 0.9rem; color: var(--text);
}

/* Contact Form */
.form-group { margin-bottom: 20px; }

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

.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 16px; font-size: 0.9rem; color: var(--text);
  font-family: var(--font); transition: border-color var(--transition);
  outline: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(200,16,46,0.4);
}

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

.form-select { appearance: none; cursor: pointer; }

.btn-submit {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 14px 32px; border-radius: var(--radius);
  transition: var(--transition); width: 100%;
  box-shadow: 0 4px 16px var(--red-glow);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--red-glow); }

/* ============================================================
   RESPONSIBLE GAMBLING PAGE
   ============================================================ */
.rg-tools-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin: 32px 0;
}

.rg-tool-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: var(--transition);
}

.rg-tool-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-3px); }

.rg-tool-icon { font-size: 1.8rem; margin-bottom: 12px; }
.rg-tool-title { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.rg-tool-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.rg-orgs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px;
}

.rg-org-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; transition: var(--transition);
}

.rg-org-item:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-2px); }

.rg-org-item img {
  height: 40px; width: auto; object-fit: contain; flex-shrink: 0;
}

.rg-org-info-name {
  font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 3px;
}

.rg-org-info-desc {
  font-size: 0.75rem; color: var(--text-muted); line-height: 1.4;
}

/* Self-assessment quiz */
.quiz-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; margin-top: 32px;
}

.quiz-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }

.quiz-question { margin-bottom: 20px; }

.quiz-question p {
  font-size: 0.9rem; color: var(--text); margin-bottom: 10px; font-weight: 500;
}

.quiz-options { display: flex; gap: 10px; flex-wrap: wrap; }

.quiz-option {
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 16px;
  font-size: 0.85rem; color: var(--text-muted);
  cursor: pointer; transition: var(--transition);
}

.quiz-option:hover, .quiz-option.selected {
  border-color: var(--red); color: var(--white); background: rgba(200,16,46,0.1);
}

.btn-quiz {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-weight: 700; padding: 12px 28px;
  border-radius: var(--radius); margin-top: 20px;
  transition: var(--transition); box-shadow: 0 4px 14px var(--red-glow);
}
.btn-quiz:hover { transform: translateY(-2px); }

.quiz-result {
  margin-top: 20px; padding: 16px 20px;
  border-radius: var(--radius); background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  font-size: 0.9rem; color: #4ade80; display: none;
}

/* ============================================================
   CONFETTI (Win animation)
   ============================================================ */
.confetti-piece {
  position: fixed;
  width: 8px; height: 8px;
  pointer-events: none; z-index: 7500;
  animation: confettiFall var(--duration, 3s) var(--delay, 0s) ease-in both;
}

@keyframes confettiFall {
  0% { transform: translate(0, -20px) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--dx, 50px), 100vh) rotate(720deg); opacity: 0; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-slot-preview { max-width: 300px; margin: 0 auto; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::after { display: none; }
  .rg-inner { grid-template-columns: 1fr; gap: 40px; }
  .slot-controls { grid-template-columns: 1fr 1fr; }
  .slot-controls .btn-spin { grid-column: span 2; }
  .games-page-layout { grid-template-columns: 1fr; }
  .games-sidebar { position: static; }
}

@media (max-width: 680px) {
  section { padding: 64px 20px; }
  .games-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .rg-tools-grid { grid-template-columns: 1fr; }
  .rg-orgs-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .slot-hud { grid-template-columns: repeat(2, 1fr); }
  .slot-controls { grid-template-columns: 1fr 1fr; }
  .slot-controls .btn-spin { grid-column: span 2; }
  .paytable-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { gap: 20px; }
}

/* Mobile nav open */
.nav-links.mobile-open {
  display: flex !important;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(10,10,12,0.98);
  flex-direction: column; padding: 20px;
  border-bottom: 1px solid var(--border);
  gap: 4px;
  backdrop-filter: blur(12px);
}
