/* ==========================================================================
   Tracksyo Modern - design tokens
   ========================================================================== */
:root {
	--bg: #ffffff;
	--bg-alt: #f6f6f8;
	--bg-dark: #0d0e11;
	--bg-dark-soft: #17181d;
	--ink: #15171b;
	--ink-soft: #5b5d63;
	--ink-faint: #8b8d93;
	--border: #e8e8ec;
	--border-dark: #2a2c33;
	--accent: #6a93b0;
	--accent-strong: #4d7391;
	--accent-2: #9b5de5;
	--accent-contrast: #ffffff;
	--radius: 10px;
	--container: 1180px;
	--font-display: "Oswald", Tahoma, Arial, sans-serif;
	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--shadow-sm: 0 1px 2px rgba(15, 17, 20, 0.06);
	--shadow-md: 0 8px 24px rgba(15, 17, 20, 0.10);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--bg);
	font-size: 16px;
	line-height: 1.6;
}
img, video, iframe { max-width: 100%; display: block; }
a { color: var(--accent-strong); text-decoration: none; }
a:hover { color: var(--accent); }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.2;
	margin: 0 0 0.5em;
	color: var(--ink);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; box-sizing: border-box; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.85rem;
	padding: 0.85em 1.6em;
	border-radius: 999px;
	border: 1px solid transparent;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
	color: var(--accent-contrast);
	box-shadow: 0 10px 28px -8px rgba(106, 147, 176, 0.6);
	transition: box-shadow 0.25s ease, transform 0.25s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 14px 34px -8px rgba(155, 93, 229, 0.65); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,0.1); color: #fff; box-shadow: none; }
.btn--outline { background: transparent; border-color: var(--border); color: var(--ink); box-shadow: none; }
.btn--outline:hover { border-color: var(--accent); color: var(--accent-strong); background: transparent; box-shadow: none; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	background: rgba(13, 14, 17, 0.94);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--border-dark);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	gap: 24px;
	padding: 18px 0;
}
.site-logo img { height: 68px; width: auto; }

/* ==========================================================================
   Stage page (front page) - one media item in focus at a time, picked via
   the artist wheel, on an ambient animated dark background. Top 10 and the
   Set of the Month live further down the same page.
   ========================================================================== */
.stage-page {
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, var(--bg-dark) 0%, #1c1f27 100%);
	min-height: 640px;
	display: flex;
	flex-direction: column;
	gap: 36px;
	padding: 36px 0 72px;
}
.stage-page::before, .stage-page::after {
	content: "";
	position: absolute;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.4;
	z-index: 0;
	pointer-events: none;
	animation: stageDrift 18s ease-in-out infinite alternate;
}
.stage-page::before { background: radial-gradient(circle, var(--accent) 0%, transparent 70%); top: -260px; left: -160px; }
.stage-page::after { background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%); bottom: -280px; right: -160px; animation-delay: -9s; }
@keyframes stageDrift {
	from { transform: translate(0, 0) scale(1); }
	to { transform: translate(50px, 40px) scale(1.18); }
}
.stage-page > * { position: relative; z-index: 1; }

/* Big ambient waveform/spectrum visualizer filling the whole stage-page
   background (behind every section between header and footer). Idle and
   near-invisible until the play button is active, then pulses awake. */
.audio-visualizer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	opacity: 0.05;
	transition: opacity 0.8s ease;
}
.audio-visualizer.is-playing { opacity: 0.2; }
@media (prefers-reduced-motion: reduce) {
	.audio-visualizer { display: none; }
}

/* ==========================================================================
   Artist wheel - a real 3D rotating carousel. Each item sits around a
   cylinder (rotateY + translateZ); rotating the whole wheel brings the next
   artist to the front, where it's enlarged. Drag/swipe or prev/next to spin.
   ========================================================================== */
.wheel-viewport {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 16px;
	box-sizing: border-box;
}
.wheel-window {
	flex: 1;
	position: relative;
	height: 260px;
	overflow: hidden;
	perspective: 2600px;
	touch-action: pan-y;
	cursor: grab;
}
.wheel-window:active { cursor: grabbing; }
.artist-wheel {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.7s cubic-bezier(0.22, 0.9, 0.32, 1);
}
.artist-wheel__item {
	position: absolute;
	top: 50%; left: 50%;
	width: 92px;
	margin: -60px 0 0 -46px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	background: none;
	border: 0;
	cursor: pointer;
	color: #83858d;
	font-size: 0.74rem;
	backface-visibility: hidden;
	transform: rotateY(calc(var(--i) * (360deg / var(--wheel-count)))) translateZ(950px);
	transition: color 0.3s ease;
}
.artist-wheel__photo {
	width: 82px; height: 82px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid rgba(255,255,255,0.14);
	background: var(--bg-dark-soft);
	display: flex; align-items: center; justify-content: center;
	transition: border-color 0.35s ease, box-shadow 0.35s ease, width 0.35s ease, height 0.35s ease;
}
.artist-wheel__photo img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.artist-wheel__fallback { color: #fff; font-family: var(--font-display); font-size: 1.3rem; }
.artist-wheel__name {
	max-width: 96px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.artist-wheel__item.is-active { color: #fff; }
.artist-wheel__item.is-active .artist-wheel__photo {
	width: 108px; height: 108px;
	border-color: var(--accent);
	box-shadow: 0 0 0 6px rgba(106,147,176,0.22), 0 20px 44px -14px rgba(0,0,0,0.65);
}
.artist-wheel__item.is-active .artist-wheel__name { opacity: 1; }

.wheel-nav {
	flex-shrink: 0;
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.2);
	background: rgba(255,255,255,0.06);
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	transition: background 0.2s ease;
}
.wheel-nav:hover { background: rgba(255,255,255,0.16); }

@media (max-width: 600px) {
	.wheel-window { height: 210px; perspective: 1900px; }
	.artist-wheel__item { width: 74px; margin: -50px 0 0 -37px; transform: rotateY(calc(var(--i) * (360deg / var(--wheel-count)))) translateZ(720px); }
	.artist-wheel__photo { width: 64px; height: 64px; }
	.artist-wheel__item.is-active .artist-wheel__photo { width: 84px; height: 84px; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 64px 0; border-top: 1px solid var(--border); }
.section:first-of-type { border-top: 0; }
.section--alt { background: transparent; }
.section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}
.section__head h2 { margin: 0; }
.section__head .tag {
	font-family: var(--font-display);
	color: var(--accent-strong);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.75rem;
	display: block;
	margin-bottom: 8px;
}

/* ==========================================================================
   Card grids
   ========================================================================== */
.grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--artists { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

@media (max-width: 900px) {
	.grid--3 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

.card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px -14px rgba(106, 147, 176, 0.45), var(--shadow-md); border-color: rgba(106, 147, 176, 0.35); }
.card__media { position: relative; aspect-ratio: 16/9; background: var(--bg-dark); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__play {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	background: rgba(13,14,17,0.25);
	color: #fff; font-size: 2rem;
	opacity: 0; transition: opacity 0.2s ease;
}
.card:hover .card__play { opacity: 1; }
.card__body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.card__meta { font-size: 0.8rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.card__title { font-size: 1.05rem; margin: 0 0 6px; text-transform: none; letter-spacing: 0; }
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--accent-strong); }
.card__artist { color: var(--ink-soft); font-size: 0.9rem; margin-top: auto; }
.card__artist a { color: var(--ink-soft); }
.card__artist a:hover { color: var(--accent-strong); }

.artist-card { text-align: center; }
.artist-card__photo {
	display: block;
	width: 128px; height: 128px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px;
	border: 3px solid var(--border); background: var(--bg-alt);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.artist-card:hover .artist-card__photo {
	border-color: var(--accent);
	box-shadow: 0 10px 26px -10px rgba(106, 147, 176, 0.6);
	transform: translateY(-3px);
}
.artist-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.artist-card h3 { margin-bottom: 4px; }
.artist-card .socials { font-size: 0.8rem; color: var(--ink-faint); }

/* ==========================================================================
   Ranking list (Top 10) - dark, homepage
   ========================================================================== */
.rank-list { display: flex; flex-direction: column; border-top: 1px solid var(--border-dark); max-width: 720px; margin: 0 auto; text-align: left; }
.rank-item {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 14px 6px;
	border-bottom: 1px solid var(--border-dark);
	background: none;
	border-left: 0; border-right: 0; border-top: 0;
	width: 100%;
	text-align: left;
	font-family: inherit;
	cursor: pointer;
	color: inherit;
	transition: background 0.2s ease;
}
.rank-item:hover { background: rgba(255,255,255,0.04); }
.rank-number { font-family: var(--font-display); font-size: 1.4rem; color: var(--accent); width: 36px; flex-shrink: 0; }
.rank-thumb { width: 56px; height: 56px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: var(--bg-dark-soft); }
.rank-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rank-info { flex: 1; min-width: 0; }
.rank-info .card__title { margin: 0; font-size: 0.98rem; color: #fff; font-weight: 600; text-transform: none; letter-spacing: 0; }
.rank-info .card__artist { font-size: 0.85rem; color: #9698a1; margin-top: 2px; }
.rank-views { font-size: 0.8rem; color: #66686f; white-space: nowrap; }

/* ==========================================================================
   Embeds (single templates)
   ========================================================================== */
.tr-embed { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; background: var(--bg-dark); }
.tr-embed--16x9 { position: relative; aspect-ratio: 16/9; }
.tr-embed--16x9 iframe, .tr-embed--16x9 video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tr-embed--player iframe { width: 100%; height: 300px; border: 0; }
.tr-embed--sc { background: var(--bg-alt); }
.tr-embed--sc iframe { width: 100%; height: 166px; border: 0; display: block; }
.tr-embed--cover img { width: 100%; }

.single-header { padding: 56px 0 32px; border-bottom: 1px solid var(--border); }
.single-header .tag { color: var(--accent-strong); }
.single-meta { color: var(--ink-soft); font-size: 0.95rem; }
.entry-content { font-size: 1.02rem; }
.entry-content p { margin-bottom: 1.2em; }

/* ==========================================================================
   Generic page content
   ========================================================================== */
.page-header { padding: 56px 0 24px; text-align: center; }
.page-content { padding-bottom: 72px; }
.page-content .entry-content { max-width: 760px; margin: 0 auto; }
.page-content .entry-content iframe { border-radius: var(--radius); margin-bottom: 24px; }

/* Contact Form 7 */
.wpcf7-form p { margin-bottom: 16px; }
.wpcf7-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--border);
	border-radius: 6px;
	font-family: inherit;
	font-size: 1rem;
	background: var(--bg-alt);
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.wpcf7-form input[type=submit] {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: var(--accent);
	color: #fff;
	border: 0;
	padding: 0.85em 1.8em;
	border-radius: 999px;
	cursor: pointer;
}
.wpcf7-form input[type=submit]:hover { background: var(--accent-strong); }

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 10px;
	border: 1px solid var(--border); border-radius: 6px;
	font-family: var(--font-display); font-size: 0.9rem;
}
.pagination .current { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--bg-dark); color: #b7b9c1; padding: 56px 0 28px; }
.site-footer__top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; padding-bottom: 32px; border-bottom: 1px solid var(--border-dark); }
.site-footer .site-logo img { height: 40px; }
.footer-nav ul { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; color: #d8dade; }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 0.82rem; color: var(--ink-faint); }
.social-links { display: flex; gap: 14px; }
.social-links a { color: #d8dade; }
.social-links a:hover { color: var(--accent); }

/* ==========================================================================
   404
   ========================================================================== */
.error-404 { text-align: center; padding: 120px 0; }
.error-404 .code { font-family: var(--font-display); font-size: 6rem; color: var(--accent); margin: 0; }

/* ==========================================================================
   Empty state
   ========================================================================== */
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.hero::before, .hero::after { animation: none; }
}

/* ==========================================================================
   Lightbox (video/song gallery)
   ========================================================================== */
.js-lightbox { cursor: pointer; }
.card__media.js-lightbox .card__play {
	background: rgba(13, 14, 17, 0.35);
}

.tr-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
}
.tr-lightbox.is-open { display: block; }
.tr-lightbox__backdrop {
	position: absolute; inset: 0;
	background: rgba(8, 9, 11, 0.92);
	backdrop-filter: blur(6px);
}
.tr-lightbox__shell {
	position: relative;
	z-index: 1;
	max-width: 960px;
	margin: 4vh auto;
	padding: 0 60px;
	display: flex;
	align-items: center;
}
.tr-lightbox__body { width: 100%; }
.tr-lightbox__media { border-radius: var(--radius); overflow: hidden; background: #000; }
.tr-lightbox__media .tr-embed { margin-bottom: 0; }
.tr-lightbox__info { padding: 20px 4px 0; color: #fff; }
.tr-lightbox__title { color: #fff; font-size: 1.2rem; margin: 0 0 4px; }
.tr-lightbox__artist { color: #b7b9c1; margin: 0; font-size: 0.95rem; }
.tr-lightbox__artist:empty, .tr-lightbox__title:empty { display: none; }

.tr-lightbox__close {
	position: absolute;
	top: -4vh; right: 0;
	background: none; border: 0; color: #fff;
	font-size: 2rem; line-height: 1; cursor: pointer;
	padding: 10px;
}
.tr-lightbox__nav {
	position: absolute;
	top: 50%; transform: translateY(-50%);
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.25);
	background: rgba(255,255,255,0.08);
	color: #fff;
	font-size: 1.6rem;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	transition: background 0.2s ease;
}
.tr-lightbox__nav:hover { background: rgba(255,255,255,0.18); }
.tr-lightbox__nav--prev { left: 0; }
.tr-lightbox__nav--next { right: 0; }
.tr-lightbox__nav:disabled { opacity: 0.3; cursor: default; pointer-events: none; }

@media (max-width: 720px) {
	.tr-lightbox__shell { padding: 0 46px; margin: 10vh auto; }
	.tr-lightbox__nav { width: 38px; height: 38px; font-size: 1.3rem; }
	.tr-lightbox__close { top: -7vh; }
}

/* ==========================================================================
   Media stage - the artist wheel's selection is shown here, one item at a
   time. Switching artist fades/scales the player briefly (is-switching).
   ========================================================================== */
.artist-module__player { position: relative; width: 100%; max-width: 700px; margin: 0 auto; box-sizing: border-box; }
.song-stage__player {
	width: 100%;
	border-radius: var(--radius);
	overflow: hidden;
	background: #fff;
	box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
	transition: opacity 0.22s ease, transform 0.22s ease;
}
[data-media-stage].is-switching .song-stage__player { opacity: 0; transform: scale(0.97) translateY(6px); }
.song-stage__media .tr-embed { margin-bottom: 0; border-radius: 0; }
.song-stage__media .tr-embed--16x9 { aspect-ratio: 16 / 9; max-height: 72vh; background: #000; }
.song-stage__media .tr-embed--sc iframe { height: 190px; }
.song-stage__media .tr-embed--player iframe { width: 100%; height: 190px; border: 0; display: block; }
.song-stage__media .tr-embed--cover img { width: 100%; }

.song-stage__templates { display: none; }

.song-stage__info { width: 100%; margin: 20px auto 0; text-align: center; box-sizing: border-box; }
.song-stage__title { margin: 0 0 4px; font-size: 1.3rem; transition: opacity 0.2s ease; }
.song-stage__title a { color: #fff; }
.song-stage__title a:hover { color: var(--accent); }
.song-stage__artist { color: #9698a1; margin: 0; }
.song-stage__plays { color: var(--accent); font-size: 0.85rem; margin: 6px 0 0; text-transform: uppercase; letter-spacing: 0.08em; }

@media (max-width: 600px) {
	.song-stage__media .tr-embed--sc iframe,
	.song-stage__media .tr-embed--player iframe { height: 120px; }
}

/* ==========================================================================
   Artist tracks carousel - every track by the artist currently on the
   wheel, slidable, updates whenever the wheel (or a Top10/Set-of-Month
   jump) changes the active artist.
   ========================================================================== */
.artist-tracks__head { padding: 0; margin-bottom: 16px; }
.artist-tracks__head .tag { display: block; color: var(--accent); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; margin-bottom: 4px; }
.artist-tracks__head h3 { color: #fff; margin: 0; font-size: 1.1rem; }

.artist-tracks__viewport { display: flex; align-items: center; gap: 10px; }
.artist-tracks__nav { width: 38px; height: 38px; font-size: 1.2rem; flex-shrink: 0; }
.artist-tracks__track {
	flex: 1;
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 4px 4px 10px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.artist-tracks__card {
	flex: 0 0 150px;
	scroll-snap-align: start;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
	color: #9698a1;
}
.artist-tracks__thumb {
	position: relative;
	display: block;
	width: 150px; height: 150px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--bg-dark-soft);
	border: 2px solid transparent;
	transition: border-color 0.25s ease, transform 0.25s ease;
}
.artist-tracks__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.artist-tracks__play {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	background: rgba(13,14,17,0.35);
	color: #fff; font-size: 1.4rem;
	opacity: 0;
	transition: opacity 0.2s ease;
}
.artist-tracks__card:hover .artist-tracks__play { opacity: 1; }
.artist-tracks__card:hover .artist-tracks__thumb { transform: translateY(-3px); }
.artist-tracks__title { display: block; margin-top: 8px; font-size: 0.82rem; line-height: 1.35; max-height: 2.7em; overflow: hidden; }
.artist-tracks__card.is-active { color: #fff; }
.artist-tracks__card.is-active .artist-tracks__thumb { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(106,147,176,0.25); }

@media (max-width: 600px) {
	.artist-tracks__card { flex-basis: 108px; }
	.artist-tracks__thumb { width: 108px; height: 108px; }
	.artist-tracks__nav { width: 32px; height: 32px; font-size: 1rem; }
}

/* ==========================================================================
   Dark section headers (Top 10 / Set of the Month)
   ========================================================================== */
.section__head--dark { margin-bottom: 24px; }
.section__head--dark h2 { color: #fff; }
.section__head--dark .tag { color: var(--accent); }
.top10-wrap, .setmonth-wrap { padding-top: 56px; }
.setmonth-wrap--top { padding-top: 0; margin-top: 28px; margin-bottom: 28px; }
.top10-wrap .section__head,
.setmonth-wrap .section__head,
.artists-head .section__head { justify-content: center; text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Artist module - Artists wheel, the player, and the "all tracks" carousel
   read as one shared card, split by thin dividers instead of floating
   separately on the page background.
   ========================================================================== */
.artist-module {
	background: var(--bg-dark-soft);
	border: 1px solid var(--border-dark);
	border-radius: var(--radius);
	overflow: hidden;
}
.artist-module__section { padding: 32px 24px; }
.artist-module__section + .artist-module__section { border-top: 1px solid var(--border-dark); }
.artist-module__artists { position: relative; }
.artist-module__artists .artists-head { margin-bottom: 8px; }
.artist-module__artists .wheel-viewport { padding: 0; }
.artist-module__player { display: flex; flex-direction: column; align-items: center; }
.artist-module__tracks .artist-tracks__head { text-align: center; }

/* Continuous play / shuffle controls, top-right of the Favorite Artists card */
.stage-controls { position: absolute; top: 12px; right: 16px; display: flex; gap: 10px; }
.stage-controls__btn {
	width: 40px; height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.2);
	background: rgba(255,255,255,0.06);
	color: #d8dade;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.stage-controls__btn svg { width: 18px; height: 18px; }
.stage-controls__btn:hover { background: rgba(255,255,255,0.14); color: #fff; }
.stage-controls__btn.is-active {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
	box-shadow: 0 0 0 4px rgba(106,147,176,0.22);
}

@media (max-width: 600px) {
	.artist-module__section { padding: 24px 14px; }
	.stage-controls { top: 8px; right: 10px; }
	.stage-controls__btn { width: 34px; height: 34px; }
	.stage-controls__btn svg { width: 15px; height: 15px; }
}

/* ==========================================================================
   Set of the Month - a slidable carousel of native SoundCloud embeds (big,
   cover-left layout), one full set at a time. No extra text/buttons - the
   embed itself already shows title, cover and is directly playable.
   ========================================================================== */
.setmonth-carousel {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 820px;
	margin: 0 auto;
}
.setmonth-carousel__track {
	flex: 1;
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,0.2) transparent;
	border-radius: var(--radius);
}
.setmonth-carousel__item { flex: 0 0 100%; scroll-snap-align: start; }
.setmonth-carousel__item .tr-embed { margin-bottom: 0; }
.setmonth-carousel__item .tr-embed--sc iframe,
.setmonth-carousel__item .tr-embed--player iframe { width: 100%; height: 166px; }
.setmonth-carousel__nav { flex-shrink: 0; }
