:root {
  --bg: #070906;
  --surface: rgba(248, 250, 244, 0.045);
  --border: rgba(238, 244, 229, 0.11);
  --text: #f7f9f3;
  --muted: #a5ad9e;
  --accent-1: #b7ff3c;
  --accent-2: #efffc5;
  --grad: linear-gradient(105deg, var(--accent-1) 0%, var(--accent-2) 100%);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 64px;
  --radius: 20px;
  --font: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(183, 255, 60, 0.72) #070906;
}

::-webkit-scrollbar { width: 11px; height: 11px; }

::-webkit-scrollbar-track {
  background: #070906;
  border-left: 1px solid rgba(238, 244, 229, 0.06);
}

::-webkit-scrollbar-thumb {
  min-height: 64px;
  border: 3px solid #070906;
  border-radius: 999px;
  background: linear-gradient(180deg, #efffc5 0%, #b7ff3c 48%, #78ad20 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 14px rgba(183, 255, 60, 0.16);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f7ffd9 0%, #c5ff61 52%, #8ac92a 100%);
}

::-webkit-scrollbar-thumb:active {
  background: #b7ff3c;
}

::-webkit-scrollbar-corner { background: #070906; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (hover: hover) and (pointer: fine) {
  html.custom-cursor-enabled,
  html.custom-cursor-enabled body,
  html.custom-cursor-enabled a,
  html.custom-cursor-enabled button,
  html.custom-cursor-enabled label {
    cursor: none;
  }

  html.custom-cursor-enabled input,
  html.custom-cursor-enabled textarea,
  html.custom-cursor-enabled select,
  html.custom-cursor-enabled [contenteditable="true"] {
    cursor: text;
  }
}

.astral-cursor-dot,
.astral-cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  will-change: transform, width, height, opacity;
}

.astral-cursor-dot {
  width: 10px;
  height: 10px;
  background: #efffc5;
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  filter: drop-shadow(0 0 5px #b7ff3c) drop-shadow(0 0 10px rgba(183, 255, 60, 0.55));
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s ease, opacity 0.2s ease;
}

.astral-cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(183, 255, 60, 0.52);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 255, 60, 0.045), transparent 66%);
  box-shadow: 0 0 18px rgba(183, 255, 60, 0.07), inset 0 0 10px rgba(183, 255, 60, 0.045);
  transition: width 0.38s var(--ease-out), height 0.38s var(--ease-out), border-color 0.3s ease, background 0.3s ease, opacity 0.2s ease;
}

.astral-cursor-ring::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-top: 1px solid rgba(239, 255, 197, 0.9);
  border-right: 1px solid transparent;
  border-bottom: 1px solid rgba(183, 255, 60, 0.3);
  border-left: 1px solid transparent;
  border-radius: 50%;
  opacity: 0;
  transform: rotate(35deg);
  transition: opacity 0.3s ease;
}

.astral-cursor-dot.is-visible,
.astral-cursor-ring.is-visible { opacity: 1; }

.astral-cursor-dot.is-interactive {
  width: 13px;
  height: 13px;
  background: #fff;
}

.astral-cursor-ring.is-interactive {
  width: 48px;
  height: 48px;
  border-color: rgba(183, 255, 60, 0.82);
  background: radial-gradient(circle, rgba(183, 255, 60, 0.1), transparent 68%);
}

.astral-cursor-ring.is-interactive::before {
  opacity: 1;
  animation: astralCursorOrbit 2.8s linear infinite;
}

.astral-cursor-dot.is-pressed { width: 7px; height: 7px; }

.astral-cursor-ring.is-pressed {
  width: 27px;
  height: 27px;
  border-color: #efffc5;
  background: rgba(183, 255, 60, 0.12);
}

.astral-cursor-dot.is-hidden,
.astral-cursor-ring.is-hidden { opacity: 0; }

@keyframes astralCursorOrbit {
  to { transform: rotate(395deg); }
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--accent-1);
  outline-offset: 4px;
}

::selection { background: rgba(183, 255, 60, 0.34); color: #101606; }

.nav-wrap {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.nav {
  width: min(1180px, 100%);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 12px 0 24px;
  border-radius: 999px;
  background: rgba(9, 12, 7, 0.72);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.34);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  display: block;
  width: 142px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(183, 255, 60, 0.08));
  transition: opacity 0.25s ease, transform 0.35s var(--ease-out);
}

.brand:hover .brand-logo { opacity: 0.86; transform: translateY(-1px); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  display: block;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s, background 0.25s, transform 0.25s var(--ease-out);
}

.nav-link:hover { color: var(--text); transform: translateY(-1px); }

.nav-link.active {
  color: var(--text);
  background: rgba(183, 255, 60, 0.1);
  box-shadow: inset 0 0 0 1px rgba(183, 255, 60, 0.23);
}

.nav-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.nav-cta {
  padding: 11px 24px;
  border-radius: 999px;
  background: var(--accent-1);
  color: #0b1104;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #c7ff67;
  box-shadow: 0 10px 30px rgba(183, 255, 60, 0.2);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}


.bg-wrap {
  position: absolute;
  inset: -28%;
  transform: rotate(-11deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.bg-row { overflow: hidden; }

.bg-track {
  display: flex;
  width: max-content;
  animation: marquee var(--dur, 90s) linear infinite;
}

.bg-row.reverse .bg-track { animation-direction: reverse; }

.bg-half {
  display: flex;
  gap: 26px;
  padding-right: 26px;
}

.bg-tile {
  height: 200px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.76;
  filter: saturate(0.74) contrast(1.03) brightness(0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.bg-tile.wide { width: 356px; }
.bg-tile.square { width: 200px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


.bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(110% 100% at 18% 35%, rgba(7, 9, 6, 0.95) 0%, rgba(7, 9, 6, 0.7) 45%, rgba(7, 9, 6, 0.32) 100%),
    linear-gradient(180deg, rgba(7, 9, 6, 0.84) 0%, rgba(7, 9, 6, 0.27) 32%, rgba(7, 9, 6, 0.48) 68%, var(--bg) 100%);
}

.bg-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(50% 42% at 12% 78%, rgba(183, 255, 60, 0.13) 0%, transparent 100%),
    radial-gradient(42% 36% at 85% 15%, rgba(239, 255, 197, 0.07) 0%, transparent 100%);
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 90px) 32px 90px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 34px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero-title {
  font-size: clamp(3.4rem, 9.5vw, 7.6rem);
  font-weight: 900;
  font-stretch: 112%;
  line-height: 0.94;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.hero-title .line { display: block; }

.line-grad {
  background: linear-gradient(95deg, #b7ff3c 0%, #e4ff9b 54%, #f7ffd9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 32px rgba(183, 255, 60, 0.2));
}

.hero-sub {
  max-width: 560px;
  margin-top: 30px;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--muted);
}

.hl {
  color: var(--text);
  font-weight: 700;
  border-bottom: 2px solid;
  border-image: var(--grad) 1;
  padding-bottom: 2px;
}


.stats {
  display: flex;
  gap: 18px;
  margin-top: 58px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1 1 200px;
  max-width: 330px;
  padding: 28px 30px 24px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: transform 0.55s var(--ease-out), border-color 0.4s ease, box-shadow 0.55s var(--ease-out);
}

.stat-card:hover {
  transform: translateY(-7px) scale(1.012);
  border-color: rgba(183, 255, 60, 0.36);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(183, 255, 60, 0.08);
}

.stat-card-wide { flex-grow: 1.6; }

.stat-value {
  font-size: clamp(1.7rem, 2.9vw, 2.6rem);
  font-weight: 900;
  font-stretch: 102%;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}

.stat-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.stat-label svg {
  width: 15px;
  height: 15px;
  opacity: 0.8;
}


.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-hint-text {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.scroll-hint-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--muted), transparent);
  overflow: hidden;
  position: relative;
}

.scroll-hint-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--accent-2));
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  60%, 100% { top: 100%; }
}


.reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

.section {
  position: relative;
  padding: 110px 32px;
  scroll-margin-top: 40px;
  overflow: hidden;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.section-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(46% 38% at 12% 18%, rgba(183, 255, 60, 0.075) 0%, transparent 100%);
}

.section-glow.glow-right {
  background: radial-gradient(46% 38% at 88% 22%, rgba(239, 255, 197, 0.055) 0%, transparent 100%);
}

.section-inner {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  font-stretch: 112%;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.grad-text {
  background: linear-gradient(95deg, #b7ff3c 0%, #efffc5 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-sub {
  margin-top: 18px;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 34px 34px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.58s var(--ease-out), border-color 0.4s ease, box-shadow 0.58s var(--ease-out), background 0.4s ease;
}

.about-card:hover {
  transform: translateY(-8px) scale(1.008);
  border-color: rgba(183, 255, 60, 0.38);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.07) 0%, rgba(183, 255, 60, 0.025) 100%);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(183, 255, 60, 0.07);
}

.about-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(183, 255, 60, 0.16), rgba(239, 255, 197, 0.055));
  border: 1px solid rgba(183, 255, 60, 0.28);
  color: #dfff96;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  transition: transform 0.55s var(--ease-out), background 0.4s ease, box-shadow 0.5s ease;
}

.about-icon svg { width: 22px; height: 22px; }

.about-card:hover .about-icon {
  transform: translateY(-4px) rotate(5deg) scale(1.07);
  background: linear-gradient(135deg, rgba(183, 255, 60, 0.25), rgba(239, 255, 197, 0.09));
  box-shadow: 0 14px 36px rgba(183, 255, 60, 0.12);
}

.about-text h3 {
  font-size: 1.14rem;
  font-weight: 800;
  font-stretch: 106%;
  margin-bottom: 8px;
  transition: color 0.35s ease, transform 0.5s var(--ease-out);
}

.about-card:hover .about-text h3 { color: #e5ffad; transform: translateX(3px); }

.about-text p {
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--muted);
}

.games-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.game-card {
  display: block;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.58s var(--ease-out), border-color 0.4s ease, box-shadow 0.58s var(--ease-out);
}

a.game-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(183, 255, 60, 0.4);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.52), 0 0 44px rgba(183, 255, 60, 0.1);
}

.games-row .game-card.featured {
  max-width: 460px;
  flex-shrink: 0;
}

.game-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s var(--ease-out), filter 0.6s ease;
}

a.game-card:hover .game-thumb img { transform: scale(1.075); filter: saturate(1.08) contrast(1.03); }

.game-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 9, 6, 0.78) 100%);
}

.game-live-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(7, 9, 6, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #d9ffe6;
}

.game-live-tag .live-dot { width: 6px; height: 6px; }

.game-dev-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(7, 9, 6, 0.78);
  border: 1px solid rgba(183, 255, 60, 0.28);
  backdrop-filter: blur(10px);
  color: #e5ffad;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.game-card.upcoming .game-thumb img { filter: saturate(0.88) brightness(0.9); }
.game-card.upcoming:hover .game-thumb img { filter: saturate(1.05) brightness(1); }

.game-info { padding: 20px 24px 22px; }

.game-name {
  font-size: 1.12rem;
  font-weight: 800;
  font-stretch: 106%;
  margin-bottom: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.game-stat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}

.game-stat svg {
  width: 14px;
  height: 14px;
  opacity: 0.75;
}

.game-stat strong {
  color: var(--text);
  font-weight: 800;
}


.mystery-card {
  width: 100%;
  max-width: 330px;
  border-radius: var(--radius);
  border: 1.5px dashed rgba(183, 255, 60, 0.25);
  background:
    radial-gradient(70% 60% at 50% 32%, rgba(183, 255, 60, 0.06) 0%, transparent 100%),
    rgba(255, 255, 255, 0.015);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 28px;
  text-align: center;
  transition: transform 0.55s var(--ease-out), border-color 0.4s ease, background 0.4s ease, box-shadow 0.55s var(--ease-out);
}

.mystery-card:hover {
  transform: translateY(-7px);
  border-color: rgba(183, 255, 60, 0.5);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.mystery-mark {
  font-size: 3.6rem;
  font-weight: 900;
  font-stretch: 112%;
  line-height: 1;
  background: linear-gradient(135deg, rgba(183, 255, 60, 0.85), rgba(239, 255, 197, 0.58));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: floaty 3.4s ease-in-out infinite;
}

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

.mystery-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  color: var(--muted);
}

.mystery-sub {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(154, 163, 184, 0.6);
}

.games-row .mystery-card { align-self: stretch; }


.games-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.btn-grad {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  background: var(--grad);
  color: #070812;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 34px rgba(183, 255, 60, 0.18);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.btn-grad:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(183, 255, 60, 0.28);
}

.btn-grad svg { width: 17px; height: 17px; }

.page-head-section {
  min-height: 100svh;
  padding-top: 170px;
}

.games-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(400px, 100%);
  padding: 0 20px;
  height: 52px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.search-box:focus-within {
  border-color: rgba(183, 255, 60, 0.48);
  box-shadow: 0 0 0 3px rgba(183, 255, 60, 0.1);
}

.search-box svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.search-box input {
  flex: 1;
  height: 100%;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
}

.search-box input::placeholder { color: rgba(154, 163, 184, 0.6); }

.sort-chips { display: flex; gap: 10px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.chip svg { width: 15px; height: 15px; }

.chip:hover { color: var(--text); }

.chip.active {
  color: var(--text);
  background: rgba(183, 255, 60, 0.11);
  border-color: rgba(183, 255, 60, 0.38);
}

.all-games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.all-games-grid .game-card,
.all-games-grid .mystery-card { max-width: none; }

.all-games-grid .mystery-card { min-height: 100%; }

.no-results {
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  padding: 40px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

.contact-heading {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 900;
  font-stretch: 110%;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-blurb {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 30px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.55s var(--ease-out), border-color 0.4s ease, box-shadow 0.55s var(--ease-out);
}

.contact-card + .contact-card { margin-top: 18px; }

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 255, 60, 0.36);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.4);
}

.contact-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(183, 255, 60, 0.15), rgba(239, 255, 197, 0.05));
  border: 1px solid rgba(183, 255, 60, 0.26);
  color: #dfff96;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.5s var(--ease-out), background 0.35s ease;
}

.contact-card:hover .contact-icon { transform: rotate(-4deg) scale(1.06); }

.contact-icon svg { width: 24px; height: 24px; }

.contact-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.contact-card-label {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.contact-card-value {
  font-size: 1.08rem;
  font-weight: 800;
  font-stretch: 106%;
}

.contact-arrow {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform 0.3s, color 0.3s;
}

.contact-card-link:hover .contact-arrow {
  transform: translate(3px, -3px);
  color: var(--accent-2);
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.copy-btn svg { width: 14px; height: 14px; }

.copy-btn:hover {
  color: var(--text);
  border-color: rgba(183, 255, 60, 0.4);
}

.copy-btn.copied {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(74, 222, 128, 0.08);
}


.minigame-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 30px 30px;
  border-radius: var(--radius);
  background:
    radial-gradient(80% 55% at 50% 0%, rgba(183, 255, 60, 0.075) 0%, transparent 100%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.55s var(--ease-out), border-color 0.4s ease, box-shadow 0.55s var(--ease-out);
}

.minigame-card:hover {
  transform: translateY(-5px);
  border-color: rgba(183, 255, 60, 0.3);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.35);
}

.minigame-head {
  text-align: center;
  margin-bottom: 10px;
}

.minigame-title {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  font-stretch: 112%;
  letter-spacing: 0.06em;
}

.minigame-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.reactor-card { justify-content: flex-start; min-height: 470px; }

.reactor-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1.42;
  display: grid;
  place-items: center;
  margin: 18px auto 20px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(183, 255, 60, 0.16);
  background:
    radial-gradient(180px circle at var(--glow-x) var(--glow-y), rgba(183, 255, 60, 0.11), transparent 72%),
    radial-gradient(circle at center, rgba(183, 255, 60, 0.08), transparent 36%),
    #080b07;
  box-shadow: inset 0 0 55px rgba(0, 0, 0, 0.72), 0 22px 48px rgba(0, 0, 0, 0.26);
  transform: perspective(850px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease-out), border-color 0.45s ease, box-shadow 0.45s ease;
}

.reactor-stage::before {
  content: "";
  position: absolute;
  inset: -45%;
  background-image:
    linear-gradient(rgba(183, 255, 60, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 255, 60, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: rotate(10deg) translateZ(-30px);
  -webkit-mask-image: radial-gradient(circle, #000 10%, transparent 68%);
  mask-image: radial-gradient(circle, #000 10%, transparent 68%);
}

.reactor-stars,
.reactor-stars i { position: absolute; inset: 0; pointer-events: none; }

.reactor-stars i {
  inset: auto;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: #efffc5;
  box-shadow: 0 0 8px rgba(183, 255, 60, 0.85);
  animation: reactorTwinkle 3.6s var(--delay) ease-in-out infinite;
}

.reactor-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(183, 255, 60, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.reactor-orbit i {
  position: absolute;
  left: 50%;
  top: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #efffc5;
  box-shadow: 0 0 12px #b7ff3c, 0 0 26px rgba(183, 255, 60, 0.7);
}

.orbit-one {
  width: 184px;
  height: 84px;
  margin: -42px 0 0 -92px;
  transform: rotate(-12deg);
  animation: reactorOrbitOne 8s linear infinite;
}

.orbit-two {
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  transform: rotate(64deg) scaleY(0.48);
  animation: reactorOrbitTwo 10s linear infinite reverse;
}

.orbit-three {
  width: 228px;
  height: 112px;
  margin: -56px 0 0 -114px;
  transform: rotate(18deg);
  border-color: rgba(239, 255, 197, 0.12);
  animation: reactorOrbitThree 13s linear infinite;
}

.reactor-core {
  position: relative;
  z-index: 4;
  width: 102px;
  height: 102px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 50%;
  border: 1px solid rgba(239, 255, 197, 0.52);
  background: radial-gradient(circle at 38% 32%, #f7ffd9 0%, #b7ff3c 28%, #587d17 62%, #162007 100%);
  color: #101606;
  font-family: var(--font);
  cursor: pointer;
  box-shadow: 0 0 18px rgba(183, 255, 60, 0.42), 0 0 58px rgba(183, 255, 60, 0.2), inset -9px -12px 20px rgba(0, 0, 0, 0.32);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}

.reactor-core:hover { transform: scale(1.07); box-shadow: 0 0 28px rgba(183, 255, 60, 0.62), 0 0 76px rgba(183, 255, 60, 0.28); }
.reactor-core:active { transform: scale(0.96); }

.reactor-core strong { font-size: 1.25rem; font-weight: 900; font-variant-numeric: tabular-nums; }
.reactor-core small { font-size: 0.53rem; font-weight: 900; letter-spacing: 0.18em; }

.reactor-core-glow {
  position: absolute;
  inset: -16px;
  z-index: -1;
  border: 1px solid rgba(183, 255, 60, 0.28);
  border-radius: inherit;
  animation: reactorBreathe 2.4s ease-in-out infinite;
}

.reactor-readout { width: min(100%, 390px); }

.reactor-meter {
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.reactor-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--grad);
  box-shadow: 0 0 16px rgba(183, 255, 60, 0.58);
  transition: width 0.62s var(--ease-out);
}

.reactor-status {
  min-height: 1.2em;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  transition: color 0.3s ease;
}

.reactor-particle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 5px;
  height: 5px;
  margin: -2px;
  border-radius: 50%;
  background: #efffc5;
  box-shadow: 0 0 12px #b7ff3c;
  pointer-events: none;
  animation: reactorBurst 0.9s var(--ease-out) forwards;
}

.reactor-pulse .reactor-core-glow { animation: reactorShockwave 0.85s var(--ease-out); }

.reactor-stage.overdrive {
  border-color: rgba(183, 255, 60, 0.5);
  box-shadow: inset 0 0 72px rgba(183, 255, 60, 0.12), 0 0 42px rgba(183, 255, 60, 0.14);
  animation: reactorOverdrive 0.75s ease-in-out infinite alternate;
}

.reactor-stage.overdrive .reactor-core { box-shadow: 0 0 44px rgba(239, 255, 197, 0.8), 0 0 110px rgba(183, 255, 60, 0.48); }
.reactor-stage.overdrive + .reactor-readout .reactor-status { color: #dfff96; }

@keyframes reactorTwinkle { 0%, 100% { opacity: 0.18; transform: scale(0.65); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes reactorBreathe { 0%, 100% { transform: scale(0.92); opacity: 0.34; } 50% { transform: scale(1.12); opacity: 0.75; } }
@keyframes reactorOrbitOne { to { transform: rotate(348deg); } }
@keyframes reactorOrbitTwo { to { transform: rotate(424deg) scaleY(0.48); } }
@keyframes reactorOrbitThree { to { transform: rotate(378deg); } }
@keyframes reactorBurst { to { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); } }
@keyframes reactorShockwave { from { transform: scale(0.7); opacity: 1; } to { transform: scale(1.8); opacity: 0; } }
@keyframes reactorOverdrive { from { filter: brightness(1); } to { filter: brightness(1.16); } }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  justify-content: start;
  gap: 24px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.team-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: left;
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.065) 0%, rgba(255, 255, 255, 0.018) 72%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.58s var(--ease-out), border-color 0.4s ease, box-shadow 0.58s var(--ease-out);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 255, 60, 0.36);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(183, 255, 60, 0.07);
}

.team-visual {
  position: relative;
  aspect-ratio: 16 / 9.8;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  isolation: isolate;
  background: #090b08;
}

.team-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 9, 6, 0.02) 45%, rgba(7, 9, 6, 0.72) 100%),
    linear-gradient(90deg, rgba(7, 9, 6, 0.18), transparent 38%, rgba(7, 9, 6, 0.08));
}

.team-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.75s var(--ease-out), filter 0.55s ease;
}

.team-visual-simple .team-photo { object-position: center 43%; }
.team-visual-ojao .team-photo { object-position: center 28%; }
.team-visual-joca .team-photo { object-position: center 48%; }
.team-visual-naony .team-photo { object-position: center 59%; }

.team-rank-badge {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid rgba(213, 255, 133, 0.34);
  border-radius: 10px;
  background: rgba(119, 174, 30, 0.86);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32), inset 0 1px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  color: #f6ffe4;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1;
  transition: transform 0.4s var(--ease-out), background 0.35s ease, border-color 0.35s ease;
}

.team-rank-badge > span {
  color: #e8ffaf;
  font-size: 0.75rem;
}

.team-rank-coowner {
  background: rgba(70, 101, 24, 0.9);
  border-color: rgba(183, 255, 60, 0.3);
}

.team-rank-developer {
  background: rgba(46, 80, 30, 0.91);
  border-color: rgba(183, 255, 60, 0.28);
}

.team-card:hover .team-rank-badge {
  transform: translateY(-2px);
  background: rgba(134, 196, 32, 0.94);
  border-color: rgba(224, 255, 164, 0.5);
}

.team-card:hover .team-photo {
  transform: scale(1.045);
  filter: contrast(1.04) saturate(1.03);
}

.team-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 27px 28px 29px;
}

.team-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.team-name {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 900;
  font-stretch: 108%;
  line-height: 1;
  letter-spacing: -0.025em;
}

.team-profile-link,
.team-owner-mark {
  flex-shrink: 0;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.team-profile-link { transition: color 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease-out); }

.team-profile-link:hover {
  color: #e5ffad;
  border-color: rgba(183, 255, 60, 0.35);
  transform: translateY(-2px);
}

.team-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 17px;
}

.role-chip {
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.team-desc {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
}

.team-discord {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding: 15px 15px 15px 17px;
  border: 1px solid rgba(183, 255, 60, 0.16);
  border-radius: 16px;
  background: linear-gradient(100deg, rgba(183, 255, 60, 0.075), rgba(255, 255, 255, 0.02));
  transition: border-color 0.35s ease, background 0.35s ease;
}

.team-card:hover .team-discord {
  border-color: rgba(183, 255, 60, 0.3);
  background: linear-gradient(100deg, rgba(183, 255, 60, 0.105), rgba(255, 255, 255, 0.025));
}

.team-discord-identity { min-width: 0; }

.team-discord-identity span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.team-discord-identity strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-copy-button {
  flex-shrink: 0;
  min-width: 66px;
  padding: 10px 13px;
  border: 1px solid rgba(183, 255, 60, 0.25);
  border-radius: 999px;
  background: rgba(183, 255, 60, 0.09);
  color: #dfff96;
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.team-copy-button:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 255, 60, 0.48);
  background: rgba(183, 255, 60, 0.15);
  color: #f7ffd9;
}

.team-copy-button.copied {
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(74, 222, 128, 0.1);
  color: #8bffb0;
}

.interactive-surface {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  isolation: isolate;
}

.interactive-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(330px circle at var(--mouse-x) var(--mouse-y), rgba(183, 255, 60, 0.1), transparent 58%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.interactive-surface:hover::before { opacity: 1; }
.interactive-surface > * { position: relative; z-index: 1; }

.about-card::after,
.stat-card::after,
.team-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  z-index: 2;
  height: 2px;
  border-radius: 999px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.58s var(--ease-out), opacity 0.35s ease;
}

.about-card:hover::after,
.stat-card:hover::after,
.team-card:hover::after,
.contact-card:hover::after {
  transform: scaleX(1);
  opacity: 0.9;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 34px 32px;
  background: #04050861;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-logo { width: 126px; height: auto; opacity: 0.9; }

.footer-copy,
.footer-note {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.footer-note { color: rgba(154, 163, 184, 0.5); }

.reveal-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
}

.reveal-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .bg-tile { height: 150px; }
  .bg-tile.wide { width: 267px; }
  .bg-tile.square { width: 150px; }
  .bg-wrap { gap: 20px; }
  .bg-half { gap: 20px; padding-right: 20px; }
}

@media (max-width: 1000px) {
  .games-row { flex-direction: column; }
  .games-row .game-card.featured { max-width: 460px; order: -1; }
  .games-row .mystery-card { max-width: 460px; padding: 34px 28px; align-self: center; }
  .all-games-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 780px; }
}

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

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 22px; }
  .all-games-grid { grid-template-columns: 1fr; }
  .footer-inner { justify-content: center; text-align: center; }
  .contact-card { flex-wrap: wrap; }
  .team-grid { grid-template-columns: minmax(0, 1fr); max-width: 480px; }
}

@media (max-width: 600px) {
  .nav-wrap { top: 12px; padding: 0 12px; }
  .nav { gap: 10px; padding-left: 16px; }
  .brand-logo { width: 108px; }
  .nav-cta { padding: 10px 15px; font-size: 0.7rem; }
  .hero-content { padding: calc(var(--nav-h) + 70px) 22px 80px; }
  .stats { margin-top: 42px; }
  .stat-card { max-width: none; flex-basis: 100%; padding: 22px 24px 20px; }
  .hero-sub { font-size: 1rem; }
  .scroll-hint { display: none; }
  .about-card { padding: 26px 24px; }
  .page-head-section { padding-top: 130px; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-track { animation: none; }
  .live-dot { animation: none; }
  .scroll-hint-line::after { animation: none; }
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .mystery-mark { animation: none; }
  .reveal-scroll {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .reactor-stars i,
  .reactor-orbit,
  .reactor-core-glow,
  .reactor-stage.overdrive,
  .reactor-particle { animation: none; }
  .reactor-stage { transform: none; transition: none; }
  .interactive-surface::before,
  .about-card::after,
  .stat-card::after,
  .team-card::after,
  .contact-card::after { transition: none; }
}
