.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.kinetic-bg {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.confetti-overlay {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h2v2H0V0zm10 10h2v2h-2v-2zm10 10h2v2h-2v-2zm10 10h2v2h-2v-2zM0 20h2v2H0v-2zm10 30h2v2h-2v-2zM20 0h2v2h-2V0zm10 10h2v2h-2v-2z' fill='%23fecb00' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
}

body {
  min-height: max(884px, 100dvh);
}

.bg-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 6;
}

.bg-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg-atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% var(--scroll-glow-y),
      rgba(254, 203, 0, var(--scroll-glow-opacity)),
      rgba(254, 203, 0, 0) 44%
    ),
    radial-gradient(
      circle at 80% calc(82% - (var(--scroll-progress) * 28%)),
      rgba(254, 203, 0, calc(var(--scroll-glow-opacity) * 0.72)),
      rgba(254, 203, 0, 0) 38%
    );
  transform: translate3d(0, calc(var(--scroll-progress) * -120px), 0)
    scale(calc(1 + (var(--scroll-progress) * 0.08)));
}

.bg-atmosphere::after {
  content: "";
  position: absolute;
  inset: -20% -8%;
  background:
    linear-gradient(
      130deg,
      rgba(254, 203, 0, 0) 30%,
      rgba(254, 203, 0, calc(var(--scroll-glow-opacity) * 0.35)) 50%,
      rgba(254, 203, 0, 0) 74%
    );
  transform: translate3d(calc(var(--scroll-progress) * 8%), calc(var(--scroll-progress) * -14%), 0);
  mix-blend-mode: screen;
}

main,
nav,
section,
footer {
  position: relative;
  z-index: 1;
}

:root {
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --scroll-progress: 0;
  --scroll-glow-y: 22%;
  --scroll-glow-opacity: 0.22;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 70;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(254, 203, 0, 0.12), rgba(254, 203, 0, 0.02));
}

.scroll-progress-fill {
  display: block;
  height: 100%;
  width: calc(var(--scroll-progress, 0) * 100%);
  background: linear-gradient(90deg, #fecb00, #ffe58d);
  box-shadow: 0 0 12px rgba(254, 203, 0, 0.72);
}

@keyframes floatY {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes drift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 80px 80px;
  }
}

@keyframes shootingStar {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(var(--star-angle, -18deg)) scale(0.78);
  }

  12% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--travel-x, 140px), var(--travel-y, 56px), 0)
      rotate(var(--star-angle, -18deg)) scale(1);
  }
}

.shooting-star {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--star-length, 76px);
  height: var(--star-thickness, 2px);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(254, 203, 0, 0),
    rgba(255, 225, 110, 0.98) 28%,
    rgba(255, 246, 186, 1) 52%,
    rgba(255, 225, 110, 0.72) 72%,
    rgba(254, 203, 0, 0)
  );
  filter: drop-shadow(0 0 6px rgba(254, 203, 0, 0.68));
  mix-blend-mode: screen;
  transform-origin: left center;
  animation: shootingStar var(--star-duration, 1600ms) linear forwards;
}

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

  50% {
    opacity: 0.65;
    transform: scale(1.04);
  }
}

@keyframes navLift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1px);
  }
}

.nav-breathe {
  animation: navLift 6s ease-in-out infinite;
}

.confetti-overlay {
  animation: drift 24s linear infinite;
}

.ambient-orb {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
}

.ambient-orb-a {
  width: 280px;
  height: 280px;
  top: -48px;
  left: -48px;
  background: radial-gradient(circle, rgba(254, 203, 0, 0.35) 0%, rgba(254, 203, 0, 0) 70%);
  animation: floatY 8s ease-in-out infinite;
}

.ambient-orb-b {
  width: 220px;
  height: 220px;
  right: 6%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(254, 203, 0, 0.08) 0%, rgba(254, 203, 0, 0) 72%);
  animation: floatY 10s ease-in-out infinite reverse;
}

.neon-gold {
  color: #fecb00;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 5px rgba(254, 203, 0, 0.6),
    0 0 12px rgba(254, 203, 0, 0.4),
    0 0 22px rgba(254, 203, 0, 0.25),
    0 0 40px rgba(245, 160, 0, 0.15);
}

@keyframes heroLineIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0) rotateX(26deg) skewX(-2deg);
    filter: blur(7px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0) skewX(0);
    filter: blur(0);
  }
}

@keyframes heroHalo {
  0%,
  100% {
    opacity: 0.18;
    transform: translate3d(-3%, -2%, 0) scale(0.98);
  }

  50% {
    opacity: 0.32;
    transform: translate3d(2%, 1%, 0) scale(1.04);
  }
}

@keyframes shimmerSweep {
  0%,
  20% {
    transform: translate3d(-120%, 0, 0);
    opacity: 0;
  }

  35% {
    opacity: 0.5;
  }

  55%,
  100% {
    transform: translate3d(160%, 0, 0);
    opacity: 0;
  }
}

@keyframes twentyOnePulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-3px) scale(1.04);
  }

  60% {
    transform: translateY(1px) scale(0.995);
  }
}

@keyframes subCopyRise {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes subCopyShimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-title {
  position: relative;
  isolation: isolate;
  perspective: 900px;
}

.hero-title::before {
  content: "";
  position: absolute;
  left: -8%;
  top: -10%;
  width: min(560px, 100%);
  height: 120%;
  border-radius: 999px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(254, 203, 0, 0.2) 0%, rgba(254, 203, 0, 0) 70%);
  filter: blur(24px);
  animation: heroHalo 6s ease-in-out infinite;
}

.hero-line {
  display: block;
  width: fit-content;
  position: relative;
  opacity: 0;
  transform-origin: 50% 100%;
  transform: translate3d(0, 30px, 0) rotateX(26deg) skewX(-2deg);
  animation: heroLineIn 860ms var(--motion-ease) forwards;
}

.hero-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translate3d(-120%, 0, 0);
  animation: shimmerSweep 4.8s linear infinite;
}

.hero-line-1 {
  animation-delay: 70ms;
}

.hero-line-2 {
  animation-delay: 210ms;
}

.hero-line-3 {
  animation-delay: 350ms;
}

.hero-line-1::after {
  animation-delay: 980ms;
}

.hero-line-2::after {
  animation-delay: 1160ms;
}

.hero-line-3::after {
  animation-delay: 1340ms;
}

.hero-21 {
  display: inline-block;
  animation: twentyOnePulse 2.6s ease-in-out infinite 1.1s;
}

.hero-subcopy {
  position: relative;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  animation: subCopyRise 920ms var(--motion-ease) 620ms forwards;
}

.good-vibes-trigger {
  cursor: pointer;
  transition:
    transform 240ms var(--motion-ease),
    border-color 240ms var(--motion-ease),
    box-shadow 240ms var(--motion-ease);
}

.good-vibes-trigger:hover,
.good-vibes-trigger:focus-visible {
  border-color: rgba(254, 203, 0, 0.72);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(254, 203, 0, 0.2);
  transform: translateY(-2px) rotate(-2deg);
}

.good-vibes-trigger:active {
  transform: translateY(1px) rotate(-2deg) scale(0.98);
}

@keyframes confettiBurst {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.55);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--confetti-x), var(--confetti-y), 0)
      rotate(var(--confetti-rot)) scale(1);
  }
}

.mini-confetti {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--confetti-size, 8px);
  height: var(--confetti-size, 8px);
  border-radius: 2px;
  pointer-events: none;
  z-index: 30;
  transform: translate3d(0, 0, 0);
  background: hsl(var(--confetti-hue, 48) 98% 58%);
  box-shadow: 0 0 10px rgba(254, 203, 0, 0.55);
  animation: confettiBurst var(--confetti-duration, 900ms) cubic-bezier(0.08, 0.7, 0.22, 1) forwards;
}

@keyframes cakeChomp {
  0% {
    transform: rotate(-6deg) scale(1);
    filter: saturate(1);
  }

  22% {
    transform: rotate(-2deg) scale(1.04);
    filter: saturate(1.2);
  }

  45% {
    transform: rotate(-8deg) scale(0.99);
    filter: saturate(1.35);
  }

  72% {
    transform: rotate(-4deg) scale(1.02);
    filter: saturate(1.1);
  }

  100% {
    transform: rotate(-6deg) scale(1);
    filter: saturate(1);
  }
}

@keyframes crumbPop {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.45);
  }

  15% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--crumb-x), var(--crumb-y), 0)
      scale(1.05);
  }
}

@keyframes nomRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.7) rotate(-6deg);
  }

  25% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--nom-x), var(--nom-y), 0)
      scale(1.02) rotate(var(--nom-rot));
  }
}

.hero-slider-shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2rem;
  isolation: isolate;
  background: #080808;
  box-shadow:
    0 25px 50px -12px rgb(0 0 0 / 0.25),
    0 0 26px rgba(254, 203, 0, 0.12);
}

.hero-slider-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 2400ms var(--motion-ease),
    transform 2400ms var(--motion-ease),
    filter 2400ms var(--motion-ease);
  filter: saturate(1.04) contrast(1.02);
}

.hero-slider-image.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.26)),
    linear-gradient(135deg, rgba(254, 203, 0, 0.16), rgba(254, 203, 0, 0) 48%);
  pointer-events: none;
}

.hero-slider-status {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(254, 203, 0, 0.26);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff4c1;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.cake-crumb,
.cake-nom {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 35;
}

.cake-crumb {
  width: var(--crumb-size, 9px);
  height: var(--crumb-size, 9px);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff4c1 0%, #fecb00 42%, #ac7a00 100%);
  box-shadow: 0 0 12px rgba(254, 203, 0, 0.45);
  animation: crumbPop var(--crumb-duration, 760ms) cubic-bezier(0.13, 0.68, 0.18, 1) forwards;
}

.cake-nom {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.68rem, 1.6vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff4c1;
  text-shadow:
    0 0 10px rgba(254, 203, 0, 0.44),
    0 0 20px rgba(254, 203, 0, 0.2);
  animation: nomRise var(--nom-duration, 940ms) cubic-bezier(0.14, 0.78, 0.2, 1) forwards;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-subcopy {
    color: transparent;
    background-image: linear-gradient(90deg, #bdbdbd 0%, #fff4c1 45%, #bdbdbd 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation:
      subCopyRise 920ms var(--motion-ease) 620ms forwards,
      subCopyShimmer 8.5s linear infinite 1.2s;
  }
}

.fab-float {
  animation: floatY 3.6s ease-in-out infinite;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.98);
  transition:
    opacity 700ms var(--motion-ease),
    transform 700ms var(--motion-ease);
  will-change: opacity, transform;
}

[data-reveal='left'] {
  transform: translate3d(-36px, 0, 0) scale(0.98);
}

[data-reveal='right'] {
  transform: translate3d(36px, 0, 0) scale(0.98);
}

[data-reveal='zoom'] {
  transform: translate3d(0, 24px, 0) scale(0.9);
}

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

.js-parallax {
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform 220ms ease-out;
}

body.music-playing #audioBtnCard {
  animation: pulseHalo 1.6s ease-in-out infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.5);
  }

  50% {
    transform: scaleY(1.4);
  }
}

.waveBar {
  transform-origin: bottom;
  transition: background-color 0.3s;
}

.playing .waveBar {
  background-color: #fecb00 !important;
  animation: wave 0.8s ease-in-out infinite;
}

.playing .waveBar:nth-child(odd) {
  animation-delay: 0.1s;
}

.playing .waveBar:nth-child(3n) {
  animation-delay: 0.25s;
}

.playing .waveBar:nth-child(5n) {
  animation-delay: 0.4s;
}

@keyframes digitPulse {
  0%,
  100% {
    transform: translateY(0);
    text-shadow:
      0 0 10px rgba(254, 203, 0, 0.25),
      0 0 20px rgba(254, 203, 0, 0.12);
  }

  50% {
    transform: translateY(-2px);
    text-shadow:
      0 0 12px rgba(254, 203, 0, 0.45),
      0 0 26px rgba(254, 203, 0, 0.2);
  }
}

.countdown-card {
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(254, 203, 0, 0.08);
}

.countdown-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -88px;
  top: -88px;
  border-radius: 9999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(254, 203, 0, 0.24) 0%, rgba(254, 203, 0, 0) 72%);
}

.countdown-unit {
  border: 1px solid rgba(254, 203, 0, 0.26);
  border-radius: 0.85rem;
  padding: 0.8rem 0.6rem 0.7rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(254, 203, 0, 0.12) 0%, rgba(254, 203, 0, 0.04) 20%, rgba(0, 0, 0, 0.6) 100%);
}

.countdown-value {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fecb00;
  animation: digitPulse 2.2s ease-in-out infinite;
}

.countdown-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
}

#countdownStatus {
  min-height: 1.1rem;
}

@media (prefers-reduced-motion: reduce) {
  .nav-breathe,
  .confetti-overlay,
  .ambient-orb,
  .fab-float,
  body.music-playing #audioBtnCard,
  .playing .waveBar,
  .countdown-value,
  .shooting-star,
  .hero-title::before,
  .hero-line,
  .hero-line::after,
  .hero-21,
  .hero-subcopy,
  .mini-confetti,
  .hero-slider-image,
  .cake-crumb,
  .cake-nom {
    animation: none !important;
  }

  .hero-line,
  .hero-subcopy {
    opacity: 1;
    filter: none;
  }

  [data-reveal] {

  .hero-slider-image {
    transition: none;
    transform: none;
  }
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js-parallax {
    transform: none !important;
    transition: none;
  }

  .bg-atmosphere::before,
  .bg-atmosphere::after,
  .scroll-progress-fill {
    transform: none !important;
    transition: none !important;
  }
}
