/* =====================================================================
   SkankRadio Track Detail Page (1.12.0)
   /track/{slug}/ — single track public page.
   Prefix: .srt-*
   ===================================================================== */

.srt-page {
	max-width: 1100px;
	margin: 40px auto;
	padding: 0 20px;
	color: #eee;
	font-family: inherit;
}

/* === HERO === */
.srt-hero {
	display: grid;
	grid-template-columns: minmax(280px, 460px) 1fr;
	gap: 48px;
	align-items: start;
	margin-bottom: 56px;
}

.srt-hero-cover {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	aspect-ratio: 1 / 1;
	background: #1a1a1a;
	border: 2px solid #ffffff;
}
.srt-hero-cover-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.srt-hero-cover-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #16BC0E 0%, #0a5a06 100%);
	color: #fff;
	font-size: 72px;
	font-weight: 800;
	letter-spacing: 2px;
}

.srt-hero-meta {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.srt-hero-genre {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.srt-genre-tag {
	display: inline-block;
	padding: 4px 12px;
	background: rgba(22, 188, 14, 0.15);
	color: #16BC0E;
	border: 1px solid rgba(22, 188, 14, 0.4);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	transition: all 0.18s ease;
}
.srt-genre-tag:hover {
	background: rgba(22, 188, 14, 0.25);
	border-color: #16BC0E;
}
.srt-hero-title {
	margin: 0;
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.1;
	font-weight: 800;
	color: #F9AB03;
	letter-spacing: -0.5px;
}
.srt-hero-artist {
	margin: 0;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
}
.srt-hero-stats {
	display: flex;
	gap: 20px;
	margin-top: 8px;
	color: #16BC0E;
	font-size: 13px;
}
.srt-stat strong { color: #fff; font-size: 14px; }

/* === PLAYER === */
.srt-player-wrap {
	margin-top: 12px;
}
.srt-play-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: transparent;
	color: #ffffff;
	border: 2px solid #16BC0E;
	border-radius: 50px;
	font-weight: 800;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
	box-shadow: none;
}
.srt-play-btn:hover {
	background: transparent;
	color: #F9AB03;
	border-color: #F9AB03;
	transform: translateY(-1px);
}
.srt-play-btn:active { transform: translateY(0); }
.srt-play-btn.is-playing {
	background: transparent;
	color: #F9AB03;
	border-color: #F9AB03;
	box-shadow: none;
}
.srt-play-btn.is-playing:hover {
	color: #ffbf1f;
	border-color: #ffbf1f;
}

/* === ACTIONS === */
.srt-hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 4px;
}
.srt-buy-btn {
	display: inline-block;
	padding: 12px 24px;
	background: transparent;
	color: #ffffff;
	border: 2px solid #F9AB03;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.18s ease, border-color 0.18s ease;
}
.srt-buy-btn:hover {
	background: transparent;
	color: #16BC0E;
	border-color: #16BC0E;
}

/* === SECTIONS === */
.srt-section {
	margin-bottom: 48px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.srt-section-title {
	font-size: 20px;
	font-weight: 700;
	color: #F9AB03;
	margin: 0 0 16px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}
.srt-description-body {
	font-size: 16px;
	line-height: 1.65;
	color: #ffffff;
	max-width: 760px;
}
.srt-description-body p { margin: 0 0 1em; }

/* === PROMO VIDEO === */
.srt-promo-video {
	max-width: 360px;
	width: 100%;
	border-radius: 12px;
	background: #1a1a1a;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

/* === SHARE === */
.srt-share-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.srt-share-btn {
	display: inline-block;
	padding: 10px 24px;
	background: transparent;
	color: #ffffff;
	border: 2px solid #16BC0E;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.18s ease, border-color 0.18s ease;
}
.srt-share-btn:hover {
	background: transparent;
	color: #F9AB03;
	border-color: #F9AB03;
}
.srt-share-feedback {
	margin: 10px 0 0;
	color: #16BC0E;
	font-size: 13px;
	min-height: 1em;
}

/* === RELATED === */
.srt-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
}
.srt-related-card {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: transform 0.18s ease;
}
.srt-related-card:hover { transform: translateY(-4px); }
.srt-related-cover {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 8px;
	display: block;
	background: #1a1a1a;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.srt-related-cover-placeholder {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #1a1a1a;
	border-radius: 8px;
}
.srt-related-meta {
	margin-top: 10px;
}
.srt-related-title {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.srt-related-artist {
	margin: 0;
	font-size: 13px;
	color: #16BC0E;
}

/* === MOBILE === */
@media (max-width: 768px) {
	.srt-page { margin: 24px auto; padding: 0 16px; }
	.srt-hero {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 40px;
	}
	.srt-hero-cover { max-width: 340px; margin: 0 auto; }
	.srt-hero-title { font-size: 32px; }
	.srt-hero-artist { font-size: 18px; }
	.srt-play-btn { width: 100%; justify-content: center; }
	.srt-buy-btn { width: 100%; text-align: center; }
	.srt-related-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.srt-promo-video { max-width: 100%; }
}

/* Artist link in track hero (1.13.0) */
.srt-hero-artist-link {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.18s ease, border-color 0.18s ease;
}
.srt-hero-artist-link:hover {
	color: #16BC0E;
	border-bottom-color: #16BC0E;
}
