/* ============================================
   MERRIJOYPEBBL — NEON LUXE HEAT UI
   Sizzling Luxe Lounge Design System
   ============================================ */

/* --- ROOT VARIABLES --- */
:root {
  /* Base Backgrounds */
  --bg-primary: #070707;
  --bg-secondary: #0f172a;
  --bg-surface: #111827;

  /* Sizzling Red */
  --accent-red: linear-gradient(135deg, #ff2e63, #ff6a3d);
  --red-solid: #ff2e63;
  --red-end: #ff6a3d;

  /* Hot Pink */
  --accent-pink: linear-gradient(135deg, #ec4899, #f472b6);
  --pink-solid: #ec4899;

  /* Electric Gold */
  --accent-gold: linear-gradient(135deg, #f59e0b, #fbbf24);
  --gold-solid: #f59e0b;

  /* Deep Purple */
  --accent-purple: linear-gradient(135deg, #7c3aed, #a78bfa);
  --purple-solid: #7c3aed;

  /* Glows */
  --glow-red: rgba(255, 46, 99, 0.45);
  --glow-pink: rgba(236, 72, 153, 0.45);
  --glow-gold: rgba(245, 158, 11, 0.45);
  --glow-purple: rgba(124, 58, 237, 0.35);

  /* Typography */
  --text-primary: #f9fafb;
  --text-secondary: #e5e7eb;
  --text-muted: #6b7280;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(18px);

  /* Layout */
  --max-width: 1280px;
  --section-spacing: 120px;
  --header-height: 80px;

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER — NEON ARC HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header.scrolled::before {
  background: rgba(7, 7, 7, 0.95);
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header-inner {
  height: 64px;
}

.header-arc {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 40px;
  background: rgba(7, 7, 7, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 0 0 50% 50%;
  z-index: 1;
  transition: all 0.4s ease;
}

.header-arc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--accent-red);
  border-radius: 2px;
  box-shadow: 0 0 20px var(--glow-red), 0 0 40px var(--glow-red);
  animation: neonPulse 3s ease-in-out infinite;
}

.header.scrolled .header-arc {
  height: 30px;
}

.header.scrolled .header-arc::after {
  box-shadow: 0 0 30px var(--glow-red), 0 0 60px var(--glow-red), 0 0 80px var(--glow-red);
}

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

.logo-icon {
  font-size: 28px;
  animation: logoGlow 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--glow-pink));
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  background: var(--accent-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--accent-red);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px var(--glow-red);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  text-shadow: 0 0 20px var(--glow-red);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Header CTA */
.header-cta {
  font-size: 14px;
  padding: 10px 24px;
}

/* CTA Buttons */
.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent-red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--glow-red);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-red), 0 0 60px var(--glow-red);
}

.btn-cta:active {
  transform: translateY(0) scale(0.97);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: shine 3s ease-in-out infinite;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-inner {
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border);
  border-radius: 24px 24px 0 0;
  padding: 40px 24px 48px;
  box-shadow: 0 -10px 60px rgba(255, 46, 99, 0.15);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.mobile-nav-link {
  display: block;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--text-primary);
  background: rgba(255, 46, 99, 0.1);
  text-shadow: 0 0 20px var(--glow-red);
}

.mobile-cta {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 17px;
}

/* ============================================
   HERO — SIZZLING STAGE
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

#sparkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-streak {
  position: absolute;
  width: 200%;
  height: 2px;
  opacity: 0.3;
}

.hero-streak-1 {
  top: 30%;
  left: -50%;
  background: linear-gradient(90deg, transparent, var(--red-solid), transparent);
  animation: streakMove 8s linear infinite;
}

.hero-streak-2 {
  top: 55%;
  left: -50%;
  background: linear-gradient(90deg, transparent, var(--pink-solid), transparent);
  animation: streakMove 12s linear infinite reverse;
  animation-delay: 2s;
}

.hero-streak-3 {
  top: 75%;
  left: -50%;
  background: linear-gradient(90deg, transparent, var(--gold-solid), transparent);
  animation: streakMove 10s linear infinite;
  animation-delay: 4s;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: glowBreathe 6s ease-in-out infinite;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow-red) 0%, transparent 70%);
  top: 20%;
  left: 10%;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--glow-purple) 0%, transparent 70%);
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  backdrop-filter: var(--glass-blur);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--accent-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 30px var(--glow-red));
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-legal {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- BUTTONS --- */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--accent-red);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px var(--glow-red);
  border: none;
  cursor: pointer;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px var(--glow-red), 0 0 80px rgba(255, 46, 99, 0.3);
}

.btn-primary:active {
  transform: translateY(0) scale(0.97);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-md);
  backdrop-filter: var(--glass-blur);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  transform: translateY(-1px);
}

/* ============================================
   GLOW DIVIDERS
   ============================================ */
.glow-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-solid), var(--red-end), transparent);
  opacity: 0.4;
  margin: 0;
  box-shadow: 0 0 20px var(--glow-red);
}

.glow-divider-pink {
  background: linear-gradient(90deg, transparent, var(--pink-solid), transparent);
  box-shadow: 0 0 20px var(--glow-pink);
}

.glow-divider-gold {
  background: linear-gradient(90deg, transparent, var(--gold-solid), transparent);
  box-shadow: 0 0 20px var(--glow-gold);
}

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   GAME SECTION — MAIN STAGE
   ============================================ */
.game-preview {
  padding: var(--section-spacing) 0;
}

.game-frame-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.game-frame-glow {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-xl);
  background: var(--accent-red);
  opacity: 0.5;
  filter: blur(20px);
  animation: glowBreathe 4s ease-in-out infinite;
  z-index: 0;
}

.game-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(255, 46, 99, 0.3);
  background: var(--bg-surface);
  box-shadow: 0 0 40px var(--glow-red), inset 0 0 40px rgba(0, 0, 0, 0.5);
  animation: borderGlow 4s linear infinite;
}

.game-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  background: #000;
}

.game-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.game-frame-full .game-frame iframe {
  aspect-ratio: 16/9;
  min-height: 500px;
}

.game-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.game-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: var(--glass-blur);
}

.game-info-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.game-info-card ol,
.game-info-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-info-card ol {
  list-style: decimal;
  padding-left: 20px;
}

.game-info-card li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.game-full {
  padding: 40px 0 var(--section-spacing);
}

/* ============================================
   FEATURES — LUX CARDS
   ============================================ */
.features {
  padding: var(--section-spacing) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  backdrop-filter: var(--glass-blur);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-8px) rotate(0.5deg);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-card-lg {
  grid-column: 1 / -1;
  padding: 56px 48px;
}

.feature-card-wide {
  grid-column: 1 / -1;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  max-width: 500px;
}

.feature-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  top: -40px;
  right: -40px;
}

.feature-card:hover .feature-glow {
  opacity: 1;
}

.fire-glow { background: var(--glow-red); }
.pink-glow { background: var(--glow-pink); }
.gold-glow { background: var(--glow-gold); }
.purple-glow { background: var(--glow-purple); }

.feature-card:hover .fire-glow { box-shadow: 0 0 60px var(--glow-red); }
.feature-card:hover .pink-glow { box-shadow: 0 0 60px var(--glow-pink); }
.feature-card:hover .gold-glow { box-shadow: 0 0 60px var(--glow-gold); }
.feature-card:hover .purple-glow { box-shadow: 0 0 60px var(--glow-purple); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--section-spacing) 0;
}

.cta-box {
  position: relative;
  text-align: center;
  padding: 80px 48px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: var(--glass-blur);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--glow-red) 0%, transparent 70%);
  opacity: 0.15;
  animation: glowBreathe 5s ease-in-out infinite;
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-box .btn-primary {
  position: relative;
}

.cta-legal {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at top center, rgba(255, 46, 99, 0.08), transparent 60%);
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.page-sub {
  font-size: 18px;
  color: var(--text-secondary);
}

/* ============================================
   CONTENT SECTIONS (About, Legal)
   ============================================ */
.content-section {
  padding: 40px 0 var(--section-spacing);
}

.content-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.content-block h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.content-block p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* About Features */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  transition: all 0.3s ease;
}

.about-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.about-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.about-feature h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-feature p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 0;
}

/* Legal Content */
.legal-content {
  padding-bottom: var(--section-spacing);
}

.legal-block {
  max-width: 800px;
  margin: 0 auto;
}

.legal-block h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.legal-block h2:first-child {
  margin-top: 0;
}

.legal-block p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-block ul,
.legal-block ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-block ul {
  list-style: disc;
}

.legal-block ol {
  list-style: decimal;
}

.legal-block li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-block a {
  color: var(--red-solid);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.legal-block a:hover {
  color: var(--red-end);
}

/* Responsible Gaming Banner */
.responsible-banner {
  text-align: center;
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  margin-bottom: 40px;
}

.responsible-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.responsible-banner h2 {
  margin-top: 0 !important;
}

/* Game Disclaimer */
.game-disclaimer {
  padding: 0 0 var(--section-spacing);
}

.disclaimer-box {
  text-align: center;
  padding: 40px;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-xl);
}

.disclaimer-box h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 12px;
}

.disclaimer-box p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: var(--glass-blur);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red-solid);
  box-shadow: 0 0 20px rgba(255, 46, 99, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='m4.5 6.5 3.5 3.5 3.5-3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-group select option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

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

.form-success {
  text-align: center;
  padding: 40px;
}

.success-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  margin-top: var(--section-spacing);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-disclaimer {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  padding: 12px 16px;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-sm);
  margin-top: 16px !important;
  line-height: 1.6 !important;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px var(--glow-red);
}

.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes neonPulse {
  0%, 100% {
    opacity: 0.6;
    box-shadow: 0 0 20px var(--glow-red), 0 0 40px var(--glow-red);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 30px var(--glow-red), 0 0 60px var(--glow-red), 0 0 80px var(--glow-red);
  }
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px var(--glow-pink));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 16px var(--glow-pink)) drop-shadow(0 0 30px var(--glow-red));
    transform: scale(1.05);
  }
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 200%; }
}

@keyframes streakMove {
  0% { transform: translateX(-30%); }
  100% { transform: translateX(30%); }
}

@keyframes glowBreathe {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes borderGlow {
  0% {
    border-color: rgba(255, 46, 99, 0.3);
    box-shadow: 0 0 20px var(--glow-red), inset 0 0 20px rgba(0, 0, 0, 0.5);
  }
  33% {
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 0 20px var(--glow-pink), inset 0 0 20px rgba(0, 0, 0, 0.5);
  }
  66% {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 20px var(--glow-gold), inset 0 0 20px rgba(0, 0, 0, 0.5);
  }
  100% {
    border-color: rgba(255, 46, 99, 0.3);
    box-shadow: 0 0 20px var(--glow-red), inset 0 0 20px rgba(0, 0, 0, 0.5);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Fade-in system */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .game-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 60px;
    --header-height: 70px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-lg,
  .feature-card-wide {
    grid-column: 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .game-frame-full .game-frame iframe {
    min-height: 300px;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .hero-glow-1 {
    width: 300px;
    height: 300px;
  }

  .hero-glow-2 {
    width: 250px;
    height: 250px;
  }

  .header-arc {
    height: 24px;
    bottom: -12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .feature-card-lg {
    padding: 36px 24px;
  }
}

/* --- PREFERS REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}