:root {
  --black: #000000;
  --gold: #ffd700;
  --soft-gold: #fff4b0;
  --deep-gold: #8a6500;
  --line: rgba(255, 244, 176, 0.18);
  --muted: rgba(255, 244, 176, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--soft-gold);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

main {
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 215, 0, 0.18), transparent 34rem),
    radial-gradient(circle at 10% 52%, rgba(255, 215, 0, 0.07), transparent 28rem),
    #000;
}

.hero,
.rule,
.levels,
.manifesto,
.final {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero {
  display: grid;
  min-height: 100svh;
  padding: 28px 18px 44px;
  place-items: center;
  text-align: center;
}

.particles,
.particles::before,
.particles::after {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 244, 176, 0.62) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 215, 0, 0.38) 0 1px, transparent 1.6px);
  background-position: 0 0, 44px 68px;
  background-size: 150px 190px, 220px 260px;
  opacity: 0.38;
  animation: floatDust 18s linear infinite;
}

.particles::before,
.particles::after {
  content: "";
  opacity: 0.3;
}

.particles::before {
  transform: scale(1.4);
  animation-duration: 28s;
}

.particles::after {
  transform: scale(0.8);
  animation-duration: 14s;
  animation-direction: reverse;
}

.hero-aura {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  pointer-events: none;
  place-items: center;
}

.aura-disc,
.aura-rays {
  position: absolute;
  width: min(88vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
}

.aura-disc {
  background:
    radial-gradient(circle, #fff8bc 0 5%, rgba(255, 215, 0, 0.72) 14%, rgba(255, 215, 0, 0.24) 38%, transparent 68%),
    conic-gradient(from 40deg, transparent, rgba(255, 244, 176, 0.34), transparent, rgba(255, 215, 0, 0.28), transparent);
  filter: blur(18px);
  animation: auraPulse 4.6s ease-in-out infinite;
}

.aura-rays {
  background: conic-gradient(
    from 10deg,
    transparent 0 5%,
    rgba(255, 244, 176, 0.2) 6%,
    transparent 9% 18%,
    rgba(255, 215, 0, 0.28) 20%,
    transparent 23% 38%,
    rgba(255, 244, 176, 0.18) 40%,
    transparent 44% 100%
  );
  filter: blur(24px);
  opacity: 0.68;
  transform: scale(1.22);
}

.hero-aura img {
  width: min(82vw, 690px);
  max-height: 76svh;
  object-fit: contain;
  filter:
    contrast(1.22)
    saturate(1.12)
    drop-shadow(0 0 44px rgba(255, 215, 0, 0.62))
    drop-shadow(0 0 140px rgba(255, 215, 0, 0.42));
  mask-image: radial-gradient(ellipse at center, black 0 48%, rgba(0, 0, 0, 0.9) 58%, transparent 77%);
}

.hero-copy {
  display: grid;
  width: min(100%, 1040px);
  margin-top: 30svh;
  justify-items: center;
}

.ticker,
.section-label,
.contract {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(255, 215, 0, 0.55);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(60px, 14vw, 188px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 28px rgba(255, 215, 0, 0.58),
    0 0 94px rgba(255, 215, 0, 0.42),
    0 12px 34px rgba(0, 0, 0, 0.96);
}

.subtitle {
  margin-bottom: 28px;
  color: rgba(255, 244, 176, 0.88);
  font-size: clamp(19px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.2;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.gold-button,
.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 54px;
  border-radius: 999px;
  padding: 15px 24px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gold-button {
  color: #070600;
  border: 1px solid rgba(255, 244, 176, 0.82);
  background: linear-gradient(145deg, #fff7bb 0%, #ffd700 46%, #b68400 100%);
  box-shadow:
    0 16px 0 rgba(98, 68, 0, 0.7),
    0 0 42px rgba(255, 215, 0, 0.42),
    inset 0 2px 0 rgba(255, 255, 255, 0.58);
}

.dark-button {
  color: var(--soft-gold);
  border: 1px solid rgba(255, 244, 176, 0.28);
  background: linear-gradient(145deg, rgba(255, 244, 176, 0.1), rgba(255, 215, 0, 0.04));
  box-shadow:
    0 14px 0 rgba(0, 0, 0, 0.86),
    inset 0 1px 0 rgba(255, 244, 176, 0.16);
}

.gold-button:hover,
.dark-button:hover {
  transform: translateY(-4px);
}

.contract {
  margin-top: 28px;
  color: rgba(255, 244, 176, 0.62);
  letter-spacing: 0.12em;
}

.rule {
  display: grid;
  min-height: 100svh;
  padding: clamp(90px, 12vw, 150px) 18px;
  place-items: center;
  text-align: center;
}

.rule h2,
.final h2 {
  margin-bottom: 22px;
  font-size: clamp(44px, 9vw, 132px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 70px rgba(255, 215, 0, 0.38);
}

.rule p {
  margin: 0;
  color: rgba(255, 244, 176, 0.82);
  font-size: clamp(24px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: lowercase;
}

.meme-field {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.meme-icon {
  position: absolute;
  width: clamp(88px, 13vw, 190px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.86) 0 42%, transparent 43%),
    linear-gradient(#020202, #000);
  opacity: 0.34;
  filter: drop-shadow(0 0 34px rgba(255, 215, 0, 0.5));
  animation: floatIcon 7s ease-in-out infinite;
}

.meme-icon::before {
  position: absolute;
  inset: -28% -34% auto;
  height: 70%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.46), rgba(255, 215, 0, 0.16) 42%, transparent 70%);
  filter: blur(10px);
}

.meme-1 {
  top: 12%;
  left: 8%;
}

.meme-2 {
  top: 18%;
  right: 9%;
  transform: scale(0.82);
  animation-delay: -2s;
}

.meme-3 {
  bottom: 12%;
  left: 15%;
  transform: scale(0.72);
  animation-delay: -4s;
}

.meme-4 {
  right: 20%;
  bottom: 10%;
  transform: scale(1.08);
  animation-delay: -1s;
}

.meme-5 {
  top: 46%;
  left: 50%;
  transform: translateX(-50%) scale(0.58);
  opacity: 0.18;
  animation-delay: -3s;
}

.levels {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(86px, 12vw, 150px) 0;
}

.levels .section-label {
  margin-bottom: 24px;
}

.level-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.aura-card {
  position: relative;
  display: grid;
  min-height: 300px;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 244, 176, 0.06), transparent 52%),
    linear-gradient(180deg, rgba(255, 244, 176, 0.05), rgba(0, 0, 0, 0.7));
  box-shadow: inset 0 1px 0 rgba(255, 244, 176, 0.11);
}

.aura-card::before {
  position: absolute;
  inset: 18px 24px auto;
  height: 58%;
  content: "";
  border-radius: 50%;
  opacity: 0.8;
  filter: blur(16px);
}

.icon-shape {
  position: absolute;
  top: 72px;
  left: 50%;
  width: 78px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #000;
  transform: translateX(-50%);
}

.aura-card h3 {
  position: relative;
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.no-aura::before {
  background: radial-gradient(circle, rgba(255, 244, 176, 0.08), transparent 58%);
}

.weak-aura::before {
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent 62%);
}

.rainbow-aura::before {
  background: conic-gradient(from 0deg, #ff4fd8, #50d8ff, #9cff57, #ffd700, #ff4fd8);
  opacity: 0.35;
}

.gold-aura {
  border-color: rgba(255, 215, 0, 0.92);
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 215, 0, 0.5), transparent 58%),
    linear-gradient(180deg, rgba(255, 215, 0, 0.2), rgba(0, 0, 0, 0.72));
  box-shadow:
    0 0 74px rgba(255, 215, 0, 0.36),
    0 0 150px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 244, 176, 0.42);
}

.gold-aura::before {
  background: radial-gradient(circle, rgba(255, 244, 176, 0.86), rgba(255, 215, 0, 0.46) 34%, transparent 70%);
  animation: auraPulse 3.4s ease-in-out infinite;
}

.levels h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(40px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.manifesto {
  display: grid;
  min-height: 100svh;
  padding: clamp(90px, 12vw, 150px) 18px;
  place-items: center;
  text-align: center;
}

.manifesto::before {
  position: absolute;
  inset: 12% auto auto 50%;
  z-index: -1;
  width: min(760px, 88vw);
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.22), transparent 66%);
  filter: blur(50px);
  transform: translateX(-50%);
}

.manifesto h2 {
  margin: 18px 0 34px;
  color: rgba(255, 244, 176, 0.9);
  font-size: clamp(34px, 6vw, 84px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: lowercase;
}

.manifesto p:last-child {
  margin: 0;
  color: rgba(255, 244, 176, 0.76);
  font-size: clamp(24px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: lowercase;
}

.final {
  display: grid;
  min-height: 100svh;
  padding: 80px 18px;
  place-items: center;
  text-align: center;
}

.final::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 215, 0, 0.38), transparent 42rem),
    linear-gradient(180deg, #000, #070500 48%, #000);
}

.final img {
  position: absolute;
  top: 7%;
  left: 50%;
  z-index: -1;
  width: min(1180px, 132vw);
  max-width: none;
  opacity: 0.36;
  filter: saturate(1.25) contrast(1.1);
  mask-image: linear-gradient(90deg, transparent, black 16%, black 84%, transparent);
  transform: translateX(-50%);
}

.final-copy {
  display: grid;
  justify-items: center;
}

.final .contract {
  margin-top: 32px;
}

@keyframes auraPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes floatDust {
  from {
    background-position: 0 0, 44px 68px;
  }

  to {
    background-position: 0 -420px, 44px -360px;
  }
}

@keyframes floatIcon {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

@media (max-width: 820px) {
  .hero-copy {
    margin-top: 27svh;
  }

  .hero-aura img {
    width: min(94vw, 620px);
  }

  .level-row {
    grid-template-columns: 1fr;
  }

  .aura-card {
    min-height: 210px;
  }

  .meme-2,
  .meme-4 {
    right: 2%;
  }

  .meme-1,
  .meme-3 {
    left: 2%;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 96svh;
  }

  .hero-copy {
    margin-top: 25svh;
  }

  h1 {
    font-size: clamp(56px, 18vw, 92px);
  }

  .actions,
  .gold-button,
  .dark-button {
    width: 100%;
  }

  .rule h2,
  .final h2 {
    font-size: clamp(44px, 15vw, 72px);
  }
}
