/* ============================================
   BIRTHDAY WEEK — Synthwave Time Machine
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg-deep: #0a0a0f;
  --bg-section: #0d0d1a;
  --bg-card: #141428;
  --bg-card-hover: #1a1a35;

  --neon-pink: #ff2d95;
  --neon-cyan: #00f0ff;
  --neon-gold: #ffd700;
  --neon-purple: #b44dff;
  --neon-green: #39ff14;

  --text-primary: #f0e6ff;
  --text-secondary: #a99fc2;
  --text-dim: #5a5080;

  --glow-pink: 0 0 10px #ff2d95, 0 0 40px #ff2d9544, 0 0 80px #ff2d9522;
  --glow-cyan: 0 0 10px #00f0ff, 0 0 40px #00f0ff44, 0 0 80px #00f0ff22;
  --glow-gold: 0 0 10px #ffd700, 0 0 40px #ffd70044;

  --font-display: 'Bungee Shade', 'Impact', sans-serif;
  --font-mono: 'VT323', 'Courier New', monospace;
  --font-body: 'Outfit', sans-serif;
  --font-handwritten: 'Permanent Marker', cursive;

  --section-padding: clamp(3rem, 8vh, 6rem) clamp(1rem, 5vw, 3rem);
  --container-max: 1100px;
  --border-radius: 12px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  -webkit-text-size-adjust: 100%;
}

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

::selection {
  background: var(--neon-pink);
  color: var(--bg-deep);
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.hidden {
  display: none !important;
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.section {
  min-height: 100vh;
  min-height: 100dvh;
  padding: var(--section-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  scroll-snap-align: start;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 0.5em;
  letter-spacing: 0.05em;
  color: var(--neon-pink);
}

.section__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* --- CRT Scanline Overlay --- */
.crt-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 4px
    );
  mix-blend-mode: overlay;
}

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

/* --- Custom Cursor --- */
@media (pointer: fine) {
  body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ctext y='18' font-size='18'%3E%E2%9C%A8%3C/text%3E%3C/svg%3E") 12 12, auto;
  }
  a, button, [tabindex], input, select, textarea, .expect-card {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ctext y='22' font-size='22'%3E%F0%9F%8E%82%3C/text%3E%3C/svg%3E") 14 14, pointer;
  }
}

/* --- Scroll Progress --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1000;
  background: transparent;
}

.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-gold));
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--neon-pink);
}

/* --- Sound Toggle --- */
.sound-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  background: var(--bg-card);
  border: 1px solid var(--text-dim);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  outline: none;
}

/* ============ HERO SECTION ============ */
.section--hero {
  background:
    radial-gradient(ellipse at 50% 0%, #1a0a2e 0%, var(--bg-deep) 70%);
  overflow: hidden;
}

/* Synthwave perspective grid floor */
.section--hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 60%;
  background-image:
    linear-gradient(to bottom, transparent 0%, rgba(255, 45, 149, 0.2) 100%),
    linear-gradient(90deg, rgba(0, 240, 255, 0.3) 2px, transparent 2px),
    linear-gradient(0deg, rgba(0, 240, 255, 0.3) 2px, transparent 2px);
  background-size: 100% 100%, 60px 60px, 60px 60px;
  background-position: 0 0, 0 0, 0 0;
  transform: perspective(500px) rotateX(60deg) translateY(0);
  transform-origin: center top;
  z-index: 0;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 20%, transparent 80%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 30%, transparent 90%);
  animation: grid-move 1.5s linear infinite;
}

@keyframes grid-move {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 0 60px, 0 60px; }
}

/* Synthwave horizon glow */
.section--hero::after {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), var(--neon-pink), transparent);
  box-shadow: 0 0 60px 20px rgba(255, 45, 149, 0.6), 0 0 100px 30px rgba(0, 240, 255, 0.4);
  z-index: 0;
  opacity: 0.9;
  animation: horizon-pulse 4s ease-in-out infinite alternate;
}

@keyframes horizon-pulse {
  0% { opacity: 0.7; transform: scaleY(1); }
  100% { opacity: 1; transform: scaleY(1.3); }
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero__pretitle {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 3vw, 1.5rem);
  letter-spacing: 0.3em;
  color: var(--neon-gold);
  text-shadow: var(--glow-gold);
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  line-height: 1.1;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 8rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple), var(--neon-pink));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 45, 149, 0.4));
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__turns {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--text-secondary);
}

.hero__age {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: 1;
  position: relative;
  filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.4));
  animation: neon-breathe 4s ease-in-out infinite;
}

@keyframes neon-breathe {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.3)); }
  50% { filter: drop-shadow(0 0 40px rgba(0, 240, 255, 0.6)) drop-shadow(0 0 80px rgba(0, 240, 255, 0.2)); }
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin-top: 0.5rem;
}

.hero__highlight {
  color: var(--neon-gold);
  font-family: var(--font-handwritten);
  font-size: 1.1em;
}

/* CTA Button */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1.2rem 3.5rem;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s, filter 0.3s;
  cursor: pointer;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.6), inset 0 0 20px rgba(0, 240, 255, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero__cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  animation: cta-shine 3s infinite;
}

@keyframes cta-shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.hero__cta:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 0 40px var(--neon-pink), 0 10px 50px rgba(0, 240, 255, 0.8), inset 0 0 30px rgba(255, 255, 255, 0.5);
  filter: brightness(1.2);
}

/* Scroll Hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
  animation: bounce-arrow 2s ease-in-out infinite;
}

/* --- Neon Text Utility --- */
.neon-text {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
}

.neon-text--cyan {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.neon-text--pink {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
}

.neon-text--gold {
  color: var(--neon-gold);
  text-shadow: var(--glow-gold);
}

/* --- Glitch Text --- */
.glitch-text {
  position: relative;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--neon-pink);
}

.glitch-text::before {
  left: 2px;
  text-shadow: -2px 0 var(--neon-cyan);
  clip-path: inset(0 0 65% 0);
  animation: glitch-top 3s ease-in-out infinite alternate;
}

.glitch-text::after {
  left: -2px;
  text-shadow: 2px 0 var(--neon-pink);
  clip-path: inset(65% 0 0 0);
  animation: glitch-bottom 2.5s ease-in-out infinite alternate;
}

/* ============ COUNTDOWN SECTION ============ */
.section--countdown {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0f0a1e 50%, var(--bg-deep) 100%);
}

.countdown-group {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.countdown__label {
  font-family: var(--font-handwritten);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  margin-bottom: 1.5rem;
}

/* Flip Clock */
.flip-clock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.3rem, 2vw, 1rem);
  flex-wrap: wrap;
}

.flip-clock__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.flip-clock__card {
  background: linear-gradient(180deg, #1a1a35 0%, #0d0d1a 50%, #1a1a35 100%);
  border: 1px solid var(--text-dim);
  border-radius: var(--border-radius);
  padding: clamp(0.8rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
  min-width: clamp(60px, 15vw, 100px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.flip-clock__card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15), inset 0 0 15px rgba(0, 240, 255, 0.05);
}

.flip-clock__card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.flip-clock__number {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  display: block;
  text-align: center;
  line-height: 1;
}

.flip-clock__separator {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: var(--neon-pink);
  animation: blink 1s step-end infinite;
  align-self: flex-start;
  margin-top: clamp(0.8rem, 3vw, 1.5rem);
}

.flip-clock__label {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 1.5vw, 0.85rem);
  color: var(--text-dim);
  letter-spacing: 0.2em;
}

/* Age Counter */
.age-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.age-counter__row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.age-counter__value {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--neon-gold);
  text-shadow: var(--glow-gold);
  min-width: 2ch;
  text-align: right;
}

.age-counter__unit {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  color: var(--text-dim);
  margin-right: 0.5rem;
}

/* ============ STATS SECTION ============ */
.section--stats {
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.15), transparent),
    radial-gradient(1px 1px at 30% 60%, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(1px 1px at 50% 10%, rgba(255, 255, 255, 0.12), transparent),
    radial-gradient(1px 1px at 70% 80%, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.15), transparent),
    radial-gradient(1.5px 1.5px at 15% 85%, rgba(0, 240, 255, 0.2), transparent),
    radial-gradient(1.5px 1.5px at 85% 15%, rgba(255, 45, 149, 0.2), transparent),
    radial-gradient(1px 1px at 45% 45%, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(1px 1px at 65% 25%, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(1px 1px at 25% 35%, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(180deg, var(--bg-deep) 0%, #0a0f1a 50%, var(--bg-deep) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 1.5rem;
  width: 100%;
}

.stat-card {
  background: var(--bg-section);
  border: none;
  border-top: 3px solid var(--neon-cyan);
  border-left: 1px solid rgba(0,240,255,0.2);
  border-radius: 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 20px 20px -20px rgba(0,240,255,0.1), 0 10px 20px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, border-color 0.3s;
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--neon-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-5px) skewX(-2deg);
  border-top-color: var(--neon-pink);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card__icon {
  position: absolute;
  right: -10px;
  bottom: -15px;
  font-size: 6rem;
  opacity: 0.1;
  filter: grayscale(1);
  transition: opacity 0.3s, transform 0.3s;
}

.stat-card:hover .stat-card__icon {
  opacity: 0.3;
  transform: scale(1.1) rotate(10deg);
  filter: none;
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--neon-cyan);
  transition: -webkit-text-stroke 0.3s, color 0.3s, text-shadow 0.3s;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.stat-card:hover .stat-card__value {
  color: var(--text-primary);
  -webkit-text-stroke: 1px transparent;
  text-shadow: var(--glow-pink);
}

.stat-card__label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}

/* ============ 1987 REWIND SECTION ============ */
.section--rewind {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #1a0a0a 50%, var(--bg-deep) 100%);
  overflow: hidden;
}

.vhs-border {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  z-index: 2;
}

.vhs-border span:first-child {
  color: #ff3333;
  animation: blink 2s step-end infinite;
}

.rewind-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  width: 100%;
}

.rewind-card {
  background: #111;
  border: 4px solid #222;
  border-radius: 4px;
  padding: 2.5rem 2rem 2.5rem 3rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 0px rgba(0,0,0,0.8), inset 0 0 10px rgba(255,255,255,0.02);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s, border-color 0.3s;
}

.rewind-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 12px; height: 100%;
  background: linear-gradient(to bottom, #ff003c 33%, #ff8a00 33%, #ff8a00 66%, #00e5ff 66%);
  opacity: 1;
  z-index: 1;
}

.rewind-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 16px 16px 0px rgba(0, 0, 0, 1), 0 0 20px rgba(255,0,60,0.3);
  border-color: #444;
}

.rewind-card__emoji {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  text-shadow: 3px 3px 0 #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #222;
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid #444;
  position: relative;
  z-index: 2;
}

.rewind-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 0 var(--neon-pink);
  position: relative;
  z-index: 2;
}

.rewind-card__text {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* ============ PARTY SECTION ============ */
.section--party {
  background: radial-gradient(ellipse at 50% 80%, #1a0a2e 0%, var(--bg-deep) 70%);
}

.party-card {
  background: linear-gradient(135deg, rgba(20, 20, 40, 0.9), rgba(10, 10, 30, 0.95));
  backdrop-filter: blur(10px);
  border: 2px solid var(--neon-pink);
  border-radius: calc(var(--border-radius) * 2);
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 0 40px rgba(255, 45, 149, 0.15), 0 0 80px rgba(255, 45, 149, 0.05), inset 0 0 40px rgba(255, 45, 149, 0.03);
  animation: card-border-glow 3s ease-in-out infinite alternate;
}

@keyframes card-border-glow {
  0% { box-shadow: 0 0 30px rgba(255, 45, 149, 0.1), inset 0 0 30px rgba(255, 45, 149, 0.02); }
  100% { box-shadow: 0 0 50px rgba(255, 45, 149, 0.2), 0 0 100px rgba(255, 45, 149, 0.06), inset 0 0 40px rgba(255, 45, 149, 0.04); }
}

.party-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.party-card__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}

.party-card__detail strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 600;
}

.party-card__note {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 0.15rem;
}

.party-countdown-mini {
  margin-top: 2rem;
  font-family: var(--font-handwritten);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  text-align: center;
}

.party-card__detail--cta {
  justify-content: center;
  padding: 0.5rem 0;
}

.party-date-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--neon-gold), #ff8c00);
  border-radius: 60px;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.party-date-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  color: var(--bg-deep);
}

/* ============ RSVP SECTION ============ */
.section--rsvp {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0a0a1e 50%, var(--bg-deep) 100%);
}

.rsvp-wrapper {
  max-width: 500px;
  width: 100%;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rsvp-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rsvp-form__label {
  font-family: var(--font-handwritten);
  font-size: 1.1rem;
  color: var(--neon-gold);
}

.rsvp-form__input,
.rsvp-form__select,
.rsvp-form__textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1.2rem;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--text-dim);
  border-radius: var(--border-radius);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}

.rsvp-form__input:focus,
.rsvp-form__select:focus,
.rsvp-form__textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.rsvp-form__input::placeholder,
.rsvp-form__textarea::placeholder {
  color: var(--text-dim);
}

.rsvp-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a99fc2' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Radio Buttons */
.rsvp-form__radio-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.rsvp-radio {
  cursor: pointer;
  flex: 1;
  min-width: 130px;
}

.rsvp-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.rsvp-radio__btn {
  display: block;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--text-dim);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-out-expo);
  background: var(--bg-card);
}

.rsvp-radio input:checked + .rsvp-radio__btn--yes {
  border-color: var(--neon-green);
  background: rgba(57, 255, 20, 0.1);
  color: var(--neon-green);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.rsvp-radio input:checked + .rsvp-radio__btn--maybe {
  border-color: var(--neon-gold);
  background: rgba(255, 215, 0, 0.1);
  color: var(--neon-gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.rsvp-radio input:checked + .rsvp-radio__btn--no {
  border-color: var(--neon-pink);
  background: rgba(255, 45, 149, 0.1);
  color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.2);
}

.rsvp-radio__btn:hover {
  border-color: var(--text-secondary);
  transform: translateY(-1px);
}

.rsvp-radio input:focus-visible + .rsvp-radio__btn {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* Submit Button */
.rsvp-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
  border: none;
  border-radius: 60px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  margin-top: 0.5rem;
}

.rsvp-form__submit:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4), 0 10px 40px rgba(0, 240, 255, 0.2);
}

.rsvp-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* RSVP Success */
.rsvp-success {
  text-align: center;
  padding: 3rem 1rem;
}

.rsvp-success__emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 0.6s var(--ease-out-expo);
}

.rsvp-success__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 0.5rem;
}

.rsvp-success__text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.rsvp-success__hint {
  font-family: var(--font-handwritten);
  font-size: 1rem;
  color: var(--text-dim);
  animation: fadeIn 2s 1s both;
}

/* RSVP Counter */
.rsvp-counter {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--font-body);
  color: var(--text-dim);
}

.rsvp-counter__number {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--neon-gold);
  text-shadow: var(--glow-gold);
}

/* ============ FOOTER ============ */
.section--footer {
  min-height: auto;
  padding: 3rem clamp(1rem, 5vw, 3rem);
  background: var(--bg-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__message {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer__text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer__hint {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.08);
  margin-top: 0.5rem;
  transition: color 0.5s;
}

.footer__hint:hover {
  color: rgba(255, 255, 255, 0.3);
}

.footer__share {
  text-align: center;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--text-dim);
  border-radius: 60px;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.share-btn:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

/* --- Pulse Glow Utility --- */
.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ============ RESPONSIVE ============ */

/* --- Mobile Performance: disable expensive compositing effects --- */
@media (max-width: 768px) {
  html {
    scroll-snap-type: none;
  }

  body::after {
    display: none;
  }

  .crt-overlay {
    display: none;
  }

  .section--hero::before,
  .section--hero::after {
    display: none;
  }

  .hero__age {
    animation: none;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.3));
  }

  .hero__name {
    animation: none;
    background-size: 100% 100%;
  }

  .party-card {
    backdrop-filter: none;
    animation: none;
  }

  .section--stats {
    background: linear-gradient(180deg, var(--bg-deep) 0%, #0a0f1a 50%, var(--bg-deep) 100%);
  }
}

@media (max-width: 480px) {
  .flip-clock__separator {
    display: none;
  }

  .flip-clock {
    gap: 0.5rem;
  }

  .rsvp-form__radio-group {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .rewind-carousel {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rewind-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============ WHAT TO EXPECT ============ */
.section--expect {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0f0a1e 50%, var(--bg-deep) 100%);
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: 1.2rem;
  width: 100%;
}

.expect-card {
  perspective: 600px;
  cursor: pointer;
  height: 180px;
}

.expect-card__front,
.expect-card__back {
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  transition: transform 0.6s var(--ease-out-expo);
  padding: 1rem;
  text-align: center;
}

.expect-card__front {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.expect-card__back {
  background: linear-gradient(135deg, #1a1040, #0d0d2a);
  border: 1px solid var(--neon-cyan);
  transform: rotateY(180deg);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.expect-card:hover .expect-card__front,
.expect-card:focus .expect-card__front {
  transform: rotateY(180deg);
}

.expect-card:hover .expect-card__back,
.expect-card:focus .expect-card__back {
  transform: rotateY(0);
}

.expect-card {
  position: relative;
}

.expect-card__icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.expect-card__title {
  font-family: var(--font-handwritten);
  font-size: 1rem;
  color: var(--neon-gold);
}

/* ============ RSVP FORM EXTRAS ============ */
.rsvp-form__divider {
  font-family: var(--font-handwritten);
  font-size: 1.1rem;
  color: var(--neon-cyan);
  text-align: center;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0.5rem;
}

.rsvp-form__range {
  width: 100%;
  accent-color: var(--neon-pink);
  cursor: pointer;
  height: 6px;
}

.rsvp-form__range-value {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--neon-gold);
  text-align: center;
  display: block;
  margin-top: 0.3rem;
}

/* ============ EXPLODING KITTENS ============ */
.section--kittens {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #1a0a0a 50%, var(--bg-deep) 100%);
}

.kittens-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.kittens-deck {
  perspective: 600px;
}

.kittens-card {
  width: 180px;
  height: 260px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  user-select: none;
}

.kittens-card--back {
  background: linear-gradient(135deg, #1a1040, #2a1050);
  border: 2px solid var(--neon-purple);
  box-shadow: 0 0 20px rgba(180, 77, 255, 0.2);
}

.kittens-card--back:hover {
  transform: scale(1.05) rotateY(-5deg);
  box-shadow: 0 0 40px rgba(180, 77, 255, 0.4);
}

.kittens-card__label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
}

.kittens-result {
  text-align: center;
  padding: 2rem;
}

.kittens-result__icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  animation: bounce 0.6s var(--ease-out-expo);
}

.kittens-result__text {
  font-family: var(--font-handwritten);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.kittens-btn {
  padding: 0.7rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.kittens-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(180, 77, 255, 0.4);
}

.kittens-score {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ============ GIFT REGISTRY ============ */
.section--gifts {
  background: radial-gradient(ellipse at 50% 50%, #1a0a2e 0%, var(--bg-deep) 70%);
}

.gifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 1.2rem;
  width: 100%;
}

.gift-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s;
}

.gift-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  border-color: var(--neon-gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15), 0 12px 30px rgba(0, 0, 0, 0.3);
}

.gift-card__icon {
  font-size: 2.5rem;
}

.gift-card__name {
  font-family: var(--font-handwritten);
  font-size: 1.1rem;
  color: var(--neon-gold);
}

.gift-card__price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--neon-cyan);
}

.gift-card__status {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}

.gift-card__status--taken {
  color: var(--neon-green);
  font-style: normal;
  font-weight: 600;
}

/* ============ PHOTO WALL ============ */
.section--photos {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0a0f1a 50%, var(--bg-deep) 100%);
  min-height: 60vh;
}

.photos-cta {
  text-align: center;
}

.photos-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--neon-gold), #ff8c00);
  border-radius: 60px;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.photos-link:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.photos-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ============ FUN ZONE ============ */
.section--funzone {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0f0a1e 50%, var(--bg-deep) 100%);
}

.funzone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  width: 100%;
}

.funzone-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.funzone-card__title {
  font-family: var(--font-handwritten);
  font-size: 1.1rem;
  color: var(--neon-gold);
  text-align: center;
}

.funzone-btn {
  padding: 0.7rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.funzone-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.funzone-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.funzone-card__status {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--neon-green);
  animation: fadeIn 0.3s ease-out;
}

/* ============ DASHBOARD EXTRAS ============ */
.dash-predictions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
}

.dash-poll-bars {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.poll-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.poll-bar__name {
  font-size: 0.9rem;
  color: var(--text-secondary);
  min-width: 80px;
  text-align: right;
}

.poll-bar__fill-wrapper {
  flex: 1;
  height: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.poll-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  border-radius: 12px;
  min-width: 2px;
  transition: width 0.6s var(--ease-out-expo);
}

.poll-bar__count {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  min-width: 30px;
}

.dash-pizza-stat {
  text-align: center;
  padding: 1rem 0;
}

.dash-playlist {
  width: 100%;
  margin-bottom: 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}

.dash-playlist-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.playlist-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.playlist-item:last-child {
  border-bottom: none;
}

.playlist-item__song {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.playlist-item__by {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Achievements */
.dash-achievements {
  width: 100%;
  margin-bottom: 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 0.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  opacity: 0.25;
  filter: grayscale(1);
  transition: opacity 0.5s, filter 0.5s;
}

.badge.unlocked {
  opacity: 1;
  filter: none;
}

.badge__icon {
  font-size: 2rem;
}

.badge__name {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge.unlocked .badge__name {
  color: var(--neon-gold);
}

/* ============ DASHBOARD SECTION ============ */
.section--dashboard {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0a0f1a 50%, var(--bg-deep) 100%);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  width: 100%;
  margin-bottom: 2.5rem;
}

.dash-stat {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 1.5rem 1rem;
  text-align: center;
}

.dash-stat__value {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  display: block;
  margin-bottom: 0.3rem;
}

.dash-stat__label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dash-guests {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
}

.dash-guest-group {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}

.dash-guest-group__title {
  font-family: var(--font-handwritten);
  font-size: 1.1rem;
  color: var(--neon-gold);
  margin-bottom: 1rem;
}

.dash-guest-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dash-guest-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dash-guest-list li:last-child {
  border-bottom: none;
}

.dash-guest-list .plus-one {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-left: 0.3rem;
}

.dash-guest-list__empty {
  color: var(--text-dim);
  font-style: italic;
  font-size: 0.85rem;
}

.dash-messages {
  width: 100%;
  margin-bottom: 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}

.dash-messages-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dash-message {
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border-left: 3px solid var(--neon-cyan);
}

.dash-message__name {
  font-family: var(--font-handwritten);
  color: var(--neon-cyan);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.dash-message__text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.dash-server {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

/* --- Section initial hidden state (in main CSS to prevent FOUC) --- */
.section:not(.section--hero):not(.section--footer) {
  opacity: 0;
}

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

  html {
    scroll-behavior: auto;
  }

  .crt-overlay {
    display: none;
  }

  .glitch-text::before,
  .glitch-text::after {
    display: none;
  }

  #particle-canvas {
    display: none;
  }
}
