/* ══════════════════════════════════════════
   CORAL COVE NZ — STYLE SYSTEM
   ══════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  /* Core palette */
  --color-bg-deep: #070418;
  --color-bg-primary: #0d0826;
  --color-bg-secondary: #130e30;
  --color-bg-card: #1a1240;
  --color-bg-card-hover: #221856;
  --color-bg-glass: rgba(26, 18, 64, 0.65);
  --color-bg-glass-strong: rgba(26, 18, 64, 0.85);

  /* Brand colours */
  --color-navy: #0d0826;
  --color-deep-purple: #1a1240;
  --color-purple: #7c3aed;
  --color-purple-light: #a78bfa;
  --color-pink: #f472b6;
  --color-pink-hot: #ec4899;
  --color-yellow: #fbbf24;
  --color-orange: #f97316;
  --color-coral: #fb7185;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f97316 100%);
  --gradient-play: linear-gradient(135deg, #f97316 0%, #ec4899 40%, #f472b6 70%, #fbbf24 100%);
  --gradient-play-hover: linear-gradient(135deg, #fbbf24 0%, #f97316 40%, #ec4899 70%, #7c3aed 100%);
  --gradient-hero: linear-gradient(160deg, #070418 0%, #1a1240 30%, #130e30 60%, #0d0826 100%);
  --gradient-text: linear-gradient(135deg, #f472b6 0%, #fbbf24 50%, #f97316 100%);
  --gradient-card: linear-gradient(145deg, rgba(124, 58, 237, 0.1) 0%, rgba(244, 114, 182, 0.08) 100%);

  /* Text */
  --color-text: #e2e0ef;
  --color-text-muted: #9b96b8;
  --color-text-heading: #ffffff;

  /* Border */
  --color-border: rgba(124, 58, 237, 0.25);
  --color-border-light: rgba(167, 139, 250, 0.15);

  /* Design tokens */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow-purple: 0 0 30px rgba(124, 58, 237, 0.3);
  --shadow-glow-pink: 0 0 30px rgba(244, 114, 182, 0.3);
  --shadow-glow-play: 0 0 20px rgba(249, 115, 22, 0.4), 0 0 40px rgba(236, 72, 153, 0.2);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;

  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 72px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-pink);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-yellow);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  line-height: 1.2;
  font-weight: 700;
}

ul, ol {
  list-style: none;
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.required {
  color: var(--color-coral);
}

.optional {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 0.875rem;
}

/* ── Section Base ── */
.section {
  padding: 60px 0;
  position: relative;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-pink);
  margin-bottom: 12px;
}

.section__label i {
  width: 16px;
  height: 16px;
}

.section__label--center {
  justify-content: center;
  text-align: center;
  display: flex;
}

.section__title {
  font-size: 1.875rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.section__title--center {
  text-align: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(244, 114, 182, 0.5);
  color: var(--color-pink);
}

.btn-outline:hover {
  background: rgba(244, 114, 182, 0.1);
  border-color: var(--color-pink);
  color: #fff;
  transform: translateY(-2px);
}

/* Play Button — special */
.btn-play {
  background: var(--gradient-play);
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  font-size: 1.05rem;
  box-shadow: var(--shadow-glow-play);
  animation: pulse-glow 2.5s ease-in-out infinite;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-play:hover {
  background: var(--gradient-play-hover);
  transform: scale(1.07);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.5), 0 0 60px rgba(236, 72, 153, 0.3), 0 0 80px rgba(251, 191, 36, 0.2);
  color: #fff;
}

.btn-play:active {
  transform: scale(0.97);
}

.btn-play--lg {
  padding: 18px 42px;
  font-size: 1.15rem;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4), 0 0 40px rgba(236, 72, 153, 0.15);
  }
  50% {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.6), 0 0 60px rgba(236, 72, 153, 0.3), 0 0 80px rgba(251, 191, 36, 0.15);
  }
}

/* ── Badge 18+ ── */
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  min-width: 36px;
  text-align: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   HEADER
   ═══════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--color-bg-glass-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-light);
  transition: background var(--transition-base);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 8px;
}

.header__nav a {
  color: var(--color-text);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  font-size: 0.95rem;
  text-decoration: none;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-pink);
  background: rgba(244, 114, 182, 0.08);
}

.header__cta {
  display: none;
}

.header__cta .btn-play {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-glass-strong);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: var(--color-text-heading);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--color-pink);
  background: rgba(244, 114, 182, 0.1);
}

.mobile-menu .btn-play {
  margin-top: 16px;
  font-size: 1.1rem;
}

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: calc(var(--header-height) + 40px) 0 60px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(244, 114, 182, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__particles .particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

.hero__floating {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__floating .float-icon {
  position: absolute;
  opacity: 0.08;
  animation: icon-drift linear infinite;
}

@keyframes icon-drift {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  padding: 6px 16px 6px 6px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--color-text-heading);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ═══════════════════════════════════
   ABOUT
   ═══════════════════════════════════ */
.about {
  background: var(--color-bg-primary);
}

.about__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.about__visual {
  display: flex;
  justify-content: center;
}

.about__visual svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.about__text {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--color-border);
  background: var(--color-bg-card);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-purple);
}

.feature-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-card__icon i {
  width: 20px;
  height: 20px;
  color: #fff;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════
   GAME SHOWCASE
   ═══════════════════════════════════ */
.game-showcase {
  background: var(--color-bg-deep);
}

.showcase__grid {
  display: grid;
  gap: 40px;
  margin-top: 32px;
}

.showcase__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
  background: linear-gradient(135deg, var(--color-deep-purple), var(--color-navy));
}

.showcase__img-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-bg-glass);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-yellow);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.showcase__img-badge i {
  width: 14px;
  height: 14px;
}

.showcase__story {
  margin-bottom: 28px;
}

.showcase__story p {
  color: var(--color-text-muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.showcase__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.showcase__note i {
  width: 16px;
  height: 16px;
  color: var(--color-yellow);
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   FAQ
   ═══════════════════════════════════ */
.faq {
  background: var(--color-bg-primary);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

.accordion__item {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-card);
  transition: all var(--transition-base);
}

.accordion__item:hover {
  border-color: var(--color-border);
}

.accordion__item.is-open {
  border-color: var(--color-purple);
  box-shadow: var(--shadow-glow-purple);
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--color-text-heading);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  gap: 12px;
  transition: color var(--transition-fast);
}

.accordion__header:hover {
  color: var(--color-pink);
}

.accordion__icon {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.accordion__icon i {
  width: 20px;
  height: 20px;
  color: var(--color-purple-light);
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(180deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion__body-inner {
  padding: 0 20px 18px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ═══════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════ */
.testimonials {
  background: var(--color-bg-deep);
}

.testimonials__slider {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--color-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-pink);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar svg {
  width: 100%;
  height: 100%;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-heading);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-top: 2px;
}

.testimonial-card__stars .star {
  color: var(--color-yellow);
  width: 14px;
  height: 14px;
}

.testimonial-card__text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card__text::before {
  content: '"';
  color: var(--color-purple-light);
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 2px;
}

.testimonial-card__text::after {
  content: '"';
  color: var(--color-purple-light);
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 2px;
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonials__nav .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonials__nav .dot.active {
  background: var(--color-pink);
  transform: scale(1.3);
}

/* ═══════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════ */
.newsletter {
  background: var(--color-bg-primary);
}

.newsletter__card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter__card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.newsletter__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.newsletter__icon i {
  width: 28px;
  height: 28px;
  color: #fff;
}

.newsletter__text {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter__form {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter__input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.newsletter__input-group input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-text-heading);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast);
  font-family: var(--font-primary);
}

.newsletter__input-group input[type="email"]:focus {
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.newsletter__input-group input[type="email"]::placeholder {
  color: var(--color-text-muted);
}

/* ── Checkbox ── */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--color-border);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-top: 1px;
  position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--gradient-primary);
  border-color: transparent;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.checkbox-label a {
  color: var(--color-pink);
}

/* ── Form Message ── */
.form-message {
  margin-top: 12px;
  padding: 0;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  text-align: center;
  display: none;
}

.form-message.is-visible {
  display: block;
  padding: 12px 16px;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* ═══════════════════════════════════
   DISCLAIMER
   ═══════════════════════════════════ */
.disclaimer {
  padding: 32px 0;
  background: var(--color-bg-secondary);
}

.disclaimer__card {
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: rgba(251, 191, 36, 0.04);
  position: relative;
}

.disclaimer__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.disclaimer__header i {
  width: 22px;
  height: 22px;
  color: var(--color-yellow);
}

.disclaimer__header span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-yellow);
}

.disclaimer__text {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.75;
}

.disclaimer__text strong {
  color: var(--color-text);
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.footer {
  background: var(--color-bg-deep);
  border-top: 1px solid var(--color-border-light);
  padding: 48px 0 24px;
}

.footer__grid {
  display: grid;
  gap: 32px;
}

.footer__brand-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 320px;
}

.footer__section h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text-heading);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--color-pink);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer__contact-item i {
  width: 18px;
  height: 18px;
  color: var(--color-purple-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid var(--color-border-light);
  margin-top: 32px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer__copyright {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__mini-disclaimer {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  max-width: 600px;
  line-height: 1.6;
}

/* ═══════════════════════════════════
   PAGE HEROES (inner pages)
   ═══════════════════════════════════ */
.page-hero {
  padding: calc(var(--header-height) + 48px) 0 40px;
  background: var(--gradient-hero);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--color-bg-primary), transparent);
  pointer-events: none;
}

.page-hero--legal::after {
  background: linear-gradient(to top, var(--color-bg-deep), transparent);
}

.page-hero--game::after {
  background: linear-gradient(to top, var(--color-bg-deep), transparent);
}

.page-hero__sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ═══════════════════════════════════
   GAME PAGE
   ═══════════════════════════════════ */
.game-instructions {
  background: var(--color-bg-deep);
  padding-bottom: 20px;
}

.instructions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.instruction-step {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  transition: all var(--transition-base);
}

.instruction-step:hover {
  border-color: var(--color-border);
  transform: translateY(-2px);
}

.instruction-step__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.instruction-step__icon i {
  width: 20px;
  height: 20px;
  color: #fff;
}

.instruction-step__num {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: rgba(124, 58, 237, 0.1);
  line-height: 1;
}

.instruction-step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.instruction-step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.game-frame-section {
  background: var(--color-bg-deep);
  padding-top: 20px;
}

.game-frame-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  background: var(--color-bg-card);
}

.game-frame__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border-light);
}

.game-frame__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-heading);
}

.game-frame__title i {
  width: 18px;
  height: 18px;
  color: var(--color-pink);
}

.game-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
}

.game-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-frame__fallback {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--color-bg-card);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--color-text-muted);
  padding: 24px;
  text-align: center;
}

.game-frame__fallback i {
  width: 48px;
  height: 48px;
  color: var(--color-purple-light);
}

.game-frame__footer {
  padding: 14px 20px;
  border-top: 1px solid var(--color-border-light);
}

.game-frame__footer p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.game-frame__footer i {
  width: 16px;
  height: 16px;
  color: var(--color-yellow);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════════════════════════════════
   CONTACTS PAGE
   ═══════════════════════════════════ */
.contacts-section {
  background: var(--color-bg-deep);
}

.contacts__grid {
  display: grid;
  gap: 40px;
}

.contacts__info h2,
.contacts__form-wrap h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.contacts__info p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: var(--color-border);
  transform: translateX(4px);
}

.contact-card__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__icon i {
  width: 20px;
  height: 20px;
  color: #fff;
}

.contact-card h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-text-heading);
  font-size: 0.95rem;
  font-family: var(--font-primary);
  outline: none;
  transition: all var(--transition-fast);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group select {
  appearance: none;
  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 1L6 6L11 1' stroke='%239b96b8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--color-bg-card);
  color: var(--color-text);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 0.8rem;
  color: var(--color-coral);
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--color-coral);
}

.form-group.has-error .form-error {
  display: block;
}

.btn-submit {
  align-self: flex-start;
  margin-top: 8px;
}

.btn-submit__loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════ */
.legal-content {
  background: var(--color-bg-deep);
}

.legal-body h2 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border-light);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  font-size: 1.05rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-body p {
  color: var(--color-text-muted);
  margin-bottom: 12px;
  line-height: 1.8;
}

.legal-body ul,
.legal-body ol {
  margin-bottom: 14px;
  padding-left: 24px;
}

.legal-body ul {
  list-style: disc;
}

.legal-body ol {
  list-style: decimal;
}

.legal-body li {
  color: var(--color-text-muted);
  margin-bottom: 6px;
  line-height: 1.7;
}

.legal-body a {
  color: var(--color-pink);
}

.legal-body strong {
  color: var(--color-text);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
  overflow-x: auto;
  display: block;
}

.legal-table thead {
  background: var(--color-bg-card);
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--color-border-light);
  white-space: nowrap;
}

.legal-table th {
  color: var(--color-text-heading);
  font-weight: 600;
}

.legal-table td {
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════
   AGE GATE
   ═══════════════════════════════════ */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(7, 4, 24, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate__card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
}

.age-gate__icon {
  margin-bottom: 20px;
}

.age-gate__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.age-gate__text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.age-gate__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-gate__btn-yes {
  background: var(--gradient-play);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.age-gate__btn-yes:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-glow-play);
}

.age-gate__btn-no {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
}

.age-gate__btn-no:hover {
  border-color: var(--color-coral);
  color: var(--color-coral);
}

/* ═══════════════════════════════════
   COOKIE CONSENT
   ═══════════════════════════════════ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-glass-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  padding: 18px 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.is-visible {
  transform: translateY(0);
}

.cookie-consent__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.cookie-consent__text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cookie-consent__text i {
  width: 22px;
  height: 22px;
  color: var(--color-yellow);
  flex-shrink: 0;
  margin-top: 1px;
}

.cookie-consent__text a {
  color: var(--color-pink);
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-consent__btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
}

.cookie-consent__btn--accept {
  background: var(--gradient-primary);
  color: #fff;
}

.cookie-consent__btn--accept:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-glow-purple);
}

.cookie-consent__btn--decline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.cookie-consent__btn--decline:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

/* ═══════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   ═══════════════════════════════════ */

/* 480px+ */
@media (min-width: 480px) {
  .hero__title {
    font-size: 3rem;
  }

  .newsletter__input-group {
    flex-direction: row;
  }

  .about__features {
    grid-template-columns: 1fr 1fr;
  }

  .instructions__grid {
    grid-template-columns: 1fr 1fr;
  }

  .age-gate__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* 768px+ */
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .section__title {
    font-size: 2.25rem;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__subtitle {
    font-size: 1.2rem;
  }

  .hamburger {
    display: none;
  }

  .header__nav {
    display: flex;
  }

  .header__cta {
    display: block;
  }

  .about__grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .testimonials__slider {
    grid-template-columns: 1fr 1fr;
  }

  .contacts__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1.3fr 0.7fr 1fr;
  }

  .cookie-consent__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .instructions__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-hero {
    padding: calc(var(--header-height) + 60px) 0 50px;
  }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4rem;
  }

  .section__title {
    font-size: 2.5rem;
  }

  .section {
    padding: 100px 0;
  }

  .testimonials__slider {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1.4fr 0.6fr 0.6fr 1fr;
  }

  .game-frame {
    padding-bottom: 50%;
  }
}

/* 1200px+ */
@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .hero__title {
    font-size: 4.2rem;
  }
}