/* ============================================
   PanteonGG — Global Stylesheet
   Design: Neo-Gaming / Deep Space
   Fonts: Chakra Petch (display) + Outfit (body)
============================================ */

@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap");

/* ── Variables ─────────────────────────────── */
:root {
  --bg-void: #04040d;
  --bg-deep: #080815;
  --bg-card: #0d0d20;
  --bg-card-2: #12122a;
  --bg-glass: rgba(13, 13, 32, 0.7);

  --lime: #b8ff00;
  --lime-dim: #8fc900;
  --cyan: #00d4ff;
  --cyan-dim: #00a3c4;
  --coral: #ff4d6d;
  --coral-dim: #cc3355;
  --gold: #ffd60a;

  --text-primary: #e8e8f5;
  --text-muted: #6b6b90;
  --text-dim: #3a3a58;

  --border: rgba(184, 255, 0, 0.12);
  --border-cyan: rgba(0, 212, 255, 0.15);
  --border-hover: rgba(184, 255, 0, 0.4);

  --glow-lime:
    0 0 20px rgba(184, 255, 0, 0.35), 0 0 60px rgba(184, 255, 0, 0.1);
  --glow-cyan:
    0 0 20px rgba(0, 212, 255, 0.35), 0 0 60px rgba(0, 212, 255, 0.1);
  --glow-coral:
    0 0 20px rgba(255, 77, 109, 0.35), 0 0 60px rgba(255, 77, 109, 0.1);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}

/* ── Custom Cursor ──────────────────────────── */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
}
.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.18s ease,
    width 0.2s,
    height 0.2s,
    border-color 0.2s;
}
.cursor-ring.hovered {
  width: 48px;
  height: 48px;
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.05);
}
body:hover .cursor-dot {
  opacity: 1;
}

/* ── Noise / Stars Background ───────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(
      1px 1px at 10% 15%,
      rgba(184, 255, 0, 0.3) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 30% 60%,
      rgba(0, 212, 255, 0.25) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 55% 25%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 72% 80%,
      rgba(184, 255, 0, 0.2) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 88% 45%,
      rgba(0, 212, 255, 0.2) 0%,
      transparent 100%
    ),
    radial-gradient(
      2px 2px at 20% 90%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 65% 55%,
      rgba(255, 77, 109, 0.2) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 45% 40%,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 100%
    );
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── Typography ─────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Chakra Petch", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-xl {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.display-lg {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
}
.display-md {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--lime) 0%,
    var(--cyan) 60%,
    var(--coral) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--lime);
  box-shadow: var(--glow-lime);
}

/* ── Layout ─────────────────────────────────── */
.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

.section {
  padding-block: 100px;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 60px;
}

/* ── Navigation ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition:
    background 0.4s,
    border-color 0.4s;
}

.nav.scrolled {
  background: rgba(4, 4, 13, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.nav-logo span {
  color: var(--lime);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--lime);
  background: rgba(184, 255, 0, 0.06);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: var(--glow-lime);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: none;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  transform-origin: center;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(4, 4, 13, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer.open {
  display: flex;
}
.nav-drawer a {
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-drawer a:hover,
.nav-drawer a.active {
  color: var(--lime);
  background: rgba(184, 255, 0, 0.06);
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
}
.btn:hover::before {
  opacity: 1;
}

.btn-lime {
  background: var(--lime);
  color: #04040d;
  box-shadow: 0 4px 20px rgba(184, 255, 0, 0.3);
}
.btn-lime:hover {
  background: var(--lime-dim);
  box-shadow: var(--glow-lime);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--lime);
  border: 1px solid var(--lime);
}
.btn-outline:hover {
  background: rgba(184, 255, 0, 0.08);
  box-shadow: var(--glow-lime);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-cyan {
  background: var(--cyan);
  color: #04040d;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}
.btn-cyan:hover {
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.72rem;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 0.88rem;
}
.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  border-radius: var(--radius-sm);
}

/* ── Cards ───────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 255, 0, 0.03), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(184, 255, 0, 0.1);
}
.card:hover::before {
  opacity: 1;
}

/* ── Tags & Badges ───────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid;
}

.tag-lime {
  color: var(--lime);
  border-color: rgba(184, 255, 0, 0.3);
  background: rgba(184, 255, 0, 0.06);
}
.tag-cyan {
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.06);
}
.tag-coral {
  color: var(--coral);
  border-color: rgba(255, 77, 109, 0.3);
  background: rgba(255, 77, 109, 0.06);
}
.tag-gold {
  color: var(--gold);
  border-color: rgba(255, 214, 10, 0.3);
  background: rgba(255, 214, 10, 0.06);
}
.tag-muted {
  color: var(--text-muted);
  border-color: rgba(107, 107, 144, 0.3);
  background: rgba(107, 107, 144, 0.06);
}

/* ── Rating Stars ───────────────────────────── */
.rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.8rem;
}
.rating .star {
  color: var(--gold);
}
.rating .star.empty {
  color: var(--text-dim);
}
.rating-score {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  margin-left: 6px;
}

/* ── Score Circle ───────────────────────────── */
.score-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
}
.score-circle::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--bg-card);
  z-index: 0;
}
.score-circle span {
  position: relative;
  z-index: 1;
}
.score-lime {
  background: conic-gradient(
    var(--lime) var(--pct),
    var(--bg-card-2) var(--pct)
  );
  color: var(--lime);
}
.score-cyan {
  background: conic-gradient(
    var(--cyan) var(--pct),
    var(--bg-card-2) var(--pct)
  );
  color: var(--cyan);
}
.score-coral {
  background: conic-gradient(
    var(--coral) var(--pct),
    var(--bg-card-2) var(--pct)
  );
  color: var(--coral);
}

/* ── Progress Bar ───────────────────────────── */
.progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.progress-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--lime);
  transform-origin: left;
  animation: fillBar 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform: scaleX(0);
}
@keyframes fillBar {
  to {
    transform: scaleX(1);
  }
}

/* ── Glow Divider ───────────────────────────── */
.glow-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--lime),
    var(--cyan),
    transparent
  );
  margin-block: 16px;
  opacity: 0.3;
}

/* ── Grid Backgrounds ───────────────────────── */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 255, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 255, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── Hero Section ───────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 255, 0, 0.12), transparent 70%);
  top: -100px;
  right: -150px;
}
.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
  bottom: -80px;
  left: -100px;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 77, 109, 0.08),
    transparent 70%
  );
  top: 40%;
  left: 40%;
  animation-delay: -5s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(15px, -20px) scale(1.02);
  }
  66% {
    transform: translate(-10px, 10px) scale(0.98);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease forwards;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 77, 109, 0.1);
  border: 1px solid rgba(255, 77, 109, 0.3);
  border-radius: 100px;
  padding: 5px 12px;
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--coral);
  text-transform: uppercase;
}
.live-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-title {
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}

.hero-stat-item {
}
.hero-stat-num {
  font-family: "Chakra Petch", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}
.hero-stat-num span {
  color: var(--lime);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  z-index: 1;
  pointer-events: none;
  animation: fadeUp 0.8s 0.3s ease both;
}

/* ── Scroll Indicator ───────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s 0.6s ease both;
}
.scroll-hint span {
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-arrow {
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(184, 255, 0, 0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--lime);
  border-radius: 2px;
  animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
  0% {
    top: 6px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}

/* ── Platform Cards ─────────────────────────── */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.platform-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.platform-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--bg-card-2);
}

.platform-info {
  flex: 1;
}
.platform-name {
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.platform-type {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.platform-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.platform-stat {
  background: var(--bg-card-2);
  padding: 12px 10px;
  text-align: center;
}
.platform-stat-val {
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lime);
}
.platform-stat-key {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.platform-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.platform-feature .check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(184, 255, 0, 0.1);
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  color: var(--lime);
  flex-shrink: 0;
}

/* ── Game Cards ─────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.game-card {
  padding: 0;
}

.game-thumb {
  aspect-ratio: 16/9;
  background: var(--bg-card-2);
  position: relative;
  overflow: hidden;
}

.game-thumb-bg {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 3rem;
  transition: transform 0.4s ease;
}
.game-card:hover .game-thumb-bg {
  transform: scale(1.08);
}

.game-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 60%);
}

.game-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bg-void);
  background: var(--lime);
  padding: 3px 8px;
  border-radius: 4px;
}

.game-platform-tag {
  position: absolute;
  top: 12px;
  right: 12px;
}

.game-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.game-title {
  font-family: "Chakra Petch", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.game-genre {
  color: var(--cyan);
  font-weight: 500;
}

.game-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ── Trending Section ───────────────────────── */
.trending-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 900px) {
  .trending-grid {
    grid-template-columns: 1fr;
  }
}

.trending-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.trending-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 77, 109, 0.1);
  border: 1px solid rgba(255, 77, 109, 0.25);
  border-radius: 4px;
  padding: 4px 10px;
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.trend-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}
.trend-up {
  color: var(--lime);
}
.trend-down {
  color: var(--coral);
}

/* ── Challenge Cards ────────────────────────── */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.challenge-card {
  padding: 28px;
}
.challenge-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-void));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.challenge-title {
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.challenge-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.challenge-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.challenge-participants {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.challenge-participants strong {
  color: var(--text-primary);
  font-family: "Chakra Petch", sans-serif;
}

/* ── Filter Bar ─────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--lime);
  border-color: rgba(184, 255, 0, 0.35);
  background: rgba(184, 255, 0, 0.06);
}

/* ── Review Cards ───────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.review-card {
  padding: 28px;
}
.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.reviewer-name {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
}
.reviewer-role {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.review-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-platform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
}

/* ── Contact Section ────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

.contact-item {
  display: flex;
  gap: 16px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(184, 255, 0, 0.06);
  border: 1px solid rgba(184, 255, 0, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--lime);
}
.contact-item-label {
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item-val {
  font-size: 0.9rem;
}

/* ── Form ───────────────────────────────────── */
.form-card {
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group:last-of-type {
  margin-bottom: 0;
}

.form-label {
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-textarea,
.form-select {
  background: var(--bg-void);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(184, 255, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(184, 255, 0, 0.06);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b90' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: none;
}
.form-select option {
  background: var(--bg-deep);
}

/* ── Footer ─────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding-block: 64px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
}
.footer-brand .nav-logo {
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-col-title {
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-legal a:hover {
  color: var(--text-primary);
}

/* ── Animations ─────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Ticker ─────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: rgba(184, 255, 0, 0.04);
  border-block: 1px solid rgba(184, 255, 0, 0.1);
  padding-block: 12px;
  position: relative;
  z-index: 1;
}
.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.ticker-item .dot {
  color: var(--lime);
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Page Hero (inner pages) ────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(184, 255, 0, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── Utility ─────────────────────────────────── */
.text-center {
  text-align: center;
}
.text-lime {
  color: var(--lime);
}
.text-cyan {
  color: var(--cyan);
}
.text-coral {
  color: var(--coral);
}
.text-muted {
  color: var(--text-muted);
}

.mt-8 {
  margin-top: 8px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}

.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gap-8 {
  gap: 8px;
}
.gap-12 {
  gap: 12px;
}
.gap-16 {
  gap: 16px;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-links {
    display: none;
  }
  .nav-cta .btn:not(.burger) {
    display: none;
  }
  .burger {
    display: flex;
  }

  .section {
    padding-block: 64px;
  }
  .section-header {
    margin-bottom: 40px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    gap: 32px;
  }
  .hero-visual {
    display: none;
  }
  .scroll-hint {
    display: none;
  }

  .platform-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }

  body
    > section.section
    > div
    > div:nth-child(2)
    > div.card.game-row.reveal.visible
    > div
    > div:nth-child(2) {
    grid-template-columns: none !important;
  }
}

/* ── Privacy page ───────────────────────────── */
.prose {
  max-width: 820px;
  margin-inline: auto;
}
.prose h2 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.prose h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.prose p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.prose ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.prose ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.prose ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}

/* ── Toast ──────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--bg-card-2);
  border: 1px solid rgba(184, 255, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  z-index: 9000;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-icon {
  font-size: 1.2rem;
}
.toast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  margin-left: 8px;
}
