/* ============================================================
   MUSIC.CSS — Music / Videos page
   ============================================================ */

/* ── Page hero ── */
.music-hero {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.music-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,201,240,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.music-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 10rem);
  line-height: 0.88;
  color: var(--text);
  animation: fade-in 0.5s var(--ease-out) both;
}

.music-hero__sub {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
  animation: fade-in 0.5s var(--ease-out) 0.15s both;
}

/* ── Featured video ── */
.featured-video {
  padding-block: var(--section-py);
  background: var(--bg);
}

.featured-video__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem 4rem;
  align-items: center;
}

.featured-video__meta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.featured-video__desc {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 40ch;
}

/* ── Video grid ── */
.video-section {
  padding-block: var(--section-py);
  background: linear-gradient(to bottom, var(--bg), var(--surface) 30%, var(--bg));
  border-top: 1px solid var(--border);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.video-card .yt-embed {
  border-radius: 0;
  border: none;
}

.video-card__info {
  padding: 0.85rem 1rem;
}

.video-card__title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-card__sub {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 3px;
}

/* ── Streaming section ── */
.streaming-section {
  padding-block: var(--section-py);
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}

.streaming-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}

.streaming-section p {
  color: var(--text-2);
  margin-bottom: 2.5rem;
  margin-inline: auto;
}

.streaming-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.streaming-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.7em 1.4em;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  background: var(--surface);
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, transform 200ms var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}

@media (hover: hover) and (pointer: fine) {
  .streaming-link:hover {
    color: var(--text);
    border-color: var(--border-2);
    background: var(--surface-2);
    transform: translateY(-2px);
  }
}

.streaming-link:active { transform: scale(0.97); }

.streaming-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .featured-video__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
}
