:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #eef8f1;
  background: #06100d;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, #153f2d 0%, #091b14 38%, #06100d 72%);
  background-size: 72px 72px, 72px 72px, auto;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.42));
}

.glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  opacity: 0.24;
  filter: blur(90px);
  pointer-events: none;
}

.glow-one {
  top: -18rem;
  left: -12rem;
  background: #48d286;
}

.glow-two {
  right: -18rem;
  bottom: -20rem;
  background: #13795b;
}

.page {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.card {
  align-self: center;
  width: min(100%, 47rem);
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 5rem);
  text-align: center;
  border: 1px solid rgba(205, 255, 222, 0.13);
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(14, 35, 27, 0.82), rgba(6, 16, 13, 0.7));
  box-shadow:
    0 2rem 7rem rgba(0, 0, 0, 0.42),
    inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #a9c7b3;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border: 1px solid rgba(151, 244, 180, 0.42);
  border-radius: 50%;
}

.brand-mark span {
  width: 0.45rem;
  height: 0.72rem;
  border-radius: 90% 0 90% 0;
  background: #75e39d;
  transform: rotate(-28deg);
  box-shadow: 0 0 1.25rem rgba(117, 227, 157, 0.62);
}

.eyebrow {
  margin: clamp(2.5rem, 7vw, 4.25rem) 0 0.8rem;
  color: #72dd99;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 16vw, 8.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-shadow: 0 0.25rem 2.5rem rgba(93, 218, 139, 0.14);
}

.lead {
  max-width: 31rem;
  margin: 1.65rem auto 0;
  color: #aec3b5;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.7;
}

.play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 3.75rem;
  margin-top: 2.3rem;
  padding: 0.8rem 1.6rem;
  color: #07130e;
  font-weight: 780;
  text-decoration: none;
  border-radius: 999px;
  background: #7deaA4;
  box-shadow: 0 0.8rem 2.4rem rgba(75, 213, 126, 0.2);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.play svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.play:hover {
  background: #a2f4bc;
  box-shadow: 0 1rem 3rem rgba(75, 213, 126, 0.3);
  transform: translateY(-2px);
}

.play:focus-visible {
  outline: 3px solid #eef8f1;
  outline-offset: 4px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin-top: 2rem;
  color: #708c7b;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.status i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #6ee79b;
  box-shadow: 0 0 0.8rem #6ee79b;
}

footer {
  margin-top: 1.5rem;
  color: #5e7567;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .page {
    padding: 1rem;
  }

  .card {
    padding: 2rem 1.25rem 2.2rem;
    border-radius: 1.5rem;
  }

  .eyebrow {
    margin-top: 2.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .play {
    transition: none;
  }
}
