body.theme-kb {
  --bg: #0a0710;
  --surface: #150e1e;
  --text: #f3edff;
  --text-muted: #9c8fb5;
  --border: #241a35;
  --accent: #ff2fd0;
  --accent-soft: #2ff0ff;
  --font-display: "Clash Display", sans-serif;
  --font-body: "General Sans", "Inter", sans-serif;
}

.kb-hero {
  position: relative;
  padding: var(--space-32) 0;
  overflow: hidden;
  isolation: isolate;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.kb-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.6;
}

.kb-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,7,16,0.55) 0%, rgba(10,7,16,0.96) 92%);
}

.kb-hero__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 820px) {
  .kb-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .kb-hero__photo { margin: 0 auto; }
}

.kb-hero__photo {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-soft);
  box-shadow: 0 0 60px -10px var(--accent), 0 0 60px -10px var(--accent-soft);
  max-width: 260px;
}

.kb-hero__photo img { width: 100%; height: 100%; object-fit: cover; }

.kb-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: var(--space-2) 0 var(--space-6);
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kb-hero__bio {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.kb-hero__links { display: flex; gap: var(--space-3); flex-wrap: wrap; }

@media (max-width: 820px) { .kb-hero__links { justify-content: center; } }

.theme-kb .btn--outline { border-color: var(--accent-soft); color: var(--text); }
.theme-kb .btn--outline:hover { background: var(--accent-soft); color: var(--bg); }

.theme-kb .section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  margin-bottom: var(--space-12);
}

.stream-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.spotify-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-8);
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
}
.spotify-embed iframe { display: block; border: 0; }

.stream-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

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

.stream-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.stream-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(255,47,208,0.08), rgba(47,240,255,0.08));
}

.stream-card__icon {
  font-size: 1.4rem;
  color: var(--accent-soft);
  width: 2rem;
  text-align: center;
}

.stream-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
}

.theme-kb .footer__col a:hover { color: var(--accent-soft); }
