:root {
  color-scheme: dark;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --bg: #050309;
  --fg: #e7e5ee;
  --muted: rgb(226, 225, 234);
  --border: rgba(255, 255, 255, 0.2);
  --accent: #f8f5f0;
  --radius-btn: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #0d0b14;
  color: var(--fg);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  min-height: 100vh;
  padding: 72px 24px 120px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background-color: rgb(24, 23, 28);
}


.page::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 3, 9, 0.85), rgba(10, 8, 18, 0.8));
  z-index: -1;
}

.stack {
  width: min(640px, 100%);
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.card {
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  gap: 24px;
}

.profile {
  align-items: stretch;
  text-align: left;
  gap: 32px;
}

.profile-avatar {
  width: 128px;
  height: 128px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.profile-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.handle {
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.subtitle {
  font-size: 1.4rem;
  color: var(--muted);
  margin-top: 0.0rem;
  margin-bottom: 3rem;
}

.profile-banner {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.bio {
  margin-top: 0.0rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.section-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eyebrow {
  text-transform: lowercase;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--fg);
}

.description {
  margin-top: 0.0rem;
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.video-grid {
  display: grid;
  gap: 20px;
}

.video-grid.single {
  grid-template-columns: 1fr;
}

.video-grid.multi {
  grid-template-columns: 1fr;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
}

.video-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(68, 66, 66, 0.35);
  font-weight: 500;
  background: rgba(23, 23, 23, 1);
  color: var(--fg);
  transition: border-color 0.2s ease;
}

.btn:hover {
  border-color: #676767;
}

.btn-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

.social {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footnote {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .page {
    padding: 48px 16px 80px;
  }

  .stack {
    gap: 40px;
  }

  .profile {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-avatar {
    width: 104px;
    height: 104px;
  }

  .video-card {
    padding-bottom: 20px;
  }
}
