:root {
  --black: #050505;
  --ink: #0b0d0d;
  --gray: #a2aaa8;
  --muted: #5d6462;
  --white: #f4fff9;
  --green: #00ff9f;
  --purple: #7b2fff;
  --line: rgba(244, 255, 249, 0.14);
  --glass: rgba(10, 13, 13, 0.68);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", "Space Grotesk", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  content: "";
  background:
    radial-gradient(circle at 80% 15%, rgba(123, 47, 255, 0.2), transparent 32rem),
    radial-gradient(circle at 20% 72%, rgba(0, 255, 159, 0.16), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #090b0b 46%, #050505 100%);
}

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

button,
input {
  font: inherit;
}

#hero-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  opacity: 0.46;
}

.noise,
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  z-index: 9;
  opacity: 0.07;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 7px),
    linear-gradient(25deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}

.scanlines {
  z-index: 8;
  opacity: 0.18;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.08) 0,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px,
    transparent 8px
  );
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 7;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 255, 159, 0.17), rgba(123, 47, 255, 0.08) 38%, transparent 70%);
  transition: opacity 180ms ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.52);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark span:last-child {
  color: var(--green);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  color: rgba(244, 255, 249, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-nav a:hover {
  color: var(--green);
  text-shadow: 0 0 22px rgba(0, 255, 159, 0.7);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 0.28rem auto;
  background: currentColor;
}

.section-pad {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 3.5rem);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding-top: 7rem;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 28vh;
  content: "";
  background: linear-gradient(180deg, transparent, var(--black));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.video-strip {
  position: absolute;
  width: 52vw;
  min-width: 22rem;
  height: 72vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-size: 220% 220%;
  filter: saturate(1.2) contrast(1.12);
  opacity: 0.74;
  transform: rotate(-8deg);
  animation: drift 12s ease-in-out infinite alternate;
}

.strip-one {
  right: -7vw;
  top: 9vh;
  background-image:
    linear-gradient(135deg, rgba(0, 255, 159, 0.7), transparent 28%),
    linear-gradient(45deg, rgba(123, 47, 255, 0.84), transparent 54%),
    repeating-linear-gradient(90deg, #171717 0 1.4rem, #242424 1.4rem 1.7rem, #080808 1.7rem 3.2rem);
}

.strip-two {
  right: 23vw;
  top: 18vh;
  height: 52vh;
  opacity: 0.36;
  animation-delay: -4s;
  background-image:
    radial-gradient(circle at 40% 20%, rgba(0, 255, 159, 0.76), transparent 9rem),
    repeating-linear-gradient(135deg, #050505 0 1rem, #262626 1rem 1.3rem, #111 1.3rem 2.4rem);
}

.strip-three {
  left: -18vw;
  top: 25vh;
  height: 62vh;
  opacity: 0.34;
  animation-delay: -7s;
  background-image:
    radial-gradient(circle at 62% 35%, rgba(123, 47, 255, 0.82), transparent 8rem),
    repeating-linear-gradient(20deg, #101010 0 1.2rem, #303030 1.2rem 1.45rem, #050505 1.45rem 3rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 73rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(0.75rem, 1.5vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 0.4rem;
  font-size: clamp(4.5rem, 18vw, 13.5rem);
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow:
    0 0 42px rgba(0, 255, 159, 0.15),
    0 0 72px rgba(123, 47, 255, 0.22);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 8vw, 6.2rem);
  line-height: 0.9;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1;
}

.hero-kicker {
  width: fit-content;
  margin-bottom: 1.1rem;
  color: var(--black);
  background: var(--green);
  padding: 0.3rem 0.55rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 36px rgba(0, 255, 159, 0.34);
}

.hero-copy,
.section-heading p,
.about-copy p,
.join-panel p {
  max-width: 43rem;
  color: rgba(244, 255, 249, 0.72);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.9rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: rgba(0, 255, 159, 0.68);
  background: var(--green);
  color: #00140d;
  box-shadow: 0 0 28px rgba(0, 255, 159, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: rgba(123, 47, 255, 0.7);
  box-shadow: 0 0 30px rgba(123, 47, 255, 0.22);
}

.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 5rem;
}

.hero-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: rgba(244, 255, 249, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: #080909;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.ticker span {
  padding: 1rem 1.7rem;
  color: transparent;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(244, 255, 249, 0.36);
}

.section-heading {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.section-heading.split {
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: 2rem;
}

.countdown-panel,
.join-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.08), rgba(123, 47, 255, 0.08)), var(--glass);
  padding: clamp(1rem, 3vw, 1.6rem);
  backdrop-filter: blur(20px);
}

.panel-label,
.card-date,
.event-poster span,
.gallery-item span,
.social-tile span {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

#countdown {
  display: block;
  margin-top: 0.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.65rem, 5vw, 4.5rem);
}

.event-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1rem;
}

.event-card {
  position: relative;
  display: grid;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #090a0a;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.event-card::before {
  position: absolute;
  inset: -1px;
  z-index: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, var(--green), transparent 35%, var(--purple));
  transition: opacity 220ms ease;
}

.event-card:hover {
  border-color: rgba(0, 255, 159, 0.4);
  box-shadow: 0 0 42px rgba(0, 255, 159, 0.1), 0 0 52px rgba(123, 47, 255, 0.1);
  transform: translateY(-4px) scale(1.01);
}

.event-card:hover::before {
  opacity: 0.52;
}

.event-poster,
.event-card-body {
  position: relative;
  z-index: 1;
}

.event-poster {
  min-height: 20rem;
  padding: 1rem;
  background-size: 180% 180%;
  animation: posterMove 7s ease-in-out infinite alternate;
}

.poster-one {
  background-image:
    radial-gradient(circle at 25% 24%, rgba(0, 255, 159, 0.95), transparent 9rem),
    radial-gradient(circle at 80% 15%, rgba(123, 47, 255, 0.88), transparent 11rem),
    repeating-linear-gradient(110deg, #0b0d0d 0 1.3rem, #202525 1.3rem 1.55rem, #050505 1.55rem 3rem);
}

.poster-two {
  background-image:
    radial-gradient(circle at 35% 35%, rgba(123, 47, 255, 0.9), transparent 9rem),
    radial-gradient(circle at 76% 70%, rgba(0, 255, 159, 0.7), transparent 10rem),
    repeating-linear-gradient(30deg, #060707 0 1.1rem, #232323 1.1rem 1.3rem, #101010 1.3rem 2.6rem);
}

.event-card-body {
  margin: 1px;
  background: rgba(5, 5, 5, 0.86);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.event-card-body p {
  color: rgba(244, 255, 249, 0.68);
  line-height: 1.55;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: rgba(244, 255, 249, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(12rem, 18vw);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  min-height: 13rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-size: 200% 200%;
  isolation: isolate;
}

.gallery-item::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: inherit;
  transition: transform 400ms ease, filter 400ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.86));
}

.gallery-item:hover::before {
  filter: saturate(1.35) contrast(1.18);
  transform: scale(1.08);
}

.gallery-item span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.media-one {
  background-image: radial-gradient(circle at 34% 24%, rgba(0, 255, 159, 0.8), transparent 9rem), linear-gradient(145deg, #101010, #33205d 48%, #050505);
}

.media-two {
  background-image: radial-gradient(circle at 78% 12%, rgba(123, 47, 255, 0.92), transparent 8rem), repeating-linear-gradient(90deg, #111 0 1.2rem, #2a2a2a 1.2rem 1.4rem);
}

.media-three {
  background-image: radial-gradient(circle at 48% 48%, rgba(0, 255, 159, 0.7), transparent 7rem), linear-gradient(40deg, #070707, #143025);
}

.media-four {
  background-image: radial-gradient(circle at 20% 80%, rgba(123, 47, 255, 0.82), transparent 8rem), linear-gradient(120deg, #151515, #07110d);
}

.media-five {
  background-image: linear-gradient(120deg, rgba(0, 255, 159, 0.32), rgba(123, 47, 255, 0.36)), repeating-linear-gradient(135deg, #080808 0 1.4rem, #272727 1.4rem 1.65rem);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.principles {
  display: grid;
  gap: 0.8rem;
}

.principles div,
.social-tile {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 1.1rem;
  backdrop-filter: blur(16px);
}

.principles span {
  color: var(--purple);
  font-weight: 900;
}

.principles strong {
  display: block;
  margin: 0.55rem 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.principles p {
  margin-bottom: 0;
  color: rgba(244, 255, 249, 0.64);
  line-height: 1.5;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 255, 159, 0.07), rgba(123, 47, 255, 0.09)),
    rgba(255, 255, 255, 0.035);
  padding: clamp(1rem, 3vw, 1.25rem);
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.team-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.44;
  background:
    linear-gradient(90deg, transparent 0 20%, rgba(0, 255, 159, 0.12) 20% 21%, transparent 21% 44%, rgba(123, 47, 255, 0.12) 44% 45%, transparent 45%),
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(255, 255, 255, 0.05) 12px 13px);
  transform: skewX(-8deg);
}

.team-card:hover {
  border-color: rgba(0, 255, 159, 0.42);
  box-shadow: 0 0 48px rgba(0, 255, 159, 0.1), 0 0 60px rgba(123, 47, 255, 0.09);
  transform: translateY(-4px);
}

.toon-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(244, 255, 249, 0.18);
  background: #030303;
  box-shadow:
    inset 0 0 0 4px rgba(0, 0, 0, 0.72),
    0 0 34px rgba(0, 0, 0, 0.72),
    0 0 42px rgba(0, 255, 159, 0.08);
}

.toon-frame::before,
.toon-frame::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.toon-frame::before {
  opacity: 0.78;
  background:
    radial-gradient(circle at 50% 34%, transparent 0 38%, rgba(0, 0, 0, 0.72) 82%),
    linear-gradient(135deg, rgba(0, 255, 159, 0.08), transparent 36%, rgba(123, 47, 255, 0.12)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 7px);
  mix-blend-mode: multiply;
}

.toon-frame::after {
  border: 2px solid rgba(5, 5, 5, 0.88);
  background:
    repeating-radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
  mix-blend-mode: overlay;
}

.toon-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.72) brightness(0.54) saturate(0);
  transform: scale(1.04);
  transition: filter 220ms ease, transform 420ms ease;
}

.team-card:hover .toon-frame img {
  filter: grayscale(1) contrast(1.92) brightness(0.62) saturate(0);
  transform: scale(1.09);
}

.team-copy p:last-child {
  margin-bottom: 0;
  color: rgba(244, 255, 249, 0.66);
  line-height: 1.55;
}

.social-tile {
  display: grid;
  min-height: 16rem;
  align-content: end;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 70% 10%, rgba(123, 47, 255, 0.52), transparent 8rem),
    radial-gradient(circle at 24% 70%, rgba(0, 255, 159, 0.34), transparent 9rem),
    #0a0c0c;
  transition: transform 180ms ease, border-color 180ms ease;
}

.social-tile:hover {
  border-color: rgba(0, 255, 159, 0.48);
  transform: translateY(-3px);
}

.social-tile strong {
  margin-top: 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.join-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 0.72fr);
  align-items: start;
  margin-bottom: 0;
}

.join-form {
  display: grid;
  gap: 0.85rem;
}

.join-form label {
  display: grid;
  gap: 0.4rem;
  color: rgba(244, 255, 249, 0.62);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.join-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
  padding: 0.95rem 1rem;
  outline: none;
}

.join-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 255, 159, 0.1);
}

.form-note {
  min-height: 1.2rem;
  margin: 0;
  color: var(--green);
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.3rem clamp(1rem, 4vw, 3.5rem);
  color: rgba(244, 255, 249, 0.6);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer span {
  color: var(--white);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    background-position: 0% 40%;
    transform: rotate(-8deg) translate3d(0, 0, 0);
  }
  to {
    background-position: 100% 60%;
    transform: rotate(-5deg) translate3d(1.5rem, -1rem, 0);
  }
}

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

@keyframes posterMove {
  to {
    background-position: 100% 100%;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 4.75rem;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.94);
    padding: 0.5rem;
    opacity: 0;
    transform: translateY(-1rem);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 1rem;
  }

  .section-heading.split,
  .event-grid,
  .about,
  .join-panel {
    grid-template-columns: 1fr;
  }

  .featured-card {
    min-height: 36rem;
  }

  .gallery-grid,
  .team-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: minmax(8rem, 0.55fr) minmax(0, 1fr);
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .countdown-panel {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .section-pad {
    padding-inline: 1rem;
  }

  h1 {
    font-size: clamp(4.1rem, 24vw, 7rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .countdown-panel .btn,
  .join-form .btn {
    width: 100%;
  }

  .event-card {
    min-height: auto;
  }

  .event-poster {
    min-height: 17rem;
  }

  .card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .toon-frame {
    max-height: 28rem;
  }

  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
