:root {
  --bg: #070707;
  --panel: #0b0b0b;
  --text: #f7f3f4;
  --muted: #aaa2a5;
  --accent-a: #8d1635;
  --accent-b: #d13b6f;
  --ring: rgba(255,255,255,.75);
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 20%, rgba(112, 21, 49, .12), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.shell {
  width: min(100%, 560px);
  min-height: 100svh;
  margin: 0 auto;
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 0 70px rgba(0,0,0,.55);
}

.hero {
  position: relative;
  display: block;
  height: 58svh;
  min-height: 430px;
  max-height: 700px;
  overflow: hidden;
  background: #111;
  text-decoration: none;
  border-bottom: 2px solid var(--panel);
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  display: block;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}


.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 88px;
  height: 88px;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
  pointer-events: none;
  animation: play-breathe 1.8s ease-in-out infinite;
}

.play-badge::before,
.play-badge::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid rgba(255,255,255,.42);
  border-radius: 50%;
  opacity: 0;
  transform: scale(1);
  animation: play-ripple 1.8s ease-out infinite;
}

.play-badge::after {
  animation-delay: .55s;
}

.play-triangle {
  display: block;
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid rgba(255,255,255,.98);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.2));
}

@keyframes play-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.055); }
}

@keyframes play-ripple {
  0% {
    opacity: .55;
    transform: scale(1);
  }
  75%, 100% {
    opacity: 0;
    transform: scale(1.42);
  }
}


.hero-shade {
  position: absolute;
  inset: auto 0 -2px;
  height: calc(44% + 2px);
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(11,11,11,.22) 32%, var(--panel) 100%);
}

.content {
  position: relative;
  z-index: 2;
  margin-top: calc(-1.4rem - 2px);
  padding: 0 1.35rem max(1.5rem, env(safe-area-inset-bottom));
  text-align: center;
}

h1 {
  margin: 0;
  font-family: "Manrope", "DM Sans", system-ui, sans-serif;
  font-size: clamp(2.9rem, 13vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 800;
  text-shadow: 0 4px 24px rgba(0,0,0,.36);
}

.handle {
  margin: .75rem 0 1.9rem;
  color: #cac1c4;
  font-size: .9rem;
  letter-spacing: .28em;
  font-weight: 500;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(1.15rem, 5vw, 1.45rem);
  letter-spacing: .05em;
  background: linear-gradient(100deg, var(--accent-a), var(--accent-b));
  box-shadow: 0 12px 34px rgba(174, 33, 82, .26), inset 0 1px 0 rgba(255,255,255,.14);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.cta:active { transform: scale(.985); }

.microcopy {
  margin: .85rem 0 1.75rem;
  color: var(--muted);
  font-size: .9rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: .6rem;
  color: #8f898b;
  font-size: .82rem;
}

.socials a {
  text-decoration: none;
  text-underline-offset: 3px;
}

footer {
  margin-top: 1.5rem;
  color: #635f60;
  font-size: .7rem;
  letter-spacing: .18em;
}

a:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 4px;
}

@media (hover:hover) {
  .hero:hover img {
    transform: scale(1.035);
    filter: brightness(.95);
  }

  .hero:hover .play-badge {
    background: rgba(255,255,255,.14);
  }

  .cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 16px 40px rgba(174, 33, 82, .32), inset 0 1px 0 rgba(255,255,255,.14);
  }

  .socials a:hover { text-decoration: underline; }
}

@media (min-width: 700px) {
  body { padding: 2rem 0; }
  .shell {
    min-height: auto;
    border-radius: 28px;
  }
  .hero { height: 640px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
