/* ============================================================
   CIRCLE STREAM — Section 2 canvas animation styles
   ============================================================ */

#cs-wrap {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 100vh;
	isolation: isolate;
	overflow: hidden;
}

#cs-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	pointer-events: auto;
	cursor: default;
	z-index: 1;
	transition: opacity 0.6s ease;
}
#cs-canvas.cs-grab     { cursor: grab; }
#cs-canvas.cs-dragging { cursor: grabbing; }

/* ── Overlay 1: heading + copy + CTA + hint ── */
#cs-content-overlay {
	position: absolute;
	top: 6vh;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	justify-content: center;
	pointer-events: none;
}
#cs-content-overlay > * {
	pointer-events: auto;
}

/* ── Overlay 2: existing #section-filters pinned to the bottom of the stream ── */
#cs-wrap #section-filters {
	position: absolute;
	bottom: 5vh;
	left: 0;
	right: 0;
	z-index: 10;
	margin: 0;
}

#cs-tooltip {
	position: fixed;
	display: none;
	background: #fff;
	border-radius: 13px;
	padding: 10px 16px;
	width: 234px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
	pointer-events: auto;
	z-index: 20;
	cursor: default;
}
#cs-tooltip::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 28px;
	border: 10px solid transparent;
	border-bottom-color: #fff;
	border-top: none;
}
#cs-tooltip .tt-name {
	font-weight: 700;
	font-size: 15px;
	color: #80286d;
	margin-bottom: 3px;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
}
#cs-tooltip .tt-name:hover { color: #5a1a4e; }
#cs-tooltip .tt-desig { font-size: 13px; color: #555; margin-bottom: 2px; }
#cs-tooltip .tt-loc   { font-size: 13px; color: #888; }
