.prank-dialog.prank-dialog--move-left {
  transform: translate(-140%, -10%);
}

.prank-dialog.prank-dialog--move-right {
  transform: translate(40%, 20%);
}

.prank-dialog.prank-dialog--move-down {
  transform: translate(-50%, 40%);
}

.prank-dialog.prank-dialog--move-up {
  transform: translate(-60%, -40%);
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: #1b1b1d;
  background: linear-gradient(135deg, #f5f7ff 0%, #ffefff 50%, #f7fff2 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse at top left, rgba(255, 99, 132, 0.25), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.25), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.18), transparent 52%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: rgba(27, 27, 29, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar a {
  color: #f0f0f4;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.navbar a:hover,
.navbar a:focus {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 2.5rem;
  padding: 6rem 8vw;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__text h1 {
  font-size: clamp(2.8rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero__text p {
  line-height: 1.7;
  max-width: 38ch;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: #fb7185;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero__eyebrow::before {
  content: "★";
  color: #facc15;
  font-size: 1rem;
}

.hero__img img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: 0 25px 45px rgba(66, 50, 85, 0.25);
}

.hero__vibes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
}

.hero__badge {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.9), rgba(248, 113, 113, 0.9));
  color: #0f172a;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 12px 25px rgba(251, 191, 36, 0.35);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.85rem 2rem;
  background: #22c55e;
  color: #0f172a;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.35);
}

.btn--ghost {
  background: rgba(15, 23, 42, 0.15);
  color: #111827;
  border: 2px solid rgba(17, 24, 39, 0.35);
  box-shadow: none;
}

.btn--ghost:hover,
.btn--ghost:focus {
  background: rgba(17, 24, 39, 0.25);
  box-shadow: none;
}

.autoplay-consent {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.85);
  z-index: 999;
  padding: 1.5rem;
}

.autoplay-consent[hidden] {
  display: none;
}

.autoplay-consent__window {
  max-width: 420px;
  width: min(90vw, 420px);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
  border: 3px double rgba(139, 92, 246, 0.4);
  animation: pop-in 0.35s ease;
}

.autoplay-consent__window h2 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #312e81;
}

.autoplay-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.85) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.ticker {
  display: block;
  padding: 0.65rem 0;
  background: rgba(17, 24, 39, 0.92);
  color: #f8fafc;
  border-block: 3px solid rgba(236, 72, 153, 0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 8vw;
}

.section--alt {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.section__lead {
  font-size: 1.1rem;
  color: #4b5563;
  max-width: 60ch;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.3);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: -40% -40% 60% 60%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2), transparent 60%);
  transform: rotate(25deg);
  pointer-events: none;
}

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

.gallery figure {
  margin: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12);
  position: relative;
}

.gallery__trigger {
  display: block;
  padding: 0;
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
}

.gallery__trigger:focus-visible {
  outline: 3px solid rgba(34, 197, 94, 0.8);
  outline-offset: 4px;
}

.gallery img {
  width: 100%;
  display: block;
  transition: transform 0.25s ease;
}

.gallery__trigger:hover img,
.gallery__trigger:focus img {
  transform: scale(1.02);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: auto 10% -20% 10%;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(236, 72, 153, 0.25));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery__item:hover::after,
.gallery__item:focus-within::after {
  opacity: 1;
}

.gallery figcaption {
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  color: #475569;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.lightbox__image {
  max-width: min(90vw, 1200px);
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.lightbox__caption {
  color: #e5e7eb;
  font-size: 1rem;
  text-align: center;
  max-width: min(80ch, 90vw);
}

.lightbox__close {
  position: absolute;
  top: clamp(1rem, 4vw, 3rem);
  right: clamp(1rem, 4vw, 3rem);
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f8fafc;
  font-size: 2rem;
  line-height: 1;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox__close:hover,
.lightbox__close:focus {
  background: rgba(148, 163, 184, 0.4);
}

.lightbox[hidden] {
  display: none !important;
}

.no-scroll {
  overflow: hidden;
}

.audio-floating {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f8fafc;
  backdrop-filter: blur(8px);
}

.audio-floating span {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audio-floating audio {
  width: 160px;
}

.audio-floating audio::-webkit-media-controls-panel {
  background: rgba(15, 23, 42, 0.65);
}

.audio-floating audio::-webkit-media-controls-play-button,
.audio-floating audio::-webkit-media-controls-mute-button {
  filter: invert(1);
}

.prank-dialog {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 320px;
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid rgba(251, 191, 36, 0.75);
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(234, 179, 8, 0.35);
  padding: 1.25rem 1.5rem;
  z-index: 300;
  transition: transform 0.3s ease;
}

.prank-dialog[hidden] {
  display: none;
}

.prank-dialog__content {
  text-align: center;
  font-size: 0.95rem;
  color: #1f2937;
  line-height: 1.6;
}

.prank-dialog__btn {
  margin-top: 1rem;
  width: 100%;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  border-left: 3px solid rgba(79, 70, 229, 0.25);
}

.timeline li {
  margin-left: 1.5rem;
  padding: 1rem 0 1rem 1.5rem;
  position: relative;
  color: #334155;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -2.1rem;
  top: 1.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8b5cf6;
  box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.2);
}

.timeline__year {
  display: inline-block;
  font-weight: 700;
  color: #1d4ed8;
  margin-right: 0.75rem;
}

.song {
  background: #111827;
  color: #f9fafb;
  padding: 2.5rem;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
}

.song p {
  line-height: 1.8;
  margin: 0 0 1rem;
}

.song strong {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: #a855f7;
}

.song__note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .navbar {
    flex-wrap: wrap;
  }

  .hero {
    padding: 4rem 6vw;
  }

  .song {
    padding: 2rem;
  }

  .audio-floating {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 1rem;
    width: calc(100% - 2rem);
    justify-content: center;
  }

  .audio-floating audio {
    width: 100%;
  }
}

