/* =====================================================
   ZINGSPACEPONT — MONSTER MAYHEM CSS
   ===================================================== */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --bg-primary: #0a0c12;
  --bg-secondary: #11141f;
  --bg-card: rgba(30, 35, 48, 0.6);
  --bg-card-solid: #1e2330;

  --green: #c0ff40;
  --purple: #c084fc;
  --orange: #fb923c;
  --blue: #60a5fa;
  --pink: #f472b6;
  --yellow: #facc15;

  --text-primary: #ffffff;
  --text-secondary: #a3a3b0;

  --nav-height: 70px;
  --max-width: 1440px;
  --radius-pill: 24px;
  --radius-card: 16px;
  --radius-sm: 12px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow-green: 0 0 20px rgba(192, 255, 64, 0.4);
  --glow-purple: 0 0 20px rgba(192, 132, 252, 0.4);
  --glow-orange: 0 0 20px rgba(251, 146, 60, 0.4);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

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

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--green), var(--purple));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--green); }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

/* ---------- GRADIENT TEXT ---------- */
.gradient-text {
  background: linear-gradient(135deg, var(--green), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-2 {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--green), var(--purple), var(--orange));
  background-size: 200% 200%;
  color: #0a0c12;
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  animation: gradientShift 4s ease infinite;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px rgba(192, 255, 64, 0.5), 0 0 80px rgba(192, 132, 252, 0.3);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(192, 255, 64, 0.3);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(192, 255, 64, 0.08);
  transform: translateY(-2px);
  box-shadow: var(--glow-green);
}

/* ---------- TOP NAVIGATION ---------- */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 12, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192, 255, 64, 0.15);
  box-shadow: 0 1px 40px rgba(192, 255, 64, 0.08);
  transition: box-shadow var(--transition);
}

.topnav.scrolled {
  box-shadow: 0 2px 60px rgba(192, 255, 64, 0.15);
}

.topnav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topnav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.8rem;
  animation: bounce 2s ease-in-out infinite;
  display: inline-block;
}

.logo-text {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--green);
}

.topnav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  cursor: pointer;
}

.nav-icon {
  font-size: 1.3rem;
  transition: transform var(--transition);
}

.nav-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.nav-item:hover .nav-icon {
  transform: translateY(-2px) scale(1.15);
}

.nav-item:hover .nav-label,
.nav-item.active .nav-label {
  color: var(--green);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--green);
  border-radius: 3px;
  box-shadow: var(--glow-green);
}

.nav-item:hover {
  background: rgba(192, 255, 64, 0.08);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.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 OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(192, 255, 64, 0.2);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.drawer-close {
  margin-left: auto;
  background: rgba(192, 255, 64, 0.1);
  border: 1px solid rgba(192, 255, 64, 0.3);
  color: var(--green);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.drawer-close:hover {
  background: var(--green);
  color: #000;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 4px;
  flex: 1;
}

.drawer-item {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.drawer-item:hover {
  background: rgba(192, 255, 64, 0.08);
  color: var(--green);
  border-color: rgba(192, 255, 64, 0.2);
  padding-left: 22px;
}

.drawer-legal {
  padding: 16px 20px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  margin-top: var(--nav-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192,255,64,0.15), transparent);
  top: -100px;
  right: 0;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192,132,252,0.12), transparent);
  bottom: -50px;
  left: -50px;
  animation-delay: 3s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(251,146,60,0.1), transparent);
  top: 50%;
  left: 40%;
  animation-delay: 5s;
}

.monster-silhouette {
  position: absolute;
  font-size: 4rem;
  opacity: 0.04;
  animation: silhouetteFloat 12s ease-in-out infinite;
  user-select: none;
}

.ms--1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 6rem; }
.ms--2 { bottom: 20%; right: 5%; animation-delay: 2s; font-size: 5rem; }
.ms--3 { top: 50%; left: 50%; animation-delay: 4s; font-size: 3rem; }
.ms--4 { top: 20%; right: 30%; animation-delay: 6s; font-size: 4rem; }

.energy-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(192,255,64,0.06);
  animation: ringPulse 6s ease-in-out infinite;
}

.er--1 { width: 600px; height: 600px; top: -150px; right: -100px; animation-delay: 0s; }
.er--2 { width: 800px; height: 800px; bottom: -300px; left: -200px; animation-delay: 3s; }

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(192,255,64,0.1);
  border: 1px solid rgba(192,255,64,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
  display: inline-block;
}

.badge-dot.green { background: var(--green); }
.badge-dot.purple { background: var(--purple); }
.badge-dot.orange { background: var(--orange); }

.hero__headline {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.75;
}

.hero__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px;
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
}

.hero__legal span { opacity: 0.8; }

.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* MONSTER VISUAL */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.monster-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  height: 420px;
}

.monster-main {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: monsterBounce 3s ease-in-out infinite;
}

.monster-body {
  position: relative;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(30,35,48,0.9), rgba(17,20,31,0.95));
  border-radius: 50% 45% 55% 40% / 45% 50% 50% 55%;
  border: 2px solid rgba(192,255,64,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(192,255,64,0.2),
    0 0 80px rgba(192,132,252,0.15),
    inset 0 0 30px rgba(192,255,64,0.05);
  animation: bodyMorph 6s ease-in-out infinite;
}

.monster-eyes {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  position: relative;
  z-index: 3;
}

.eye {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(192,255,64,0.6), 0 0 40px rgba(192,255,64,0.3);
  animation: eyeGlow 2s ease-in-out infinite alternate;
  position: relative;
}

.pupil {
  width: 16px;
  height: 16px;
  background: #0a0c12;
  border-radius: 50%;
  animation: pupilMove 4s ease-in-out infinite;
}

.monster-mouth {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.tooth {
  width: 12px;
  height: 18px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  border-radius: 2px;
  opacity: 0.9;
}

.monster-emoji-core {
  position: absolute;
  font-size: 3rem;
  opacity: 0.2;
  bottom: 20px;
  right: 20px;
}

.monster-horns {
  display: flex;
  gap: 80px;
  margin-bottom: -15px;
  position: relative;
  z-index: 2;
  order: -1;
}

.horn {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 40px solid var(--purple);
  filter: drop-shadow(0 0 8px rgba(192,132,252,0.6));
  transform-origin: bottom;
  animation: hornWiggle 3s ease-in-out infinite;
}

.horn-right { animation-delay: 0.5s; }

.monster-claws {
  display: flex;
  gap: 160px;
  margin-top: -20px;
  font-size: 2rem;
  animation: clawWave 4s ease-in-out infinite;
}

.claw-left { transform: rotate(180deg) scaleX(-1); }
.claw-right { transform: rotate(180deg); }

/* FLOATING COINS */
.floating-coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.coin {
  position: absolute;
  font-size: 1.5rem;
  animation: coinFloat 4s ease-in-out infinite;
}

.coin-1 { top: 10%; left: 5%; animation-delay: 0s; }
.coin-2 { top: 30%; right: 0%; animation-delay: 0.8s; }
.coin-3 { bottom: 20%; right: 5%; animation-delay: 1.6s; }
.coin-4 { bottom: 5%; left: 15%; animation-delay: 2.4s; }
.coin-5 { top: 5%; right: 20%; animation-delay: 3.2s; }

.glow-ring--hero {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(192,255,64,0.15);
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}

/* ---------- SECTION SHARED STYLES ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

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

/* ---------- GAME SECTION ---------- */
.game-section {
  padding: 80px 24px;
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.game-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.game-frame-outer {
  position: relative;
  padding: 20px;
}

.claw-deco {
  position: absolute;
  font-size: 2rem;
  opacity: 0.4;
  z-index: 3;
  animation: clawPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(192,255,64,0.4));
}

.claw-tl { top: -10px; left: -10px; transform: rotate(-45deg); }
.claw-tr { top: -10px; right: -10px; transform: rotate(45deg) scaleX(-1); }
.claw-bl { bottom: -10px; left: -10px; transform: rotate(225deg) scaleX(-1); }
.claw-br { bottom: -10px; right: -10px; transform: rotate(135deg); }

.corner-eye {
  position: absolute;
  z-index: 3;
}

.eye-corner-tl { top: 20px; left: 20px; }
.eye-corner-tr { top: 20px; right: 20px; }

.eye-sm {
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(192,255,64,0.5);
  animation: eyeGlow 2.5s ease-in-out infinite alternate;
}

.pupil-sm {
  width: 10px;
  height: 10px;
  background: #0a0c12;
  border-radius: 50%;
}

/* ENERGY PARTICLES */
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  z-index: 3;
  animation: particleOrbit 4s linear infinite;
}

.p1 { background: var(--green); top: 20%; left: -15px; animation-duration: 3s; box-shadow: 0 0 10px var(--green); }
.p2 { background: var(--purple); bottom: 20%; left: -15px; animation-duration: 4s; animation-delay: 0.5s; box-shadow: 0 0 10px var(--purple); }
.p3 { background: var(--orange); top: 20%; right: -15px; animation-duration: 3.5s; animation-delay: 1s; box-shadow: 0 0 10px var(--orange); }
.p4 { background: var(--pink); bottom: 20%; right: -15px; animation-duration: 5s; animation-delay: 1.5s; box-shadow: 0 0 10px var(--pink); }
.p5 { background: var(--yellow); top: 50%; left: -15px; animation-duration: 4.5s; animation-delay: 2s; box-shadow: 0 0 10px var(--yellow); }

.game-container {
  position: relative;
  background: #000;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 2px solid rgba(192,255,64,0.2);
  box-shadow:
    0 0 60px rgba(192,255,64,0.12),
    0 0 120px rgba(192,132,252,0.08),
    inset 0 0 40px rgba(0,0,0,0.5);
  aspect-ratio: 16/10;
}

.game-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-meta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.meta-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ---------- FEATURES SECTION ---------- */
.features-section {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  cursor: default;
}

.feature-card__eye {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card[data-accent="green"] .feature-card__eye { background: var(--green); box-shadow: 0 0 10px rgba(192,255,64,0.5); }
.feature-card[data-accent="purple"] .feature-card__eye { background: var(--purple); box-shadow: 0 0 10px rgba(192,132,252,0.5); }
.feature-card[data-accent="orange"] .feature-card__eye { background: var(--orange); box-shadow: 0 0 10px rgba(251,146,60,0.5); }
.feature-card[data-accent="blue"] .feature-card__eye { background: var(--blue); box-shadow: 0 0 10px rgba(96,165,250,0.5); }
.feature-card[data-accent="pink"] .feature-card__eye { background: var(--pink); box-shadow: 0 0 10px rgba(244,114,182,0.5); }
.feature-card[data-accent="yellow"] .feature-card__eye { background: var(--yellow); box-shadow: 0 0 10px rgba(250,204,21,0.5); }

.feature-card__eye .pupil {
  width: 8px;
  height: 8px;
  background: #0a0c12;
  border-radius: 50%;
  animation: none;
}

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

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-card);
}

.feature-card[data-accent="green"]::before { background: linear-gradient(135deg, rgba(192,255,64,0.04), transparent); }
.feature-card[data-accent="purple"]::before { background: linear-gradient(135deg, rgba(192,132,252,0.04), transparent); }
.feature-card[data-accent="orange"]::before { background: linear-gradient(135deg, rgba(251,146,60,0.04), transparent); }
.feature-card[data-accent="blue"]::before { background: linear-gradient(135deg, rgba(96,165,250,0.04), transparent); }
.feature-card[data-accent="pink"]::before { background: linear-gradient(135deg, rgba(244,114,182,0.04), transparent); }
.feature-card[data-accent="yellow"]::before { background: linear-gradient(135deg, rgba(250,204,21,0.04), transparent); }

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

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192,255,64,0.2);
  box-shadow: 0 16px 60px rgba(0,0,0,0.4), var(--glow-green);
}

.feature-card[data-accent="green"]:hover { border-color: rgba(192,255,64,0.3); box-shadow: 0 16px 60px rgba(0,0,0,0.4), var(--glow-green); }
.feature-card[data-accent="purple"]:hover { border-color: rgba(192,132,252,0.3); box-shadow: 0 16px 60px rgba(0,0,0,0.4), var(--glow-purple); }
.feature-card[data-accent="orange"]:hover { border-color: rgba(251,146,60,0.3); box-shadow: 0 16px 60px rgba(0,0,0,0.4), var(--glow-orange); }

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---------- EXPERIENCE SECTION ---------- */
.experience-section {
  padding: 80px 24px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.experience-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.monster-roster {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.roster-monster {
  font-size: 4rem;
  animation: rosterFloat 3s ease-in-out infinite;
  cursor: default;
  filter: drop-shadow(0 0 12px rgba(192,255,64,0.3));
  transition: filter var(--transition);
}

.roster-monster:hover {
  filter: drop-shadow(0 0 24px rgba(192,255,64,0.7));
}

.rm-1 { animation-delay: 0s; font-size: 5rem; }
.rm-2 { animation-delay: 0.4s; }
.rm-3 { animation-delay: 0.8s; }
.rm-4 { animation-delay: 1.2s; font-size: 3.5rem; }
.rm-5 { animation-delay: 1.6s; }

.exp-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.exp-text strong {
  color: var(--green);
  font-weight: 700;
}

/* ---------- LEGAL STRIP ---------- */
.legal-strip {
  padding: 60px 24px;
  background: rgba(17,20,31,0.8);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.legal-strip__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.paw-divider {
  font-size: 1.4rem;
  opacity: 0.4;
  margin: 20px 0;
  letter-spacing: 8px;
}

.legal-strip__inner h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--orange);
}

.legal-strip__inner p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand .logo-icon { font-size: 2rem; }
.footer-brand .logo-text { font-size: 1.2rem; }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  font-weight: 500;
}

.footer-links a:hover { color: var(--green); }

.footer-legal {
  text-align: right;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- INNER PAGES ---------- */
.page-hero {
  position: relative;
  min-height: 300px;
  margin-top: var(--nav-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 24px;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  border-bottom: 1px solid rgba(192,255,64,0.1);
}

.page-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero__inner h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.page-hero__inner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.page-main {
  padding: 60px 24px;
  min-height: 60vh;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
}

/* CONTENT BLOCKS */
.content-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.content-block:last-of-type { border-bottom: none; }

.content-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.content-block h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}

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

/* ABOUT STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: rgba(192,255,64,0.3);
  box-shadow: var(--glow-green);
  transform: translateY(-4px);
}

.stat-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
}

.cta-block {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  max-width: 1000px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  font-size: 1.7rem;
  margin-bottom: 32px;
}

.monster-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 14px 16px;
  transition: all var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.form-group select option {
  background: var(--bg-secondary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(192,255,64,0.1);
}

.form-submit { width: 100%; justify-content: center; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.info-card:hover {
  border-color: rgba(192,255,64,0.2);
  box-shadow: var(--glow-green);
}

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.responsible-box {
  background: rgba(251,146,60,0.08);
  border: 1px solid rgba(251,146,60,0.3);
  border-radius: var(--radius-card);
  padding: 20px;
  margin-top: 24px;
}

.responsible-box h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--orange);
}

.responsible-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 800px;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
  display: inline-block;
}

.legal-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.legal-section:last-of-type { border-bottom: none; }

.legal-section h2 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--green);
}

.legal-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* RESPONSIBLE GAMING */
.responsible-highlight {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: rgba(192,255,64,0.06);
  border: 1px solid rgba(192,255,64,0.2);
  border-radius: var(--radius-card);
  margin-bottom: 48px;
}

.rh-icon { font-size: 3rem; flex-shrink: 0; }

.responsible-highlight h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.responsible-highlight p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.habits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.habit-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: all var(--transition);
}

.habit-card:hover {
  border-color: rgba(192,255,64,0.2);
  transform: translateY(-3px);
}

.habit-icon { font-size: 2rem; margin-bottom: 12px; }

.habit-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.habit-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.warning-list {
  padding-left: 24px;
  margin-top: 16px;
}

.warning-list li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.help-resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.resource-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  padding: 24px;
}

.resource-card h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--green);
}

.resource-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 6px;
}

/* ---------- KEYFRAME ANIMATIONS ---------- */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.98); }
}

@keyframes silhouetteFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -15px) rotate(5deg); }
  75% { transform: translate(-15px, 10px) rotate(-3deg); }
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
}

@keyframes monsterBounce {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes bodyMorph {
  0%, 100% { border-radius: 50% 45% 55% 40% / 45% 50% 50% 55%; }
  33% { border-radius: 45% 55% 40% 55% / 55% 40% 60% 45%; }
  66% { border-radius: 55% 40% 55% 45% / 40% 60% 40% 55%; }
}

@keyframes eyeGlow {
  0% { box-shadow: 0 0 15px rgba(192,255,64,0.5); }
  100% { box-shadow: 0 0 30px rgba(192,255,64,0.9), 0 0 50px rgba(192,255,64,0.4); }
}

@keyframes pupilMove {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(4px, -2px); }
  50% { transform: translate(-2px, 3px); }
  75% { transform: translate(3px, 2px); }
}

@keyframes hornWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  75% { transform: rotate(-8deg); }
}

@keyframes clawWave {
  0%, 100% { gap: 160px; }
  50% { gap: 140px; }
}

@keyframes coinFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.9; }
  50% { transform: translate(10px, -20px) rotate(180deg); opacity: 0.6; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

@keyframes clawPulse {
  0%, 100% { opacity: 0.3; transform-origin: center; }
  50% { opacity: 0.6; }
}

@keyframes particleOrbit {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-30px) scale(1.3); opacity: 0.7; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes rosterFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.05); }
}

/* ---------- RESPONSIVE ---------- */

/* TABLET */
@media (max-width: 1023px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .monster-frame { width: 280px; height: 280px; }
  .monster-body { width: 160px; height: 160px; }
  .monster-eyes { gap: 18px; }
  .eye { width: 34px; height: 34px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-legal { text-align: left; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .help-resources { grid-template-columns: 1fr; }
  .habits-grid { grid-template-columns: 1fr; }
}

/* MOBILE */
@media (max-width: 767px) {
  .topnav__menu { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 40px 0; }
  .hero__inner { padding: 0 16px; gap: 32px; }
  .hero__headline { font-size: 2rem; }
  .hero__cta-group { flex-direction: column; }
  .hero__legal { font-size: 0.7rem; gap: 6px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

  .monster-frame { width: 220px; height: 220px; }
  .monster-body { width: 140px; height: 140px; }
  .monster-eyes { gap: 14px; margin-bottom: 10px; }
  .eye { width: 28px; height: 28px; }
  .pupil { width: 10px; height: 10px; }
  .monster-horns { gap: 60px; }
  .monster-claws { gap: 110px; font-size: 1.4rem; }

  .features-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-num { font-size: 2rem; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-legal { text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }

  .page-main { padding: 40px 16px; }
  .legal-nav-links { flex-direction: column; }
  .cta-block { flex-direction: column; }

  .game-section { padding: 60px 16px; }
  .game-frame-outer { padding: 12px; }
  .game-container { aspect-ratio: 4/3; }

  .topnav__inner { padding: 0 16px; }
  .hero__inner { padding: 0 12px; }

  .responsible-highlight { flex-direction: column; }
  .help-resources { grid-template-columns: 1fr; }
  .habits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .logo-text { font-size: 1rem; }
  .hero__headline { font-size: 1.7rem; }
  .monster-frame { width: 180px; height: 180px; }
  .monster-body { width: 120px; height: 120px; }
  .about-stats { grid-template-columns: 1fr; }
}