:root {
  color-scheme: dark;
  --bg: #07110f;
  --panel: #10241e;
  --text: #f7f2e8;
  --muted: #b6c6b7;
  --accent: #7adf85;
  --accent-2: #2f7a57;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Courier New', Courier, monospace;
  background: linear-gradient(135deg, var(--bg), #0f241d);
  color: var(--text);
  line-height: 1.75;
}

.hero__content {
  font-family: 'Courier New', Courier, monospace;
}

.hero__content h1 {
  letter-spacing: -0.04em;
  font-weight: 700;
}

img {
  max-width: 100%;
  display: block;
}

.hero,
.section,
footer {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 1rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
}

.lead,
.playlist__intro,
.card p,
footer p {
  color: var(--muted);
}

.lead--strong {
  font-weight: 700;
}

.lead--spaced {
  margin: 3rem 0;
}

.playlist-card {
  margin-top: 1rem;
  border: 1px solid rgba(122, 223, 133, 0.18);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(16, 36, 30, 0.95);
}

.playlist-card a {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--accent);
  text-decoration: none;
}

.playlist-card img {
  width: 160px;
  min-height: 90px;
  border-radius: 0.75rem;
  object-fit: cover;
}

.playlist-card__details h3 {
  margin: 0 0 0.3rem;
  color: #fff;
}

.playlist-card__details p {
  margin: 0;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #07110f;
  text-decoration: none;
  font-weight: 700;
}

.hero__actions .button--dark {
  background-color: #000;
  color: #7adf85;
  border: 2px solid #7adf85;
  box-shadow: inset 0 0 0 1px rgba(122, 223, 133, 0.25);
}

.hero__actions .button--dark:hover,
.hero__actions .button--dark:focus {
  background-color: #000;
  color: #7adf85;
  border-color: #7adf85;
}

.button--secondary {
  display: inline-flex;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(122, 223, 133, 0.55);
  transition: background 0.2s ease, color 0.2s ease;
}

.button--secondary:hover {
  background: rgba(122, 223, 133, 0.12);
}

.hero__image {
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.hero__image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.hero__content {
  padding: 0 0.25rem 0.25rem;
}

.hero__content .lead {
  margin: 0 0 0.5rem;
}

.section {
  padding: 2rem 0 1rem;
}

.section__header {
  margin-bottom: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  background: rgba(16, 36, 30, 0.95);
  border: 1px solid rgba(122, 223, 133, 0.18);
  border-radius: 1rem;
  padding: 1.25rem;
}

.card a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.section--playlist {
  padding-bottom: 3rem;
}

.video-frame {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(122, 223, 133, 0.18);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  padding: 0 0 2rem;
  text-align: center;
}

@media (max-width: 760px) {
  .hero__image img {
    height: 420px;
  }

  .hero__content {
    padding: 0 0.1rem 0.1rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
