/* =====================================================
   Malaysian Social Casino – styles.css
   Dark theme with gold/emerald accents
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #06090f;
  --bg-secondary: #0d1117;
  --bg-card: rgba(15, 20, 35, 0.85);
  --bg-card-border: rgba(212, 168, 83, 0.15);
  --gold: #d4a853;
  --gold-light: #f0d48a;
  --gold-dark: #a07c3a;
  --emerald: #00c9a7;
  --emerald-dark: #009e84;
  --purple: #8b5cf6;
  --purple-dark: #6d3fd4;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a8b8;
  --text-muted: #6b7280;
  --gradient-gold: linear-gradient(135deg, #d4a853, #f0d48a, #d4a853);
  --gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #111827 40%, #0d1117 100%);
  --gradient-emerald: linear-gradient(135deg, #00c9a7, #00e4bf);
  --shadow-gold: 0 0 30px rgba(212, 168, 83, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.3; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Age Gate Overlay ---------- */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(6, 9, 15, 0.97);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity 0.5s ease;
}
.age-gate.hidden { opacity: 0; pointer-events: none; }

.age-gate-box {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 520px; width: 90%;
  text-align: center;
  box-shadow: var(--shadow-gold);
  animation: fadeScaleIn 0.6s ease;
}

.age-gate-box .badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.3);
}

.age-gate-box h2 {
  font-size: 26px; margin-bottom: 12px;
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.age-gate-box p { color: var(--text-secondary); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.age-gate-box p.disclaimer { font-size: 12px; color: var(--text-muted); margin-bottom: 28px; }

.age-gate-buttons { display: flex; gap: 16px; justify-content: center; }

.btn-enter {
  padding: 14px 40px;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 16px;
  border: none; border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}
.btn-enter:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212, 168, 83, 0.45); }

.btn-exit {
  padding: 14px 40px;
  background: transparent;
  color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 16px;
  border: 1px solid rgba(160, 168, 184, 0.3);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-exit:hover { border-color: var(--text-secondary); color: var(--text-primary); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(6, 9, 15, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.08);
  z-index: 9000;
  padding: 0 24px;
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(6, 9, 15, 0.95); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}
.nav-logo span { -webkit-text-fill-color: var(--emerald); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-badge-18 {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 50px;
  font-size: 12px; font-weight: 700;
  color: var(--gold);
}

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(0, 201, 167, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.hero-content {
  text-align: center; position: relative; z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--emerald) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
  background-size: 200% 200%;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero p {
  font-size: 18px; color: var(--text-secondary);
  margin-bottom: 36px; max-width: 600px; margin-inline: auto;
}

.hero-features {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 50px;
  font-size: 14px; font-weight: 500;
  color: var(--gold-light);
  transition: var(--transition);
}
.hero-pill:hover { background: rgba(212, 168, 83, 0.15); transform: translateY(-2px); }
.hero-pill .pill-icon { font-size: 18px; }

.hero-cta {
  margin-top: 40px;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 16px;
  border: none; border-radius: 50px;
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5); color: var(--bg-primary); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 16px;
  border: 1px solid rgba(240, 240, 240, 0.2);
  border-radius: 50px;
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Sections ---------- */
section { padding: 100px 24px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 50px;
  font-size: 12px; font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 16px; max-width: 600px;
  margin-bottom: 48px;
}

.section-center { text-align: center; }
.section-center .section-desc { margin-inline: auto; }

/* ---------- About Section ---------- */
.about { background: var(--bg-secondary); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-text p { color: var(--text-secondary); margin-bottom: 20px; font-size: 15px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.about-feature {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.about-feature:hover { border-color: var(--gold); transform: translateX(4px); }
.about-feature .feat-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(212, 168, 83, 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.about-feature .feat-text h4 { font-size: 15px; margin-bottom: 2px; }
.about-feature .feat-text p { font-size: 13px; color: var(--text-muted); margin-bottom: 0; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.stat-card .stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-card .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ---------- Games Section ---------- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.game-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow-gold); }

.game-card-img {
  position: relative;
  height: 220px; overflow: hidden;
}
.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.08); }

.game-card-img .game-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px;
  background: rgba(0, 201, 167, 0.9);
  border-radius: 50px;
  font-size: 11px; font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-card-body { padding: 24px; }
.game-card-body h3 { font-size: 20px; margin-bottom: 10px; }
.game-card-body p { color: var(--text-secondary); font-size: 14px; margin-bottom: 18px; line-height: 1.6; }

.game-card-features {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.game-card-features span {
  padding: 4px 10px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 6px;
  font-size: 11px; color: var(--gold-light);
}

.btn-play {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 14px;
  border: none; border-radius: 50px;
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
  width: 100%; justify-content: center;
}
.btn-play:hover { box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4); color: var(--bg-primary); }

/* ---------- Credits Section ---------- */
.credits { background: var(--bg-secondary); }
.credits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.credit-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.credit-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.credit-card .credit-icon { font-size: 40px; margin-bottom: 16px; }
.credit-card h4 { font-size: 16px; margin-bottom: 8px; }
.credit-card p { font-size: 13px; color: var(--text-muted); }

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover { border-color: var(--emerald); transform: translateY(-6px); box-shadow: 0 0 30px rgba(0, 201, 167, 0.1); }
.why-card .why-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(0, 201, 167, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.why-card h4 { font-size: 18px; margin-bottom: 10px; }
.why-card p { color: var(--text-secondary); font-size: 14px; }

/* ---------- Guide Section ---------- */
.guide { background: var(--bg-secondary); }
.guide-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative;
}
.guide-step {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.guide-step:hover { border-color: var(--purple); transform: translateY(-4px); }
.guide-step .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 800;
  margin-bottom: 20px;
}
.guide-step h4 { font-size: 18px; margin-bottom: 10px; }
.guide-step p { color: var(--text-secondary); font-size: 14px; }

/* ---------- Responsible Gaming ---------- */
.responsible-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.responsible-text p { color: var(--text-secondary); font-size: 15px; margin-bottom: 20px; }
.responsible-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.responsible-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text-secondary);
  transition: var(--transition);
}
.responsible-list li:hover { border-color: var(--emerald); }
.responsible-list li .check { color: var(--emerald); font-size: 18px; flex-shrink: 0; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-secondary); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.testimonial-card .stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-secondary); font-size: 14px; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  color: var(--bg-primary);
}
.testimonial-author .author-info h5 { font-size: 14px; margin-bottom: 2px; }
.testimonial-author .author-info span { font-size: 12px; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(212, 168, 83, 0.3); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600; font-size: 15px;
  color: var(--text-primary);
  background: none; border: none; width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-icon {
  font-size: 20px; color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 14px; line-height: 1.7;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08) 0%, rgba(0, 201, 167, 0.05) 100%);
  border-top: 1px solid var(--bg-card-border);
  border-bottom: 1px solid var(--bg-card-border);
  text-align: center;
  padding: 80px 24px;
}
.cta-section h2 { font-size: 32px; margin-bottom: 16px; }
.cta-section p { color: var(--text-secondary); font-size: 16px; margin-bottom: 32px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(212, 168, 83, 0.06);
  padding: 60px 24px 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { color: var(--text-muted); font-size: 13px; margin-bottom: 16px; line-height: 1.6; }
.footer-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 700; font-size: 13px; }

.footer h5 {
  font-size: 14px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 13px; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--text-muted); font-size: 12px; }
.footer-disclaimer {
  background: rgba(212, 168, 83, 0.05);
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.footer-disclaimer p { color: var(--text-muted); font-size: 12px; line-height: 1.7; }

/* ---------- Game Page Specific ---------- */
.game-page-header {
  padding: 100px 24px 40px;
  text-align: center;
  background: var(--gradient-hero);
}
.game-page-header h1 { font-size: 36px; margin-bottom: 10px; }
.game-page-header p { color: var(--text-secondary); font-size: 16px; }

.game-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.slot-machine {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.slot-balance {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding: 16px 20px;
  background: rgba(212, 168, 83, 0.06);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius-sm);
}
.slot-balance .balance-label { font-size: 13px; color: var(--text-muted); }
.slot-balance .balance-value {
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 800;
  color: var(--gold);
}

.slot-reels {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 24px;
}
.slot-reel {
  background: rgba(6, 9, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; overflow: hidden;
  min-height: 240px;
  position: relative;
}
.slot-symbol {
  font-size: 48px; line-height: 1.2;
  transition: transform 0.3s ease;
  text-align: center;
  padding: 8px 0;
}

.slot-controls {
  display: flex; gap: 12px; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.slot-controls .bet-control {
  display: flex; align-items: center; gap: 8px;
}
.slot-controls .bet-control label {
  font-size: 13px; color: var(--text-muted);
}
.slot-controls .bet-control select {
  padding: 10px 16px;
  background: rgba(6, 9, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
.btn-spin {
  padding: 14px 48px;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 16px;
  border: none; border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}
.btn-spin:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212, 168, 83, 0.45); }
.btn-spin:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.slot-message {
  text-align: center;
  padding: 16px;
  margin-top: 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  min-height: 52px;
}
.slot-message.win {
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.3);
  color: var(--emerald);
}
.slot-message.lose {
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.15);
  color: var(--text-muted);
}

.payout-table {
  margin-top: 32px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 28px;
}
.payout-table h3 { font-size: 18px; margin-bottom: 20px; color: var(--gold); }
.payout-table table { width: 100%; border-collapse: collapse; }
.payout-table th {
  text-align: left; padding: 10px 14px;
  font-size: 12px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.payout-table td {
  padding: 12px 14px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.payout-table td:last-child { color: var(--gold); font-weight: 700; }

/* ---------- Policy Page ---------- */
.policy-page { padding: 120px 24px 80px; }
.policy-page .container { max-width: 800px; }
.policy-page h1 { font-size: 32px; margin-bottom: 12px; }
.policy-page .policy-date { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; }
.policy-page h2 { font-size: 22px; margin-top: 40px; margin-bottom: 16px; color: var(--gold); }
.policy-page h3 { font-size: 18px; margin-top: 28px; margin-bottom: 12px; }
.policy-page p { color: var(--text-secondary); font-size: 15px; margin-bottom: 16px; }
.policy-page ul { color: var(--text-secondary); font-size: 15px; padding-left: 24px; margin-bottom: 16px; }
.policy-page ul li { margin-bottom: 8px; }

/* ---------- Support Page ---------- */
.support-form {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 600px;
}
.support-form .form-group { margin-bottom: 20px; }
.support-form label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 8px;
}
.support-form input,
.support-form textarea,
.support-form select {
  width: 100%; padding: 12px 16px;
  background: rgba(6, 9, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: var(--transition);
}
.support-form input:focus,
.support-form textarea:focus,
.support-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}
.support-form textarea { min-height: 120px; resize: vertical; }

/* ---------- Animations ---------- */
@keyframes fadeScaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.spinning .slot-symbol {
  animation: reelSpin 0.1s linear infinite;
}

@keyframes reelSpin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .responsible-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(6, 9, 15, 0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--bg-card-border);
  }
  .nav-links.active { display: flex; }
  .nav-badge-18 { display: none; }

  .games-grid,
  .why-grid,
  .guide-steps,
  .testimonials-grid { grid-template-columns: 1fr; }

  .credits-grid { grid-template-columns: 1fr 1fr; }

  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  section { padding: 60px 16px; }

  .slot-machine { padding: 20px; }
  .slot-symbol { font-size: 36px; }
  .slot-reel { min-height: 180px; }

  .age-gate-box { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-features { flex-direction: column; align-items: center; }
  .hero-cta { flex-direction: column; align-items: center; }
  .age-gate-buttons { flex-direction: column; }
  .about-stats { grid-template-columns: 1fr; }
  .credits-grid { grid-template-columns: 1fr; }
}
