/* ═══════════════════════════════════════════
   TIDEWINNZ — MASTER STYLESHEET
   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 {
  /* Brand Palette */
  --color-white: #FFFFFF;
  --color-yellow: #FFD600;
  --color-orange: #FF9100;
  --color-red: #FF1744;
  --color-purple: #AA00FF;
  --color-amber: #FFAB00;

  /* Derived */
  --color-bg: #0D0A1A;
  --color-bg-alt: #150F2A;
  --color-bg-card: rgba(255, 255, 255, 0.04);
  --color-bg-glass: rgba(255, 255, 255, 0.06);
  --color-text: #F0EDF6;
  --color-text-muted: #A99FBF;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.12);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--color-yellow), var(--color-orange), var(--color-red));
  --grad-hero: linear-gradient(160deg, var(--color-purple), var(--color-red), var(--color-orange));
  --grad-play: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-orange) 40%, var(--color-red) 100%);
  --grad-play-hover: linear-gradient(135deg, var(--color-amber) 0%, var(--color-red) 50%, var(--color-purple) 100%);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  --grad-dark-overlay: linear-gradient(180deg, rgba(13,10,26,0.7) 0%, rgba(13,10,26,0.95) 100%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: '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: 3.25rem;
  --fs-5xl: 4rem;

  /* 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;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-h: 72px;

  /* Effects */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.4);
  --shadow-glow-yellow: 0 0 30px rgba(255,214,0,0.3);
  --shadow-glow-orange: 0 0 40px rgba(255,145,0,0.35);
  --shadow-glow-red: 0 0 40px rgba(255,23,68,0.3);
  --shadow-glow-purple: 0 0 40px rgba(170,0,255,0.3);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-yellow);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-orange);
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

/* ── Utility / Layout ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-orange);
  margin-bottom: var(--space-md);
  background: rgba(255, 145, 0, 0.1);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 145, 0, 0.2);
}

.section-title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: var(--fs-base);
  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.8em 1.8em;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--color-bg);
  box-shadow: var(--shadow-glow-orange);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 50px rgba(255, 145, 0, 0.5);
  color: var(--color-bg);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border-light);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  background: rgba(255, 214, 0, 0.05);
  transform: translateY(-2px);
}

/* ── PLAY Button — special ── */
.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 1em 2.4em;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-lg);
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  background: var(--grad-play);
  color: var(--color-bg);
  box-shadow: 0 0 30px rgba(255, 145, 0, 0.4), 0 0 60px rgba(255, 23, 68, 0.2);
  animation: pulse-glow 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
}
.btn-play::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--grad-play);
  z-index: -2;
  filter: blur(12px);
  opacity: 0.5;
  animation: pulse-glow 2s ease-in-out infinite;
}
.btn-play::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn-play:hover {
  transform: scale(1.07);
  background: var(--grad-play-hover);
  box-shadow: 0 0 50px rgba(255, 145, 0, 0.6), 0 0 80px rgba(255, 23, 68, 0.4), 0 0 100px rgba(170, 0, 255, 0.2);
  color: var(--color-bg);
}
.btn-play:hover::after {
  left: 100%;
}
.btn-play:active {
  transform: scale(0.97);
  box-shadow: 0 0 20px rgba(255, 145, 0, 0.3);
}

.btn-play--max {
  font-size: var(--fs-xl);
  padding: 1.1em 2.8em;
  animation: pulse-glow-max 1.5s ease-in-out infinite;
}
.btn-play--max::before {
  animation: pulse-glow-max 1.5s ease-in-out infinite;
  filter: blur(18px);
  opacity: 0.6;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 25px rgba(255, 145, 0, 0.35), 0 0 50px rgba(255, 23, 68, 0.15);
  }
  50% {
    box-shadow: 0 0 45px rgba(255, 145, 0, 0.55), 0 0 80px rgba(255, 23, 68, 0.3), 0 0 100px rgba(170, 0, 255, 0.15);
  }
}

@keyframes pulse-glow-max {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 145, 0, 0.4), 0 0 60px rgba(255, 23, 68, 0.2);
  }
  50% {
    box-shadow: 0 0 60px rgba(255, 214, 0, 0.6), 0 0 100px rgba(255, 23, 68, 0.4), 0 0 120px rgba(170, 0, 255, 0.25);
  }
}

/* ── Card ── */
.card {
  background: var(--grad-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(16px);
  transition: all var(--transition-base);
}
.card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ── Badge ── */
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-red);
  color: var(--color-red);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-sm);
  flex-shrink: 0;
  background: rgba(255, 23, 68, 0.1);
}
.badge-18--sm {
  width: 32px;
  height: 32px;
  font-size: var(--fs-xs);
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(13, 10, 26, 0.75);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base);
}
.site-header.scrolled {
  background: rgba(13, 10, 26, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-text);
}
.logo svg {
  width: 36px;
  height: 36px;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-lg);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}
.nav-desktop a {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition-fast);
  position: relative;
  text-decoration: none;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 1px;
  transition: width var(--transition-base);
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--color-text);
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.header-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 10, 26, 0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.mobile-nav a:hover {
  color: var(--color-orange);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-h) + var(--space-2xl)) 0 var(--space-3xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(170, 0, 255, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(255, 23, 68, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 145, 0, 0.15) 0%, transparent 50%),
    var(--color-bg);
  animation: hero-bg-shift 12s ease-in-out infinite alternate;
}

@keyframes hero-bg-shift {
  0% { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(15deg) brightness(1.1); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  padding: 0 var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-amber);
  background: rgba(255, 171, 0, 0.1);
  border: 1px solid rgba(255, 171, 0, 0.25);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: var(--fs-3xl);
  font-weight: 900;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}
.hero-title .gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.hero-note {
  margin-top: var(--space-lg);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

/* ── Floating icons in hero ── */
.hero-float-icon {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  animation: float-drift 8s ease-in-out infinite;
}
@keyframes float-drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  75% { transform: translateY(10px) rotate(-3deg); }
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.about {
  position: relative;
}

.about-grid {
  display: grid;
  gap: var(--space-3xl);
  align-items: center;
}

.about-illustration {
  display: none;
}

.about-text h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-lg);
}
.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;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}
.feature-item:hover {
  border-color: var(--color-border-light);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 145, 0, 0.1);
  color: var(--color-orange);
}

.feature-item h4 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-xs);
  color: var(--color-text);
  font-family: var(--font-display);
}
.feature-item p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════
   GAME SHOWCASE
   ═══════════════════════════════════════════ */
.showcase {
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}
.showcase::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 145, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

.showcase-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  position: relative;
}
.showcase-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.showcase-image .image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-bg), var(--color-bg-alt), rgba(170,0,255,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.showcase-info h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-lg);
}
.showcase-info h3 {
  font-size: var(--fs-lg);
  color: var(--color-orange);
  margin-bottom: var(--space-md);
  font-family: var(--font-display);
}
.showcase-info p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}
.showcase-info .btn-play {
  margin-top: var(--space-md);
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-list {
  max-width: var(--container-narrow);
  margin: var(--space-2xl) auto 0;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
  background: var(--color-bg-glass);
  transition: border-color var(--transition-base);
}
.faq-item:hover {
  border-color: var(--color-border-light);
}
.faq-item.open {
  border-color: rgba(255, 145, 0, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-base);
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: color var(--transition-fast);
}
.faq-question:hover {
  color: var(--color-orange);
}
.faq-question i {
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-orange);
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials {
  background: var(--color-bg-alt);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-2xl);
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--space-sm);
}

.testimonial-card {
  background: var(--grad-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(12px);
  max-width: 600px;
  margin: 0 auto;
}

.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%;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar svg {
  width: 100%;
  height: 100%;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
}
.testimonial-role {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-yellow);
}

.testimonial-text {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
  font-style: italic;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-glass);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.slider-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: rgba(255, 145, 0, 0.1);
}

.slider-dots {
  display: flex;
  gap: var(--space-sm);
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}
.slider-dot.active {
  background: var(--color-orange);
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════ */
.newsletter {
  position: relative;
}

.newsletter-box {
  background: var(--grad-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 145, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter-box h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
}
.newsletter-box .section-subtitle {
  margin: 0 auto var(--space-xl);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.input-field {
  width: 100%;
  padding: 0.9em 1.2em;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  font-size: var(--fs-base);
  outline: none;
  transition: all var(--transition-fast);
}
.input-field:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 145, 0, 0.15);
}
.input-field::placeholder {
  color: var(--color-text-muted);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  text-align: left;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}
.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--color-orange);
  flex-shrink: 0;
}
.checkbox-group a {
  color: var(--color-orange);
}

.newsletter-success {
  display: none;
  color: #4CAF50;
  font-weight: 600;
  padding: var(--space-md);
  background: rgba(76, 175, 80, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(76, 175, 80, 0.2);
}
.newsletter-success.show {
  display: block;
}

/* ═══════════════════════════════════════════
   DISCLAIMER
   ═══════════════════════════════════════════ */
.disclaimer-section {
  padding: var(--space-2xl) 0;
}

.disclaimer-box {
  border: 1px solid rgba(255, 23, 68, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  background: rgba(255, 23, 68, 0.04);
  backdrop-filter: blur(8px);
}

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.disclaimer-header i {
  color: var(--color-red);
}
.disclaimer-header h4 {
  font-size: var(--fs-base);
  color: var(--color-red);
  font-family: var(--font-display);
}

.disclaimer-text {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-2xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
}
.footer-brand p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  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;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.footer-links a:hover {
  color: var(--color-orange);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}
.footer-contact-item i {
  flex-shrink: 0;
  color: var(--color-orange);
  margin-top: 2px;
}

.footer-bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer-copyright {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-disclaimer {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  max-width: 700px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   GAME PAGE
   ═══════════════════════════════════════════ */
.game-hero {
  padding-top: calc(var(--header-h) + var(--space-3xl));
  padding-bottom: var(--space-2xl);
  text-align: center;
}

.game-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-2xl) auto;
  max-width: 700px;
}

.game-step {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.game-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--color-bg);
  font-family: var(--font-display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--fs-sm);
}
.game-step p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.game-step i {
  color: var(--color-orange);
  flex-shrink: 0;
}

.iframe-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--color-border-light);
  box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
  background: var(--color-bg);
}
.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.iframe-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  background: var(--color-bg);
}

.game-reminder {
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(255, 171, 0, 0.05);
  border: 1px solid rgba(255, 171, 0, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.game-reminder i {
  color: var(--color-amber);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   CONTACTS PAGE
   ═══════════════════════════════════════════ */
.contacts-hero {
  padding-top: calc(var(--header-h) + var(--space-3xl));
  padding-bottom: var(--space-2xl);
}

.contacts-grid {
  display: grid;
  gap: var(--space-2xl);
}

.contact-info-card {
  background: var(--grad-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-method:last-child {
  border-bottom: none;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 145, 0, 0.1);
  color: var(--color-orange);
  flex-shrink: 0;
}

.contact-method h4 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
  font-family: var(--font-display);
}
.contact-method p,
.contact-method a {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.contact-form-card {
  background: var(--grad-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}
.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}
.form-group .input-field,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9em 1.2em;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  font-size: var(--fs-base);
  outline: none;
  transition: all var(--transition-fast);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23A99FBF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2em center;
  padding-right: 3em;
}
.form-group select option {
  background: var(--color-bg);
  color: var(--color-text);
}
.form-group .input-field:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 145, 0, 0.15);
}

.form-success {
  display: none;
  color: #4CAF50;
  font-weight: 600;
  padding: var(--space-md);
  background: rgba(76, 175, 80, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(76, 175, 80, 0.2);
  text-align: center;
  margin-top: var(--space-md);
}
.form-success.show { display: block; }

.form-loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  color: var(--color-orange);
}
.form-loader.show { display: flex; }
.form-loader i {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════
   LEGAL PAGES (Terms / Cookies / Responsible)
   ═══════════════════════════════════════════ */
.legal-hero {
  padding-top: calc(var(--header-h) + var(--space-3xl));
  padding-bottom: var(--space-xl);
  text-align: center;
}

.legal-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-bottom: var(--space-3xl);
}
.legal-content h2 {
  font-size: var(--fs-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
  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-md);
  color: var(--color-text);
}
.legal-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
  font-size: var(--fs-sm);
}
.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}
.legal-content ul li {
  list-style: disc;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}
.legal-content a {
  color: var(--color-orange);
}
.legal-date {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  background: var(--color-bg-glass);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

/* ═══════════════════════════════════════════
   AGE GATE MODAL
   ═══════════════════════════════════════════ */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.age-gate-modal {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
}

.age-gate-logo {
  margin-bottom: var(--space-lg);
}

.age-gate-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
}

.age-gate-modal h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
}
.age-gate-modal p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.age-gate-actions .btn-yes {
  background: var(--grad-primary);
  color: var(--color-bg);
  padding: 1em 2em;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  cursor: pointer;
  transition: all var(--transition-base);
}
.age-gate-actions .btn-yes:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-orange);
}

.age-gate-actions .btn-no {
  background: transparent;
  color: var(--color-text-muted);
  padding: 0.8em 2em;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.age-gate-actions .btn-no:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

/* ═══════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(21, 15, 42, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

.cookie-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-text i {
  color: var(--color-amber);
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-text a {
  color: var(--color-orange);
}

.cookie-actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--grad-primary);
  color: var(--color-bg);
  border: none;
  padding: 0.6em 1.4em;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-display);
}
.cookie-accept:hover { transform: scale(1.05); }

.cookie-decline {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 0.6em 1.4em;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-display);
}
.cookie-decline:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet (≥768px)
   ═══════════════════════════════════════════ */
@media (min-width: 768px) {
  .hero-title { font-size: var(--fs-4xl); }
  .hero-subtitle { font-size: var(--fs-lg); }
  .hero-actions { flex-direction: row; justify-content: center; }

  .nav-desktop { display: flex; }
  .header-cta { display: block; }
  .hamburger { display: none; }

  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-illustration { display: block; }

  .features-grid { grid-template-columns: 1fr 1fr; }

  .showcase-grid { grid-template-columns: 1fr 1fr; }

  .game-steps { grid-template-columns: 1fr 1fr; }

  .contacts-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }

  .cookie-inner { flex-direction: row; align-items: center; }

  .newsletter-input-group { flex-direction: row; }
  .newsletter-input-group .btn-primary {
    flex-shrink: 0;
  }

  .section-title { font-size: var(--fs-3xl); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Desktop (≥1024px)
   ═══════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero-title { font-size: var(--fs-5xl); }
  
  .section { padding: var(--space-4xl) 0; }

  .section-title { font-size: var(--fs-3xl); }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .newsletter-box { padding: var(--space-3xl); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤480px)
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title { font-size: var(--fs-2xl); }
  .hero-subtitle { font-size: var(--fs-base); }
  .btn-play { font-size: var(--fs-base); padding: 0.9em 1.8em; }
  .btn-play--max { font-size: var(--fs-lg); padding: 1em 2em; }
  .section { padding: var(--space-2xl) 0; }
}

/* ── Page top spacer for non-hero pages ── */
.page-spacer {
  height: var(--header-h);
}

/* ── Scroll animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hide class ── */
.hidden { display: none !important; }