:root {
  --black: #030201;
  --black-soft: #0b0603;
  --gold: #d8a642;
  --gold-light: #f7d78a;
  --orange: #ff5a08;
  --orange-soft: #ff8c1a;
  --cream: #fff2d2;
  --muted: rgba(255, 242, 210, 0.72);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.14);
  --line: rgba(247, 215, 138, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 90, 8, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 30%, rgba(216, 166, 66, 0.14), transparent 28rem),
    linear-gradient(180deg, #030201, #090603 45%, #030201);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--orange);
  color: white;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050302;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), var(--orange));
  border-radius: 999px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 999;
  background: linear-gradient(90deg, var(--orange), var(--gold-light));
  box-shadow: 0 0 18px rgba(255, 140, 26, 0.8);
}

.header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 76px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 5, 2, 0.55);
  backdrop-filter: blur(22px);
  box-shadow: 0 14px 55px rgba(0, 0, 0, 0.44);
  transition: 0.3s ease;
}

.header.scrolled {
  background: rgba(8, 5, 2, 0.88);
  border-color: rgba(247, 215, 138, 0.4);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(247, 215, 138, 0.45);
}

.brand strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand span {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.desktop-nav {
  display: none;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(247, 215, 138, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 242, 210, 0.78);
  font-size: 0.85rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.desktop-nav a:hover {
  color: white;
  background: rgba(247, 215, 138, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn,
.menu-btn {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.lang-btn {
  width: 46px;
  height: 42px;
  border-radius: 999px;
  font-weight: 900;
}

.menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 999px;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88vw, 380px);
  z-index: 200;
  padding: 80px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(7, 4, 2, 0.94);
  border-left: 1px solid var(--line);
  backdrop-filter: blur(26px);
  transform: translateX(105%);
  transition: 0.35s ease;
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.52);
}

.mobile-menu.open {
  transform: translateX(0);
}

.close-menu {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 2rem;
  line-height: 1;
}

.mobile-menu a {
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(247, 215, 138, 0.16);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 134px 0 70px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(1.15) contrast(1.1);
  transform: scale(1.05);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, transparent, rgba(3, 2, 1, 0.78) 68%),
    linear-gradient(90deg, rgba(3, 2, 1, 0.96), rgba(3, 2, 1, 0.5), rgba(3, 2, 1, 0.9));
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-title {
  max-width: 980px;
  margin: 0;
  font-family: "Bangers", "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 15vw, 10rem);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.hero-title span {
  display: block;
  background: linear-gradient(180deg, #fff2d2 0%, var(--gold-light) 28%, var(--orange) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title em {
  display: block;
  margin-top: 10px;
  font-family: "Lobster", cursive;
  font-size: clamp(2.2rem, 8vw, 5.2rem);
  line-height: 0.92;
  text-transform: none;
  letter-spacing: 0;
  color: #ffffff;
  text-shadow:
    0 4px 0 rgba(255, 90, 8, 0.28),
    0 18px 42px rgba(0, 0, 0, 0.55);
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.primary {
  color: #160801;
  background: linear-gradient(135deg, var(--orange), var(--gold-light));
  box-shadow: 0 18px 50px rgba(255, 92, 8, 0.28);
}

.secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.stats {
  max-width: 640px;
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stats div {
  padding: 16px 12px;
  border: 1px solid rgba(247, 215, 138, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.stats strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.9rem, 6vw, 3rem);
  color: var(--gold-light);
  line-height: 1;
}

.stats span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.mobile-dock {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 120;
  width: min(calc(100% - 24px), 440px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(5, 3, 1, 0.74);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
}

.mobile-dock a {
  min-height: 54px;
  display: grid;
  place-items: center;
  gap: 3px;
  border-radius: 20px;
  color: rgba(255, 242, 210, 0.82);
}

.mobile-dock a:hover {
  color: #140801;
  background: linear-gradient(135deg, var(--orange), var(--gold-light));
}

.mobile-dock small {
  font-size: 0.68rem;
  font-weight: 900;
}

.section {
  padding: clamp(74px, 10vw, 130px) 0;
}

.split {
  display: grid;
  gap: 34px;
}

.section-copy h2,
.section-heading h2,
.legacy-card h2 {
  margin: 0;
  font-family: "Bangers", "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 9vw, 6.3rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.section-copy p:not(.section-label),
.section-heading p:not(.section-label),
.legacy-card p:not(.section-label) {
  color: var(--muted);
  line-height: 1.8;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.section-heading .section-label::before {
  display: none;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.glass-card {
  border: 1px solid rgba(247, 215, 138, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    linear-gradient(180deg, rgba(255, 90, 8, 0.08), transparent);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.cards-grid .glass-card {
  min-height: 200px;
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.cards-grid .glass-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #150801;
  background: linear-gradient(135deg, var(--gold-light), var(--orange));
  font-weight: 900;
}

.glass-card h3 {
  margin: 22px 0 10px;
}

.glass-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.formats-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 90, 8, 0.16), transparent 26rem),
    radial-gradient(circle at 80% 70%, rgba(216, 166, 66, 0.12), transparent 26rem);
}

.formats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 215, 138, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 215, 138, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
  pointer-events: none;
}

.formats-grid {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  display: grid;
  gap: 18px;
}

.format-card {
  position: relative;
  min-height: 320px;
  display: grid;
  align-content: space-between;
  padding: 26px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(247, 215, 138, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 20% 10%, rgba(255, 90, 8, 0.18), transparent 18rem);
  backdrop-filter: blur(24px);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.format-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247, 215, 138, 0.5);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(255, 90, 8, 0.16);
}

.featured-format {
  background:
    linear-gradient(145deg, rgba(255, 90, 8, 0.22), rgba(255, 255, 255, 0.055)),
    radial-gradient(circle at 70% 15%, rgba(247, 215, 138, 0.24), transparent 18rem);
}

.format-number {
  position: relative;
  z-index: 1;
  font-family: "Bangers", sans-serif;
  font-size: clamp(4rem, 14vw, 7rem);
  line-height: 0.8;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 215, 138, 0.72);
  text-shadow: 0 0 32px rgba(255, 90, 8, 0.24);
}

.format-content {
  position: relative;
  z-index: 1;
}

.format-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #180801;
  background: linear-gradient(135deg, var(--gold-light), var(--orange));
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.format-card h3 {
  margin: 0 0 16px;
  font-family: "Lobster", cursive;
  font-size: clamp(2.1rem, 7vw, 3.4rem);
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.format-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.format-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.format-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
}

.formats-note {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(247, 215, 138, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.formats-note span {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #160801;
  background: linear-gradient(135deg, var(--orange), var(--gold-light));
  box-shadow: 0 0 26px rgba(255, 90, 8, 0.28);
}

.formats-note p {
  margin: 0;
  color: var(--cream);
  font-weight: 900;
  line-height: 1.55;
}

.music-section {
  background:
    radial-gradient(circle at 50% 45%, rgba(216, 166, 66, 0.12), transparent 26rem),
    linear-gradient(180deg, transparent, rgba(255, 90, 8, 0.045), transparent);
}

.player {
  margin-top: 36px;
  display: grid;
  gap: 22px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid rgba(247, 215, 138, 0.18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 22% 18%, rgba(255, 90, 8, 0.2), transparent 20rem);
  backdrop-filter: blur(28px);
  box-shadow: var(--shadow);
}

.vinyl-box {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
}

.vinyl {
  width: min(62vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(247, 215, 138, 0.12) 0 11%, transparent 12%),
    repeating-radial-gradient(circle at center, #171310 0 4px, #090705 5px 9px);
  border: 1px solid rgba(247, 215, 138, 0.2);
  box-shadow:
    inset 0 0 0 12px rgba(0, 0, 0, 0.35),
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 42px rgba(216, 166, 66, 0.18);
  animation: spin 9s linear infinite;
  animation-play-state: paused;
}

.vinyl.playing {
  animation-play-state: running;
}

.vinyl img {
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(247, 215, 138, 0.45);
}

.bars {
  position: absolute;
  bottom: 18px;
  display: flex;
  align-items: end;
  gap: 7px;
  height: 52px;
}

.bars span {
  width: 8px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(var(--gold-light), var(--orange));
  opacity: 0.55;
  animation: bars 0.9s ease-in-out infinite alternate;
  animation-play-state: paused;
}

.bars.playing span {
  animation-play-state: running;
}

.bars span:nth-child(2) {
  height: 28px;
  animation-delay: 0.12s;
}

.bars span:nth-child(3) {
  height: 42px;
  animation-delay: 0.24s;
}

.bars span:nth-child(4) {
  height: 24px;
  animation-delay: 0.36s;
}

.bars span:nth-child(5) {
  height: 34px;
  animation-delay: 0.48s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bars {
  to {
    transform: scaleY(1.55);
    opacity: 1;
  }
}

.player-controls {
  padding: clamp(16px, 3vw, 28px);
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(247, 215, 138, 0.14);
}

.player-controls p {
  margin: 0 0 8px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 900;
}

.player-controls h3 {
  margin: 0 0 18px;
  font-size: clamp(1.25rem, 5vw, 2.2rem);
}

.track-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 18px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(247, 215, 138, 0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  backdrop-filter: blur(18px);
}

.track-dot {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold-light) 0 18%, transparent 19%),
    repeating-radial-gradient(circle, #171310 0 4px, #090705 5px 9px);
  border: 1px solid rgba(247, 215, 138, 0.35);
  box-shadow: 0 0 28px rgba(255, 90, 8, 0.22);
}

.track-card strong {
  display: block;
  color: var(--cream);
  font-weight: 900;
}

.track-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.playlist {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

.playlist-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(247, 215, 138, 0.14);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.055);
  text-align: left;
  transition: 0.25s ease;
}

.playlist-item:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 215, 138, 0.38);
  background: rgba(255, 255, 255, 0.09);
}

.playlist-item.active {
  border-color: rgba(247, 215, 138, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 90, 8, 0.22), rgba(255, 255, 255, 0.07));
  box-shadow: 0 0 28px rgba(255, 90, 8, 0.14);
}

.playlist-item span {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #160801;
  background: linear-gradient(135deg, var(--orange), var(--gold-light));
  font-size: 0.8rem;
  font-weight: 900;
}

.playlist-item strong {
  display: block;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 900;
}

.playlist-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.control-buttons {
  margin: 28px 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.control-buttons button {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.control-buttons button:not(.play) {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  font-weight: 900;
}

.control-buttons .play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #120804;
  background: linear-gradient(135deg, var(--orange), var(--gold-light));
  box-shadow: 0 0 36px rgba(255, 90, 8, 0.32);
  font-size: 1.4rem;
}

.progress-wrap,
.volume-wrap {
  display: grid;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.progress-wrap {
  grid-template-columns: auto 1fr auto;
}

.volume-wrap {
  grid-template-columns: auto 1fr;
  margin-top: 18px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
}

.gallery-grid {
  margin-top: 36px;
  display: grid;
  gap: 16px;
}

.poster {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(247, 215, 138, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.poster img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: 0.75s ease;
}

.poster:hover img {
  transform: scale(1.07);
  filter: saturate(1.1) contrast(1.08);
}

.poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at 30% 10%, rgba(255, 90, 8, 0.2), transparent 18rem);
}

.poster::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(247, 215, 138, 0.28);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.poster figcaption {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(247, 215, 138, 0.18);
  border-radius: 20px;
  background: rgba(5, 3, 1, 0.44);
  backdrop-filter: blur(16px);
}

.poster figcaption strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

.poster figcaption span {
  color: var(--muted);
  font-size: 0.88rem;
}

.legacy {
  padding-top: 20px;
}

.legacy-card {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: clamp(20px, 4vw, 40px);
  border: 1px solid rgba(247, 215, 138, 0.18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 80% 10%, rgba(255, 90, 8, 0.12), transparent 22rem);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.legacy-card img {
  width: min(54vw, 220px);
  border-radius: 50%;
  border: 1px solid rgba(247, 215, 138, 0.32);
  box-shadow: 0 0 55px rgba(216, 166, 66, 0.18);
}

.booking {
  background:
    radial-gradient(circle at 15% 72%, rgba(255, 90, 8, 0.14), transparent 24rem),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-links a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(247, 215, 138, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  font-weight: 900;
}

.form {
  padding: clamp(18px, 4vw, 32px);
}

.form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid rgba(247, 215, 138, 0.18);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--cream);
  outline: none;
  padding: 14px 15px;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: rgba(247, 215, 138, 0.54);
  box-shadow: 0 0 0 4px rgba(216, 166, 66, 0.12);
}

.form textarea {
  resize: vertical;
}

.form .btn {
  width: 100%;
  border: none;
}

.footer {
  padding: 34px 0 112px;
  border-top: 1px solid rgba(247, 215, 138, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
  display: grid;
  gap: 12px;
  text-align: center;
  color: var(--muted);
}

.footer strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--cream);
}

.designer a {
  color: var(--gold-light);
  font-weight: 900;
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 160;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px 9px 10px;
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.98), rgba(18, 176, 75, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.5), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45),
    0 0 34px rgba(37, 211, 102, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  overflow: visible;
  isolation: isolate;
  animation: whatsappFloat 3.2s ease-in-out infinite;
}

.whatsapp::before,
.whatsapp::after,
.whatsapp-pulse {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, 0.52);
  opacity: 0;
  z-index: -1;
  animation: whatsappPulse 2.4s ease-out infinite;
}

.whatsapp::after {
  animation-delay: 0.8s;
}

.whatsapp-pulse {
  inset: -15px;
  border-color: rgba(37, 211, 102, 0.32);
  animation-delay: 1.5s;
}

.whatsapp-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.5), transparent 25%),
    rgba(0, 0, 0, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 10px 22px rgba(0, 0, 0, 0.22);
}

.whatsapp-icon svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.whatsapp-text {
  display: grid;
  line-height: 1.05;
  padding-right: 2px;
}

.whatsapp-text strong {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.whatsapp-text small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp:active {
  transform: scale(0.97);
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.88);
    opacity: 0.75;
  }

  70% {
    transform: scale(1.28);
    opacity: 0;
  }

  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}

@keyframes whatsappFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 680px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense;
  }

  .poster.tall {
    grid-row: span 2;
  }

  .poster.wide {
    grid-column: span 2;
    min-height: 430px;
  }

  .legacy-card {
    grid-template-columns: auto 1fr;
  }
}

@media (min-width: 760px) {
  .formats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-format {
    transform: translateY(-16px);
  }

  .featured-format:hover {
    transform: translateY(-24px);
  }
}

@media (min-width: 920px) {
  .header {
    top: 18px;
    left: 28px;
    right: 28px;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .split {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
  }

  .player {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
  }

  .poster {
    min-height: 390px;
  }

  .poster.tall {
    min-height: 798px;
  }

  .mobile-dock {
    display: none;
  }

  .footer {
    padding-bottom: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
  }

  .designer {
    text-align: right;
  }

  .whatsapp {
    bottom: 20px;
  }
}

@media (max-width: 420px) {
  .header {
    height: 68px;
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 1.1rem;
  }

  .brand span {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .format-card {
    min-height: 280px;
    padding: 22px;
  }

  .formats-note {
    align-items: flex-start;
  }

  .whatsapp {
    width: 62px;
    height: 62px;
    min-height: 62px;
    padding: 8px;
    justify-content: center;
    bottom: 92px;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
}