/* ── STREAMER PAGE ── */

.streamer-banner {
  text-align: center;
  padding: 22px 24px;
  border-color: rgba(176,40,64,0.25);
  margin-bottom: 4px;
}
.banner-vibe {
  font-family: var(--font-gothic);
  font-size: 22px;
  color: var(--c-white);
  text-shadow: 0 0 24px rgba(176,40,64,0.5);
  margin-bottom: 10px;
}
.banner-text {
  font-size: 12.5px;
  color: var(--c-linen);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

.streamer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

/* SOLO BODY — no scroll cap, shows full text */
.solo-body p {
  font-size: 12px;
  color: var(--c-ash);
  line-height: 1.8;
}

/* ROLES */
.roles-list { display: flex; flex-direction: column; gap: 0; }
.role-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid rgba(184,176,184,0.07);
}
.role-item:last-child { border-bottom: none; }
.role-dot {
  width: 5px; height: 5px;
  background: var(--c-crimson);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--c-crimson);
  flex-shrink: 0;
  margin-top: 6px;
}
.role-item strong {
  font-family: var(--font-cine);
  font-size: 11.5px;
  color: var(--c-frost);
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}
.role-item p { font-size: 11px; color: var(--c-stone); line-height: 1.6; }

/* STREAM GENRES */
.stream-genres {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-bottom: 4px;
}
.genre-tag {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--c-linen);
  background: rgba(96,72,120,0.2);
  border: 1px solid rgba(128,112,168,0.2);
  padding: 3px 9px;
  border-radius: 1px;
}

/* PLATFORMS */
.platform-list { display: flex; flex-direction: column; gap: 4px; }
.platform-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px;
  color: var(--c-ash);
  text-decoration: none;
  padding: 5px 0;
  border-bottom: 1px solid rgba(184,176,184,0.06);
  transition: color var(--transition);
}
.platform-item:last-child { border-bottom: none; }
.platform-item:hover { color: var(--c-frost); }
.plat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* GOALS */
.goals-list { display: flex; flex-direction: column; gap: 0; }
.goal-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(184,176,184,0.06);
  font-size: 11.5px;
  color: var(--c-stone);
}
.goal-item:last-child { border-bottom: none; }
.goal-item.done { color: var(--c-ash); }
.goal-icon {
  font-size: 9px;
  color: var(--c-muted);
  flex-shrink: 0;
  width: 12px;
  text-align: center;
}
.goal-item.done .goal-icon { color: var(--c-crimson); }

/* INTERESTS */
.interests-list { display: flex; flex-direction: column; gap: 0; }
.interest-item {
  padding: 6px 0 6px 14px;
  border-bottom: 1px solid rgba(184,176,184,0.06);
  font-size: 11.5px;
  color: var(--c-ash);
  position: relative;
}
.interest-item::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-lavender);
}
.interest-item:last-child { border-bottom: none; }

/* TEASE CARD */
.tease-card {
  margin-top: 10px;
  border-color: rgba(176,40,64,0.2);
  background: rgba(28,14,20,0.65);
}
.tease-label {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 0.26em;
  color: var(--c-crimson);
  margin-bottom: 12px;
}
.tease-content {
  display: flex; gap: 16px; align-items: center;
}
.tease-icon {
  font-size: 28px;
  color: var(--c-crimson);
  opacity: 0.7;
  flex-shrink: 0;
  animation: orb-breathe 3s ease-in-out infinite;
}
.tease-title {
  font-family: var(--font-cine);
  font-size: 13px;
  color: var(--c-frost);
  margin-bottom: 4px;
  font-weight: 600;
}
.tease-text {
  font-size: 11.5px;
  color: var(--c-stone);
  font-style: italic;
  line-height: 1.7;
}

.cursor-glow {
  position: fixed; z-index: 9001; pointer-events: none;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,40,64,0.07) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  mix-blend-mode: screen;
  transition: left 0.08s ease, top 0.08s ease;
}

@keyframes orb-breathe {
  0%,100% { opacity:0.7; transform:scale(1); }
  50% { opacity:1; transform:scale(1.1); }
}
