@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/lexend/v24/wlptgwQFAVdoq2_F9zlEdvY.woff2') format('woff2');
}
:root {
  --bg: #1e1e2e;
  --bg-2: #252540;
  --bg-3: #232336;
  --bg-4: #151525;
  --accent: #ee1515;
  --accent-grad: #cc0000;
  --accent-light: #f87171;
  --accent-dark: #991b1b;
  --warm: #f59e0b;
  --gray-100: #f3f4f6;
  --gray-400: #99a1af;
  --gray-500: #6a7282;
  --gray-600: #4a5565;
  --grad-text: linear-gradient(135deg, #f87171, #f59e0b);
  --grad-red: linear-gradient(135deg, #ee1515, #cc0000);
  --red-gradient: var(--grad-red);
  --font: 'Lexend', system-ui, -apple-system, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
}
img, svg, video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul { list-style: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-accent { color: var(--accent-light); }
.text-warm { color: var(--warm); }
.text-white { color: #fff; }
.text-accent-text { color: var(--accent-light); }
.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient-red {
  background: var(--grad-red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(30, 30, 46, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  transition: all .3s ease;
}
.navbar.scrolled {
  background: rgba(21, 21, 37, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: .6rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}
.nav-inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .nav-inner { justify-content: center; }
}
.nav-brand {
  display: block;
  line-height: 0;
  margin-right: .5rem;
  transition: transform .3s ease;
}
.nav-brand:hover {
  transform: scale(1.04);
}
.nav-brand-img {
  display: block;
  height: 2.75rem;
  width: auto;
  border-radius: .6rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
  }
}
.nav-links a {
  padding: .5rem 1rem;
  border-radius: .5rem;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  transition: all .3s ease;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
}
.nav-divider {
  width: 1px;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.35);
  margin: 0 .5rem;
  flex-shrink: 0;
}
.nav-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  border-radius: .5rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: none;
  transition: all .3s ease;
}
.nav-discord:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.nav-discord svg {
  width: 1.25rem;
  height: 1.25rem;
}
.btn-play-nav {
  display: inline-block;
  background: var(--red-gradient, linear-gradient(135deg, #ee1515, #cc0000)) !important;
  box-shadow: 0 2px 12px rgba(238, 21, 21, 0.4);
  font-weight: 700;
  margin-left: .75rem;
  padding: .5rem 1.25rem !important;
  border-radius: .5rem;
}
.btn-play-nav:hover {
  background: var(--red-gradient, linear-gradient(135deg, #ee1515, #cc0000)) !important;
  transform: scale(1.05);
}
.countdown-nav {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-left: .75rem;
  padding: .45rem .9rem;
  border-radius: .5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.countdown-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}
.nb-sep {
  opacity: .6;
}
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: .5rem;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.15); }
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-links.open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: rgba(30, 30, 46, 0.98);
  z-index: 60;
}
.nav-links.open ~ .nav-toggle {
  position: relative;
  z-index: 70;
}
.nav-links.open .nav-divider { width: 1.5rem; height: 1px; }
.nav-links.open .btn-play-nav { margin-left: 0; }
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  height: calc(100vh + 8rem);
  background-color: #3694f0;
  min-height: 42rem;
}
.hero-sky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/sky.png');
  background-size: cover;
  background-position: center;
}
.hero-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: 42%;
  perspective: 600px;
}
.hero-grass {
  width: 100%;
  height: 100%;
  background-image: url('images/grass.png');
  background-repeat: repeat;
  background-size: 128px 128px;
  transform: scale(3) rotateX(60deg);
  transform-origin: bottom;
  animation: water-translate 20s linear infinite;
  image-rendering: pixelated;
}
@keyframes water-translate {
  0% { background-position: 0 0; }
  100% { background-position: 19rem 19rem; }
}
.hidden-md { display: none; }
@media (min-width: 768px) { .hidden-md { display: block; } }
.hero-center {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 4;
  filter: drop-shadow(0 0 10px rgba(6, 70, 120, 0.4)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: hero-in 1s ease forwards;
}
@keyframes hero-in {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-logo {
  width: 280px;
  height: auto;
  max-width: 94vw;
  cursor: pointer;
  transition: transform .3s ease;
}
.hero-logo:hover {
  transform: scale(1.05);
}
@media (min-width: 640px) { .hero-logo { width: 370px; } }
@media (min-width: 768px) { .hero-logo { width: 450px; } }
@media (min-width: 1024px) { .hero-logo { width: 530px; } }
.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red-gradient, linear-gradient(135deg, #ee1515, #cc0000));
  color: #fff;
  font-weight: 700;
  border-radius: 1rem;
  transition: transform .3s ease;
}
.btn-play:hover { transform: scale(1.05); }
.hero-content .btn-play {
  margin-top: 2.5rem;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  box-shadow: 0 4px 20px rgba(238, 21, 21, 0.5);
}
.btn-watch {
  gap: .5rem;
}
.btn-watch svg { flex-shrink: 0; }
.hidden {
  display: none !important;
}
.countdown {
  display: flex;
  gap: .75rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .countdown { gap: 1rem; } }
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 66px;
  padding: .75rem .5rem;
  background: rgba(21, 30, 37, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
@media (min-width: 640px) { .countdown-item { min-width: 84px; padding: .9rem .75rem; } }
.cd-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
@media (min-width: 640px) { .cd-num { font-size: 2.2rem; } }
.cd-label {
  margin-top: .35rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.hero-scroll {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 10;
  animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
  pointer-events: none;
}
.hero-scroll span {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .025em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.scroll-mouse {
  width: 2rem;
  height: 3rem;
  border: 3px solid #fff;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding: .375rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.scroll-wheel {
  width: .5rem;
  height: .875rem;
  background: #fff;
  border-radius: 9999px;
  animation: bounce 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.popup-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 100;
  padding: 1rem;
  opacity: 0;
  transition: opacity .2s ease;
}
.popup-overlay.open {
  display: flex;
  opacity: 1;
}
.popup-overlay img {
  max-width: min(58vw, 26rem);
  max-height: 80vh;
  border-radius: 1rem;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.popup-quote {
  max-width: min(85vw, 30rem);
  text-align: center;
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  background: #232335;
  border: 3px solid rgba(245, 158, 11, 0.5);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.popup-quote--member {
  border-color: rgba(156, 163, 175, 0.6);
  background: #1c1c2b;
}
.popup-egg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: #232335;
  border: 3px solid rgba(245, 158, 11, 0.5);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.popup-egg p {
  margin: 0;
  text-align: center;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
}
.popup-egg img {
  width: min(13rem, 55vw);
  height: auto;
  image-rendering: pixelated;
}
.popup-player {
  background: #232335;
  border: 3px solid rgba(245, 158, 11, 0.5);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.popup-player audio {
  width: 100%;
  max-width: 22rem;
  display: block;
  outline: none;
}
.divider {
  position: relative;
  margin-top: -7.5rem;
  z-index: 5;
}
.divider-wave {
  width: 100%;
  display: block;
  height: 120px;
}
.divider-bar {
  height: 0.5rem;
  background: var(--bg);
  margin-top: -1px;
}
.section {
  position: relative;
  padding: 5rem 1rem;
}
@media (min-width: 768px) { .section { padding: 7rem 1rem; } }
.section-bg-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, #1e1e2e, #232336, #1e1e2e);
  pointer-events: none;
}
.section-bg-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, #1e1e2e, #252540, #1e1e2e);
  pointer-events: none;
}
.container,
.container-cta,
.container-steps,
.container-faq {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
}
.container-wide {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .section-head { margin-bottom: 3rem; } }
.eyebrow {
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #fff;
}
@media (min-width: 768px) { .title { font-size: 3rem; } }
.subtitle {
  color: var(--gray-400);
  max-width: 36rem;
  margin: 1rem auto 0;
  font-size: 1rem;
  line-height: 1.625;
}
.trailer {
  margin-bottom: 4rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.members-hero {
  height: 74vh;
  min-height: 34rem;
}
.members-hero .hero-ground {
  height: 28%;
}
.member-coming-soon {
  margin: 3.5rem auto 0;
  text-align: center;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-style: italic;
  color: #9ca3af;
}
.members-hero-center {
  top: 46%;
}
.members-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  animation: hero-in 1s ease forwards;
}
.members-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.members-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}
.members-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
@media (min-width: 768px) {
  .members-title { font-size: 4.5rem; }
}
.members-title .text-gradient-red {
  background: none;
  -webkit-text-fill-color: initial;
  color: #ff1717;
}
.members-sub {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  line-height: 1.625;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: .55rem 1.25rem;
  max-width: 92vw;
}
.members-sub svg {
  width: 1.05rem;
  height: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
}
.members-section {
  background: #1a1a2b;
}
.member-group {
  margin-bottom: 3.5rem;
}
.member-group:last-child {
  margin-bottom: 0;
}
.member-rank-title {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-light);
  padding: .45rem 1.4rem;
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 999px;
  background: rgba(238, 21, 21, 0.08);
  width: fit-content;
  margin: 0 auto 1.75rem;
}
.member-rank-title--green {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.1);
}
.member-rank-title--admin {
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.1);
}
.member-rank-title--gray {
  color: #9ca3af;
  border-color: rgba(156, 163, 175, 0.4);
  background: rgba(156, 163, 175, 0.1);
}
.member-row--tight {
  gap: 1rem;
}
.member-row--tight > .reveal {
  flex: 1 1 12rem;
  max-width: 13.5rem;
}
.member-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.member-row > .reveal {
  flex: 1 1 13rem;
  max-width: 18rem;
}
.member-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #232335;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  padding: 2.5rem 1.5rem 1.75rem;
  overflow: hidden;
  touch-action: none;
  -webkit-touch-callout: none;
  user-select: none;
}
.hold-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
}
.member-card.holding .hold-ring {
  opacity: 1;
}
#st3akCard .hold-ring path { stroke: #ee1515; }
#branduzzoCard .hold-ring path { stroke: #22c55e; }
#jerioCard .hold-ring path,
#phyrossCard .hold-ring path,
#valvoCard .hold-ring path,
#slayCard .hold-ring path,
#38kCard .hold-ring path { stroke: #f59e0b; }
.member-avatar {
  position: relative;
  margin: 0 auto 1.25rem;
  border-radius: .75rem;
  overflow: hidden;
  background: #2c2c42;
  border: 3px solid rgba(255, 255, 255, 0.2);
  line-height: 0;
}
.member-avatar img {
  display: block;
  width: 6.25rem;
  height: 6.25rem;
  object-fit: cover;
  image-rendering: pixelated;
}
.member-status {
  display: none;
}
.member-name {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.member-foot {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  gap: .5rem;
}
.member-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  border-radius: .6rem;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.member-social svg {
  width: 1.1rem;
  height: 1.1rem;
}
.member-social:hover {
  color: #fff;
  border-color: rgba(88, 101, 242, 0.7);
  background: rgba(88, 101, 242, 0.18);
}
.member-social.member-social--yt:hover {
  color: #fff;
  border-color: rgba(255, 0, 0, 0.7);
  background: rgba(255, 0, 0, 0.18);
}
.member-social.member-social--twitch:hover {
  color: #fff;
  border-color: rgba(145, 70, 255, 0.7);
  background: rgba(145, 70, 255, 0.18);
}
@media (min-width: 768px) { .trailer { margin-bottom: 6rem; } }
.trailer video {
  display: block;
  width: 100%;
  aspect-ratio: 64 / 27;
  object-fit: cover;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 768px) { .feature-list { gap: 6rem; } }
.feature-row {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .feature-row {
    flex-direction: row;
    gap: 4rem;
  }
}
.feature-row.reversed {
  flex-direction: column;
}
@media (min-width: 768px) { .feature-row.reversed { flex-direction: row-reverse; } }
.feature-media {
  width: 100%;
}
@media (min-width: 768px) { .feature-media { width: 50%; } }
.media-frame {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.media-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
}
.media-frame.video {
  aspect-ratio: 16 / 9;
}
.media-frame.video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.feature-text {
  width: 100%;
}
@media (min-width: 768px) { .feature-text { width: 50%; } }
.feature-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .feature-title { font-size: 2.25rem; } }
.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--gray-100);
  font-size: 1rem;
  line-height: 1.625;
}
.bullet {
  margin-top: .375rem;
  width: .5rem;
  height: .5rem;
  border-radius: 9999px;
  background: var(--accent);
  flex-shrink: 0;
}
.feature-separator {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) { .feature-separator { margin-top: 6rem; } }
.glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(238, 21, 21, 0.05);
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
  z-index: 1;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-text p {
  color: var(--gray-100);
  font-size: 1rem;
  line-height: 1.625;
}
.btn-play.start {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 700;
  padding: .75rem 1.5rem;
  border-radius: .75rem;
  box-shadow: 0 2px 12px rgba(238, 21, 21, 0.3);
  align-self: flex-start;
  margin-top: .5rem;
}
.container-cta { max-width: 56rem; }
.cta-card {
  text-align: center;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, rgba(30, 30, 46, 0.8), #1e1e2e);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
@media (min-width: 768px) { .cta-card { padding: 4rem; } }
.cta-title {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .cta-title { font-size: 3rem; } }
.cta-sub {
  color: var(--gray-100);
  font-size: 1rem;
  line-height: 1.625;
  max-width: 42rem;
  margin: 0 auto 2rem;
}
@media (min-width: 768px) { .cta-sub { font-size: 1.125rem; } }
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.btn-play.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1rem 2rem;
  border-radius: .75rem;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(238, 21, 21, 0.3);
}
.btn-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1rem 2rem;
  border-radius: .75rem;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition: all .3s ease;
}
.btn-discord:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}
.btn-discord svg { width: 1.25rem; height: 1rem; }
.cta-footnote {
  color: var(--gray-500);
  font-size: .75rem;
  margin-top: 1.5rem;
}
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .guide-grid { grid-template-columns: 1fr 1fr; } }
.guide-card {
  display: block;
  height: 100%;
}
.guide-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  transition: all .3s ease;
}
.guide-card:hover .guide-card-inner {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-0.25rem);
}
.guide-body { flex: 1; }
.guide-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 9999px;
  background: rgba(238, 21, 21, 0.1);
  color: var(--accent-light);
  margin-bottom: .75rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.guide-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #fff;
  transition: color .3s ease;
}
.guide-card:hover .guide-title { color: var(--accent-light); }
.guide-desc {
  color: var(--gray-400);
  font-size: .875rem;
  line-height: 1.625;
}
.guide-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-600);
  margin-top: .25rem;
  flex-shrink: 0;
  transition: all .3s ease;
}
.guide-card:hover .guide-arrow {
  color: var(--accent-light);
  transform: translateX(0.25rem);
}
.guide-more {
  text-align: center;
  margin-top: 2.5rem;
}
.guide-more a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--accent-light);
  font-weight: 600;
  font-size: .875rem;
  transition: color .3s ease;
}
.guide-more a:hover { color: #fff; }
.container-steps { max-width: 56rem; }
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.step-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  transition: background .3s ease;
}
.step-card:hover { background: rgba(255, 255, 255, 0.04); }
.step-num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .75rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}
.step-desc {
  color: var(--gray-400);
  font-size: .875rem;
  line-height: 1.625;
}
.btn-full-guide {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--red-gradient, linear-gradient(135deg, #ee1515, #cc0000));
  color: #fff;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: .75rem;
  box-shadow: 0 2px 12px rgba(238, 21, 21, 0.3);
  transition: transform .3s ease;
}
.btn-full-guide:hover { transform: scale(1.05); }
.container-faq { max-width: 48rem; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  transition: background .3s ease;
}
.faq-item:hover { background: rgba(255, 255, 255, 0.04); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  font-weight: 700;
  color: #fff;
  padding-right: 1rem;
}
.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--gray-400);
  font-size: .875rem;
  line-height: 1.625;
}
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg-4);
}
.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .footer-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .footer-inner { padding: 0 2rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer-brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .75rem;
  object-fit: cover;
  flex-shrink: 0;
}
.footer-desc {
  color: var(--gray-400);
  font-size: .875rem;
  line-height: 1.625;
}
.footer-socials {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}
.social-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .5rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all .3s ease;
}
.social-btn:hover {
  background: rgba(88, 101, 242, 0.2);
  color: #fff;
}
.social-btn svg { width: 1.25rem; height: 1rem; }
.footer-heading {
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-links a {
  font-size: .875rem;
  color: var(--gray-400);
  transition: color .3s ease;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p {
  font-size: .75rem;
  color: var(--gray-400);
}
.goat-name {
  color: #fff;
  font-weight: 700;
  cursor: default;
}
.goat-name:hover {
  background-image: linear-gradient(90deg, #ff0000, #ff8800, #ffff00, #00ff00, #00ffff, #0088ff, #8800ff, #ff0000);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goat-rainbow 1.5s linear infinite;
}
@keyframes goat-rainbow {
  to { background-position: 200% 0; }
}
.egg-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #11111d;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.egg-overlay.show {
  opacity: 1;
}
.egg-overlay span {
  font-size: clamp(3.5rem, 14vw, 9rem);
  font-weight: 900;
  letter-spacing: .08em;
  background-image: linear-gradient(90deg, #ff0000, #ff8800, #ffff00, #00ff00, #00ffff, #0088ff, #8800ff, #ff0000);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  animation: goat-rainbow 1.5s linear infinite;
}
body.egg nav,
body.egg main,
body.egg footer {
  animation: wipe-out .7s ease forwards;
}
body.egg-hidden nav,
body.egg-hidden main,
body.egg-hidden footer {
  opacity: 0;
  visibility: hidden;
}
body.egg-return nav,
body.egg-return main,
body.egg-return footer {
  animation: wipe-in .7s ease;
}
@keyframes wipe-out {
  to { clip-path: inset(0 100% 0 0); opacity: 0; }
}
@keyframes wipe-in {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}
@media (max-width: 639px) {
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 36rem;
  }
  .hero-center {
    top: 42%;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .countdown {
    gap: .5rem;
    margin-top: 1.5rem;
  }
  .countdown-item {
    min-width: 58px;
    padding: .6rem .4rem;
  }
  .cd-num { font-size: 1.35rem; }
  .cd-label { font-size: .6rem; letter-spacing: .02em; }
  .hero-content .btn-play {
    margin-top: 1.75rem;
    padding: .9rem 1.75rem;
    font-size: 1rem;
  }
  .section { padding: 3.5rem 1.25rem; }
  .title { font-size: 1.75rem; }
  .subtitle { font-size: .9rem; }
  .trailer { margin-bottom: 2.5rem; }
  .members-title { font-size: 2.25rem; letter-spacing: -.02em; }
  .members-sub {
    font-size: .875rem;
    padding: .5rem 1rem;
  }
  .member-card { padding: 2rem 1.25rem 1.5rem; }
  .member-avatar img {
    width: 5rem;
    height: 5rem;
  }
}
@media (max-width: 420px) {
  .hero-logo { width: 230px; }
  .hero-center { top: 40%; }
  .countdown-item { min-width: 52px; padding: .5rem .25rem; }
  .cd-num { font-size: 1.2rem; }
  .members-title { font-size: 2rem; }
}
.nav-links.open a {
  font-size: 1.125rem;
  padding: .9rem 1.5rem;
}
.nav-links.open .countdown-nav {
  margin-top: .5rem;
  margin-left: 0;
  font-size: 1.125rem;
}