:root {
  color-scheme: light;
  --bg: #222;
  --panel: #292929;
  --border: #333;
  --ink: #ffffff;
  --muted: #c6c6c6;
  --accent: #333;
  --accent-hover: #444;
  --thumb-height: 320px;
  --banner-height: calc(var(--thumb-height) / 2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Arial", "Helvetica", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--banner-height);
  background: url("/Metadata/waved-banner.png") center top / cover no-repeat;
  z-index: 0;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 20px 60px;
  position: relative;
  z-index: 1;
}

.thumbnail {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  background: #1f1f1f;
}

h1 {
  font-size: 28px;
  margin: 0 0 12px;
}

.description {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.coach {
  margin: 0 0 20px;
  font-weight: 600;
  color: var(--muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border: 1px solid #424242;
}

.cta-icon {
  width: 16px;
  height: 16px;
}

.cta:hover {
  background: var(--accent-hover);
}

@media (max-width: 640px) {
  :root {
    --thumb-height: 220px;
  }
}
