.container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.container.content-ready { opacity: 1; }

.page-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.main-col { flex: 1; min-width: 0; }

.sidebar-col {
  width: 380px;
  flex-shrink: 0;
  position: sticky;
  top: 32px;
}

.latest-video-mobile-label,
.latest-video-mobile { display: none; }

@media (max-width: 780px) {
  .page-layout { flex-direction: column; }
  .sidebar-col { display: none; }
  .latest-video-mobile-label,
  .latest-video-mobile { display: block; }
}

/* Header */
.header {
  margin-bottom: 48px;
  animation: fadeUp 0.6s ease both;
}

.name-block h1 {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.6px;
  line-height: 1;
}

.name-block .handle {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

.bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 400px;
}

/* Section label */
.section-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  margin-top: 36px;
}

/* Footer */
.footer {
  margin-top: 56px;
  text-align: center;
  font-size: 11px;
  color: #2a2a35;
  animation: fadeUp 0.6s 0.5s ease both;
  transition: color 0.2s;
}

.footer:hover { color: var(--accent); }

/* Back link (music page) */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color 0.2s, gap 0.2s;
}

.back-link:hover { color: var(--text); gap: 10px; }

/* Latest video */
.latest-video-wrap { border-radius: 12px; overflow: hidden; }

.latest-video-loading {
  font-size: 12px;
  color: var(--muted);
  padding: 16px 0;
}

.latest-video-title {
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.latest-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.latest-video-embed:hover {
  box-shadow: 0 0 20px rgba(123, 108, 255, 0.15);
  border-color: var(--border-hover);
}

.latest-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
