/* ═══════════════════════════════════════════
   FernSpinnz — Social Casino Platform
   Mobile-first | CSS Custom Properties
   ═══════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ── Custom Properties ── */
:root {
  /* Jungle + Banana palette */
  --color-primary: #1a4d2e;
  --color-primary-light: #2d7a4a;
  --color-primary-dark: #0f2e1b;
  --color-primary-deep: #0a1f12;
  --color-accent: #f5c518;
  --color-accent-light: #ffe066;
  --color-accent-dark: #d4a800;
  --color-accent-glow: rgba(245, 197, 24, 0.4);

  /* Neutrals */
  --color-bg: #060d08;
  --color-bg-card: rgba(26, 77, 46, 0.12);
  --color-bg-card-solid: #0e1f14;
  --color-bg-elevated: rgba(26, 77, 46, 0.18);
  --color-surface: #0f1a12;
  --color-surface-light: #162b1c;
  --color-border: rgba(45, 122, 74, 0.25);
  --color-border-accent: rgba(245, 197, 24, 0.3);

  /* Text */
  --color-text: #e8f0ea;
  --color-text-muted: #9bb3a2;
  --color-text-heading: #ffffff;
  --color-text-on-accent: #0a1f12;

  /* Status */
  --color-success: #34d399;
  --color-error: #f87171;
  --color-warning: #fbbf24;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1a4d2e 0%, #2d7a4a 50%, #1a4d2e 100%);
  --gradient-accent: linear-gradient(135deg, #f5c518 0%, #ffe066 50%, #f5c518 100%);
  --gradient-play: linear-gradient(135deg, #f5c518 0%, #ffdd44 30%, #f5c518 60%, #d4a800 100%);
  --gradient-hero: linear-gradient(160deg, #0a1f12 0%, #1a4d2e 40%, #0f2e1b 70%, #060d08 100%);
  --gradient-glass: linear-gradient(135deg, rgba(26,77,46,0.15) 0%, rgba(26,77,46,0.05) 100%);
  --gradient-dark-overlay: linear-gradient(180deg, rgba(6,13,8,0.3) 0%, rgba(6,13,8,0.85) 100%);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;
  --fs-5xl: 3.75rem;

  /* Borders & Shapes */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.5);
  --shadow-glow-accent: 0 0 20px rgba(245,197,24,0.3), 0 0 40px rgba(245,197,24,0.15);
  --shadow-glow-primary: 0 0 20px rgba(45,122,74,0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-accent-light); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  line-height: 1.2;
  font-weight: 700;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

/* ── Utility Classes ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-xl); }
}

.section {
  padding: var(--space-3xl) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--space-4xl) 0; }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid var(--color-border-accent);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.section-title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .section-title { font-size: var(--fs-3xl); }
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: 600px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-text-heading);
  border: 1px solid var(--color-primary-light);
  box-shadow: var(--shadow-glow-primary);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(45,122,74,0.5);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-text-heading);
  border: 2px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(245,197,24,0.05);
}

/* ── Play Button — pulsing CTA ── */
.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 1rem 2.25rem;
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-text-on-accent);
  background: var(--gradient-play);
  border: 2px solid var(--color-accent-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  animation: pulse-glow 2s ease-in-out infinite;
  transition: all var(--transition-base);
  box-shadow: 0 0 20px var(--color-accent-glow), 0 4px 15px rgba(0,0,0,0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.btn-play:hover {
  transform: scale(1.07);
  box-shadow: 0 0 35px var(--color-accent-glow), 0 0 60px rgba(245,197,24,0.25), 0 8px 25px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #ffe066 0%, #fff185 30%, #ffe066 60%, #f5c518 100%);
  color: var(--color-text-on-accent);
  border-color: #fff;
}

.btn-play:active {
  transform: scale(0.97);
  box-shadow: 0 0 15px var(--color-accent-glow), 0 2px 8px rgba(0,0,0,0.3);
}

.btn-play--max {
  font-size: var(--fs-xl);
  padding: 1.15rem 2.75rem;
  animation: pulse-glow-max 1.8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px var(--color-accent-glow), 0 4px 15px rgba(0,0,0,0.3);
  }
  50% {
    box-shadow: 0 0 35px var(--color-accent-glow), 0 0 55px rgba(245,197,24,0.2), 0 6px 20px rgba(0,0,0,0.3);
  }
}

@keyframes pulse-glow-max {
  0%, 100% {
    box-shadow: 0 0 25px var(--color-accent-glow), 0 4px 15px rgba(0,0,0,0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 45px rgba(245,197,24,0.5), 0 0 70px rgba(245,197,24,0.25), 0 8px 25px rgba(0,0,0,0.3);
    transform: scale(1.04);
  }
}

/* ── Card ── */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-base);
}
.card:hover {
  border-color: var(--color-border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── Glass Card ── */
.glass {
  background: var(--gradient-glass);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
}

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background: rgba(6, 13, 8, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(6, 13, 8, 0.92);
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .header-inner { padding: 0 var(--space-xl); }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  z-index: 1001;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
  text-decoration: none;
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--color-accent);
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
    padding: 0.55rem 1.35rem;
    font-size: var(--fs-sm);
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  gap: 5px;
}

@media (min-width: 768px) {
  .hamburger { display: none; }
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-text-heading);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(6, 13, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-text-heading);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.mobile-menu a:hover { color: var(--color-accent); }

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: var(--header-height);
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) rotate(0deg) scale(0);
    opacity: 0;
  }
  10% { opacity: 0.6; transform: translateY(90vh) rotate(36deg) scale(1); }
  90% { opacity: 0.3; }
  100% {
    transform: translateY(-10vh) rotate(360deg) scale(0.5);
    opacity: 0;
  }
}

.hero-floating-icon {
  position: absolute;
  opacity: 0.08;
  animation: float-icon 8s ease-in-out infinite;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
  75% { transform: translateY(-25px) rotate(2deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-xl) var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-lg);
  animation: fadeInDown 0.8s ease-out;
}

.hero-title {
  font-size: var(--fs-3xl);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (min-width: 768px) {
  .hero-title { font-size: var(--fs-5xl); }
}

.hero-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: var(--fs-lg); }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-18badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-sm);
  color: var(--color-accent);
  margin-top: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════ */
.about-grid {
  display: grid;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-illustration svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.about-text h2 {
  margin-bottom: var(--space-md);
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.feature-item:hover {
  border-color: var(--color-border-accent);
  background: var(--color-bg-elevated);
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
}

.feature-item h4 {
  font-size: var(--fs-sm);
  margin-bottom: 2px;
}

.feature-item p {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin: 0;
}

/* ═══════════════════════════════════════
   GAME SHOWCASE
   ═══════════════════════════════════════ */
.showcase-grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .showcase-grid { grid-template-columns: 1fr 1fr; }
}

.showcase-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-image-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.showcase-info h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

.showcase-info p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.showcase-tag {
  padding: var(--space-xs) var(--space-md);
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-accent);
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item.open {
  border-color: var(--color-border-accent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-bg-card);
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-text-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  font-family: var(--font-body);
  transition: background var(--transition-base);
}

.faq-question:hover {
  background: var(--color-bg-elevated);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: var(--space-md);
}

@media (min-width: 768px) {
  .testimonial-card { flex: 0 0 50%; }
}

@media (min-width: 1024px) {
  .testimonial-card { flex: 0 0 33.333%; }
}

.testimonial-inner {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.testimonial-inner:hover {
  border-color: var(--color-border-accent);
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar svg {
  width: 100%;
  height: 100%;
}

.testimonial-name {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--color-text-heading);
}

.testimonial-location {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.testimonial-text {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: var(--fs-sm);
  flex-grow: 1;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}
.slider-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(245,197,24,0.08);
}

.slider-dots {
  display: flex;
  gap: var(--space-sm);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.slider-dot.active {
  background: var(--color-accent);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════ */
.newsletter-section {
  background: var(--gradient-glass);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.newsletter-wrapper {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.newsletter-input-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .newsletter-input-row {
    flex-direction: row;
  }
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.85rem var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-heading);
  font-size: var(--fs-base);
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-accent);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--color-text-muted);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  text-align: left;
}

.checkbox-row input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--color-accent);
  width: 16px;
  height: 16px;
}

.checkbox-row label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.checkbox-row label a {
  color: var(--color-accent);
  text-decoration: underline;
}

.form-success {
  display: none;
  padding: var(--space-lg);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid var(--color-success);
  border-radius: var(--radius-md);
  color: var(--color-success);
  text-align: center;
  font-weight: 500;
}

.form-success.show { display: block; }

/* ═══════════════════════════════════════
   DISCLAIMER SECTION
   ═══════════════════════════════════════ */
.disclaimer-section {
  padding: var(--space-2xl) 0;
}

.disclaimer-box {
  background: rgba(245, 197, 24, 0.04);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.disclaimer-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-warning);
}

.disclaimer-icon .badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-xs);
  color: var(--color-accent);
  flex-shrink: 0;
}

.disclaimer-text {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.disclaimer-text strong {
  color: var(--color-text-heading);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  margin-top: var(--space-md);
  max-width: 340px;
  line-height: 1.7;
}

.footer-heading {
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}

.footer-contact-item i {
  color: var(--color-accent);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-copyright .badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 10px;
  color: var(--color-accent);
}

.footer-disclaimer {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  max-width: 500px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   GAME PAGE
   ═══════════════════════════════════════ */
.page-hero {
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(245,197,24,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .page-hero h1 { font-size: var(--fs-4xl); }
}

.page-hero p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.game-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  max-width: 900px;
  margin: var(--space-2xl) auto;
}

.game-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.game-step-number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  font-weight: 700;
  border-radius: 50%;
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
}

.game-step h4 {
  font-size: var(--fs-sm);
}

.game-step p {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.game-iframe-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.game-iframe-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-xl), var(--shadow-glow-primary);
  background: var(--color-surface);
}

.game-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-iframe-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-muted);
  padding: var(--space-xl);
}

.game-reminder {
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.game-reminder i {
  color: var(--color-accent);
}

/* ═══════════════════════════════════════
   CONTACTS PAGE
   ═══════════════════════════════════════ */
.contact-grid {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; }
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  border-color: var(--color-border-accent);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: var(--fs-sm);
  margin-bottom: 2px;
}

.contact-info-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* Forms (shared) */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text-heading);
}

.form-group label .required {
  color: var(--color-error);
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-heading);
  font-size: var(--fs-base);
  outline: none;
  transition: border-color var(--transition-fast);
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239bb3a2' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--color-surface);
  color: var(--color-text-heading);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  color: var(--color-text-muted);
}

.form-loader.show { display: flex; }

.form-loader .spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════
   LEGAL PAGES (Terms, Cookies, Responsible)
   ═══════════════════════════════════════ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

@media (min-width: 768px) {
  .legal-content { padding: var(--space-3xl) var(--space-xl); }
}

.legal-content .last-updated {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

.legal-content h2 {
  font-size: var(--fs-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.legal-content h3 {
  font-size: var(--fs-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
  line-height: 1.8;
}

.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }

.legal-content li {
  margin-bottom: var(--space-xs);
}

.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.legal-content strong {
  color: var(--color-text-heading);
}

/* ═══════════════════════════════════════
   AGE GATE MODAL
   ═══════════════════════════════════════ */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(6, 13, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.age-gate-overlay.hidden {
  display: none;
}

.age-gate-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.age-gate-logo {
  margin-bottom: var(--space-lg);
}

.age-gate-18 {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
}

.age-gate-box h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
}

.age-gate-box p {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.age-gate-actions .btn-yes {
  padding: 0.85rem;
  background: var(--gradient-accent);
  color: var(--color-text-on-accent);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--fs-base);
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-heading);
}
.age-gate-actions .btn-yes:hover {
  box-shadow: var(--shadow-glow-accent);
  transform: translateY(-2px);
}

.age-gate-actions .btn-no {
  padding: 0.85rem;
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: var(--fs-base);
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-heading);
}
.age-gate-actions .btn-no:hover {
  border-color: var(--color-error);
  color: var(--color-error);
}

/* ═══════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-md);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 768px) {
  .cookie-banner-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cookie-banner-text {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cookie-banner-text i {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-banner-actions .btn {
  padding: 0.55rem 1.25rem;
  font-size: var(--fs-sm);
}

.btn-cookie-accept {
  background: var(--gradient-accent);
  color: var(--color-text-on-accent);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}
.btn-cookie-accept:hover {
  box-shadow: var(--shadow-glow-accent);
}

.btn-cookie-decline {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
}
.btn-cookie-decline:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text-heading);
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS (Intersection Observer)
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-dark);
}

/* ═══════════════════════════════════════
   RESPONSIVE FINE-TUNING
   ═══════════════════════════════════════ */
@media (max-width: 479px) {
  .hero-title { font-size: var(--fs-2xl); }
  .hero-subtitle { font-size: var(--fs-base); }
  .features-grid { grid-template-columns: 1fr; }
  .btn-play { font-size: var(--fs-base); padding: 0.85rem 1.75rem; }
  .btn-play--max { font-size: var(--fs-lg); padding: 1rem 2rem; }
  .disclaimer-box { flex-direction: column; }
}

@media (max-width: 767px) {
  .showcase-grid,
  .about-grid {
    text-align: center;
  }
  .about-illustration { order: -1; }
  .section-label { margin-left: auto; margin-right: auto; }
  .section-subtitle { margin-left: auto; margin-right: auto; }
}

/* selection */
::selection {
  background: var(--color-accent);
  color: var(--color-text-on-accent);
}