/* Song detail page — Boomplay-inspired, isolated from styles.css */

.pb-song-page {
	margin-top: -8px;
}

.pb-song-hero {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	padding: 28px;
	background: linear-gradient(135deg, #f8fafc 0%, #eef4f8 50%, #f0f9ff 100%);
	border-radius: 16px;
	border: 1px solid #e8ecf0;
	margin-bottom: 32px;
}

.pb-song-hero__art {
	flex-shrink: 0;
}

.pb-song-hero__art img {
	width: 200px;
	height: 200px;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
}

.pb-song-hero__content {
	flex: 1;
	min-width: 0;
}

.pb-song-hero__title {
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 800;
	color: #1a1a2e;
	margin: 0 0 14px;
	line-height: 1.25;
}

.pb-song-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 20px;
	margin-bottom: 16px;
	font-size: 0.86rem;
	color: #64748b;
}

.pb-song-hero__stats span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.pb-song-hero__stats i {
	color: #00A6FF;
}

.pb-song-hero__artist,
.pb-song-hero__genre {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	font-size: 0.9rem;
}

.pb-song-hero__artist a,
.pb-song-hero__genre a {
	color: #334155;
	text-decoration: none;
	font-weight: 600;
}

.pb-song-hero__artist a:hover,
.pb-song-hero__genre a:hover {
	color: #00A6FF;
}

.pb-song-hero__artist img {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
}

.pb-song-hero__genre img {
	width: 24px;
	height: 24px;
	border-radius: 4px;
	object-fit: cover;
}

.pb-song-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 18px;
}

.pb-song-hero__actions #playSong {
	background: linear-gradient(135deg, #00d6c2 0%, #00A6FF 100%);
	border: none;
	color: #fff;
	font-weight: 700;
	padding: 10px 28px;
	border-radius: 28px;
	font-size: 0.95rem;
	box-shadow: 0 4px 16px rgba(0, 166, 255, 0.35);
}

.pb-song-hero__actions #playSong:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(0, 166, 255, 0.45);
	color: #fff;
}

.pb-song-hero__actions .default-button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 16px;
	border-radius: 24px;
	background: rgba(15, 23, 42, 0.06);
	border: 1px solid rgba(15, 23, 42, 0.08);
	color: #475569;
	font-size: 0.86rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}

.pb-song-hero__actions .default-button:hover {
	background: rgba(0, 166, 255, 0.1);
	color: #00A6FF;
}

.pb-song-related__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eef2f6;
}

.pb-song-related__head h5 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a2e;
}

.pb-song-related .pb-chart-list__item {
	border-radius: 10px;
	border: 1px solid #eef2f6 !important;
	box-shadow: none !important;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.pb-song-related .pb-chart-list__item:hover {
	background: rgba(0, 166, 255, 0.04);
	border-color: rgba(0, 166, 255, 0.2) !important;
}

.pb-song-related .pb-chart-list__cover img {
	border-radius: 8px;
}

.pb-song-related .pb-chart-list__info__title {
	font-weight: 600;
	color: #1a1a2e;
}

/* Dark theme */
.pb-theme-dark .pb-song-hero {
	background: linear-gradient(135deg, #1a1f28 0%, #14171c 100%);
	border-color: rgba(255, 255, 255, 0.08);
}

.pb-theme-dark .pb-song-hero__title {
	color: #f1f5f9;
}

.pb-theme-dark .pb-song-hero__stats {
	color: #94a3b8;
}

.pb-theme-dark .pb-song-hero__artist a,
.pb-theme-dark .pb-song-hero__genre a {
	color: #cbd5e1;
}

.pb-theme-dark .pb-song-hero__actions .default-button {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.1);
	color: #cbd5e1;
}

.pb-theme-dark .pb-song-related__head {
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pb-theme-dark .pb-song-related__head h5 {
	color: #f1f5f9;
}

.pb-theme-dark .pb-song-related .pb-chart-list__item {
	border-color: rgba(255, 255, 255, 0.08) !important;
}

.pb-theme-dark .pb-song-related .pb-chart-list__info__title {
	color: #f1f5f9;
}

@media (max-width: 767px) {
	.pb-song-hero {
		padding: 20px 16px;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.pb-song-hero__art img {
		width: 160px;
		height: 160px;
	}

	.pb-song-hero__stats,
	.pb-song-hero__actions {
		justify-content: center;
	}

	.pb-song-hero__artist,
	.pb-song-hero__genre {
		justify-content: center;
	}
}
