/*
Theme Name: RobloxSong Theme
Theme URI: http://localhost/robloxsong
Author: OpenAI Codex
Description: A custom WordPress theme for sharing Roblox song IDs.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.8
Text Domain: robloxsong-theme
*/

:root {
	--bg: #02060f;
	--bg-soft: #07101c;
	--surface: rgba(12, 22, 37, 0.9);
	--surface-strong: #0d1727;
	--surface-muted: #101d31;
	--surface-card: #0f1b2d;
	--border: rgba(255, 255, 255, 0.08);
	--border-strong: rgba(168, 85, 247, 0.25);
	--text: #f8fafc;
	--muted: #94a3b8;
	--primary: #a855f7;
	--primary-strong: #8b45f3;
	--secondary: #6d28d9;
	--highlight: #c084fc;
	--warm: #fb923c;
	--shadow: 0 28px 72px rgba(1, 8, 18, 0.6);
	--radius-xl: 6px;
	--radius-lg: 6px;
	--radius-md: 6px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
	color: var(--text);
	background: #02060f;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input {
	font: inherit;
}

.site-shell {
	width: min(1280px, calc(100% - 48px));
	margin: 0 auto;
	gap: 6px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	backdrop-filter: blur(18px);
	background: rgba(2, 7, 16, 0.82);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__bar {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	min-height: 82px;
}

.site-header__panel {
	display: contents;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: max-content;
}

.site-brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--site-logo-size, 40px);
	height: var(--site-logo-size, 40px);
	border-radius: 6px;
	background: linear-gradient(135deg, #7c3aed 0%, #d946ef 100%);
	box-shadow: 0 12px 28px rgba(146, 74, 255, 0.32);
	font-size: 1.2rem;
	flex: 0 0 auto;
}

.site-brand__mark .dashicons {
	font-size: 22px;
	width: 22px;
	height: 22px;
}

.site-brand__logo-image {
	display: block;
	width: var(--site-logo-size, 40px);
	height: var(--site-logo-size, 40px);
	object-fit: contain;
	flex: 0 0 auto;
}

.site-brand__text.is-hidden {
	display: none;
}

.site-brand__title {
	font-family: "Bahnschrift", "Segoe UI Variable Display", "Segoe UI", sans-serif;
	font-size: var(--site-title-size, 30px);
	font-weight: 700;
	letter-spacing: -0.04em;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.site-nav__list,
.site-footer__menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a,
.site-nav .menu-item > a {
	position: relative;
	padding: 12px 14px;
	color: rgba(248, 250, 252, 0.88);
	font-size: 0.98rem;
	font-weight: 500;
	transition: color 180ms ease;
}

.site-nav a::after,
.site-nav .menu-item > a::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 4px;
	height: 3px;
	border-radius: 6px;
	background: linear-gradient(90deg, #d946ef 0%, #8b45f3 100%);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav .menu-item > a:hover,
.site-nav .current-menu-item > a,
.site-nav .current-menu-ancestor > a,
.site-nav .current-menu-parent > a {
	color: #fff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav .menu-item > a:hover::after,
.site-nav .current-menu-item > a::after,
.site-nav .current-menu-ancestor > a::after,
.site-nav .current-menu-parent > a::after {
	transform: scaleX(1);
}

.site-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	background: rgba(11, 20, 34, 0.92);
	color: #f8fafc;
	cursor: pointer;
	transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-header__toggle:hover {
	border-color: rgba(168, 85, 247, 0.34);
	background: rgba(17, 27, 43, 0.96);
}

.site-header__toggle-line {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transform-origin: center;
	transition: transform 180ms ease, opacity 180ms ease;
}

.site-header__search {
	display: flex;
	align-items: center;
	gap: 10px;
	width: min(100%, 330px);
	padding: 0 16px;
	border: 1px solid var(--border);
	border-radius: 6px;
	background: rgba(11, 20, 34, 0.92);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.site-header__search .dashicons,
.hero-search__field .dashicons {
	color: rgba(255, 255, 255, 0.46);
	font-size: 18px;
	width: 18px;
	height: 18px;
}

.site-header__search input,
.hero-search__field input {
	width: 100%;
	min-height: 52px;
	border: 0;
	color: var(--text);
	background: transparent;
	outline: none;
}

.site-header__search input::placeholder,
.hero-search__field input::placeholder {
	color: rgba(148, 163, 184, 0.8);
}

.site-main {
	flex: 1 0 auto;
	padding: 36px 0 54px;
}

.home-page {
	overflow: hidden;
}

.hero {
	display: grid;
	gap: 28px;
}

.hero__content {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
	gap: 34px;
	align-items: center;
}

.hero__copy h1,
.section-heading h2,
.song-card__title,
.archive-banner h1,
.single-song__title,
.cta-panel h2 {
	margin: 0;
	font-family: "Bahnschrift", "Segoe UI Variable Display", "Segoe UI", sans-serif;
	font-weight: 700;
	letter-spacing: -0.055em;
}

.hero__copy h1 {
	max-width: 12ch;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	line-height: 1.06;
}

.archive-banner h1 {
	font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.hero__copy h1 span {
	display: block;
}

.hero__copy h1 em {
	font-style: normal;
	color: var(--primary);
}

.hero__copy p {
	max-width: 29ch;
	margin: 18px 0 28px;
	color: var(--muted);
	font-size: 1.42rem;
	line-height: 1.62;
}

.hero-search {
	display: flex;
	align-items: stretch;
	gap: 14px;
	max-width: 560px;
}

.hero-search__field {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	padding: 0 18px;
	border: 1px solid var(--border);
	border-radius: 6px;
	background: rgba(13, 22, 37, 0.96);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.button-primary,
.button-secondary,
.site-footer__link,
.section-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 6px;
	font-weight: 700;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button-primary {
	padding: 0 28px;
	min-height: 46px;
	background: linear-gradient(90deg, #7c3aed 0%, #b14cff 100%);
	color: #fff;
	box-shadow: 0 18px 34px rgba(124, 58, 237, 0.34);
}

.button-primary:hover,
.button-secondary:hover,
.site-footer__link:hover,
.section-link:hover,
.song-copy:hover {
	transform: translateY(-1px);
}

.button-primary--wide {
	min-width: 242px;
	min-height: 72px;
}

.button-secondary {
	padding: 0 18px;
	min-height: 46px;
	color: var(--text);
	background: rgba(18, 30, 49, 0.96);
	border: 1px solid var(--border);
}

.hero-tags {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.hero-tags > span {
	color: #fff;
	font-size: 1.02rem;
	font-weight: 600;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag-list a {
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 6px;
	background: rgba(17, 27, 42, 0.95);
	color: #cbd5e1;
	font-size: 0.9rem;
	line-height: 1;
}

.hero__visual {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 168px;
	gap: 20px;
	align-items: center;
}

.hero-figure {
	position: relative;
	min-height: 420px;
	border-radius: 6px;
	background:
		radial-gradient(circle at 50% 38%, rgba(185, 74, 255, 0.22), transparent 22%),
		radial-gradient(circle at 50% 70%, rgba(146, 74, 255, 0.34), transparent 26%),
		linear-gradient(180deg, rgba(7, 14, 25, 0.42) 0%, rgba(8, 12, 24, 0.04) 100%);
	overflow: hidden;
}

.hero-note,
.hero-spark {
	position: absolute;
	color: #bb66ff;
	filter: drop-shadow(0 0 14px rgba(185, 74, 255, 0.6));
	animation: float 5.5s ease-in-out infinite;
}

.hero-note {
	font-size: 2.35rem;
	width: 2.35rem;
	height: 2.35rem;
}

.hero-note--one {
	top: 38px;
	right: 58px;
}

.hero-note--two {
	top: 108px;
	left: 38px;
	font-size: 2rem;
}

.hero-note--three {
	top: 144px;
	right: 18px;
	font-size: 2.8rem;
	animation-delay: -1.3s;
}

.hero-note--four {
	bottom: 82px;
	right: 48px;
	font-size: 2.6rem;
	animation-delay: -2.1s;
}

.hero-spark {
	width: 8px;
	height: 8px;
	background: #c084fc;
	transform: rotate(45deg);
}

.hero-spark--one {
	top: 56px;
	left: 84px;
}

.hero-spark--two {
	top: 208px;
	right: 90px;
	animation-delay: -1.2s;
}

.hero-spark--three {
	bottom: 122px;
	left: 66px;
	animation-delay: -2.4s;
}

.hero-robot {
	position: absolute;
	left: 50%;
	bottom: 72px;
	width: 190px;
	height: 270px;
	transform: translateX(-50%);
	filter: drop-shadow(0 18px 42px rgba(185, 74, 255, 0.28));
}

.hero-robot__head,
.hero-robot__torso,
.hero-robot__arm,
.hero-robot__leg {
	position: absolute;
	border: 2px solid rgba(196, 166, 255, 0.2);
	border-radius: 6px;
	background:
		linear-gradient(145deg, rgba(17, 17, 24, 0.98) 0%, rgba(49, 29, 77, 0.92) 100%);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.04),
		0 0 32px rgba(146, 74, 255, 0.12);
}

.hero-robot__head {
	top: 0;
	left: 50%;
	width: 84px;
	height: 84px;
	border-radius: 6px;
	transform: translateX(-50%);
}

.hero-robot__head::before,
.hero-robot__head::after {
	content: "";
	position: absolute;
	top: 20px;
	width: 16px;
	height: 44px;
	border-radius: 6px;
	background: rgba(34, 34, 44, 0.9);
}

.hero-robot__head::before {
	left: -10px;
}

.hero-robot__head::after {
	right: -10px;
}

.hero-robot__torso {
	top: 84px;
	left: 50%;
	width: 110px;
	height: 108px;
	border-radius: 6px;
	transform: translateX(-50%);
}

.hero-robot__torso::after {
	content: "";
	position: absolute;
	inset: 32px 36px;
	background: #e2d7ff;
	transform: rotate(-16deg);
}

.hero-robot__arm {
	top: 94px;
	width: 44px;
	height: 110px;
}

.hero-robot__arm--left {
	left: 10px;
	transform: rotate(18deg);
}

.hero-robot__arm--right {
	right: 10px;
	transform: rotate(-18deg);
}

.hero-robot__leg {
	top: 184px;
	width: 46px;
	height: 112px;
}

.hero-robot__leg--left {
	left: 54px;
	transform: rotate(4deg);
}

.hero-robot__leg--right {
	right: 54px;
	transform: rotate(-4deg);
}

.hero-metrics {
	display: grid;
	gap: 14px;
}

.hero-metric,
.feature-card,
.song-row,
.music-card,
.category-card,
.archive-banner,
.single-song__meta,
.single-song__body,
.song-card,
.empty-state,
.cta-panel,
.site-footer__card {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(180deg, rgba(13, 22, 37, 0.98) 0%, rgba(10, 18, 31, 0.98) 100%);
	box-shadow: var(--shadow);
}

.hero-metric {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px 20px;
	min-height: 106px;
}

.hero-metric__icon,
.feature-card__icon,
.category-card__icon,
.cta-panel__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #c084fc;
	font-size: 1.8rem;
	width: 1.8rem;
	height: 1.8rem;
	filter: drop-shadow(0 0 14px rgba(185, 74, 255, 0.36));
}

.hero-metric strong {
	display: block;
	font-size: 2rem;
	line-height: 1.1;
}

.hero-metric span:last-child {
	display: block;
	margin-top: 4px;
	color: #e2e8f0;
	font-size: 1.06rem;
}

.feature-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	border: 1px solid var(--border);
	border-radius: 6px;
	overflow: hidden;
	background: rgba(10, 18, 31, 0.82);
}

.feature-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 24px 26px;
	border-radius: 0;
	border-width: 0 1px 0 0;
	box-shadow: none;
}

.feature-card:last-child {
	border-right: 0;
}

.feature-card h2,
.category-card h3,
.music-card h3,
.song-row__copy h3,
.song-card__title {
	margin: 0;
	font-size: 1.06rem;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.feature-card p,
.section-heading p,
.song-row__copy p,
.music-card p,
.category-card p,
.song-card__artist,
.single-song__summary,
.site-footer__copy span,
.empty-state p {
	margin: 6px 0 0;
	color: var(--muted);
	line-height: 1.6;
}

.content-section {
	padding-top: 24px;
}

.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.section-heading h2 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 2.02rem;
}

.section-heading__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	font-size: 1.25rem;
}

.section-heading__icon--warm {
	filter: drop-shadow(0 0 12px rgba(251, 146, 60, 0.26));
}

.section-heading__icon--gold {
	filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.24));
}

.section-link,
.site-footer__link {
	color: var(--primary);
	font-size: 0.98rem;
	font-weight: 700;
}

.song-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.song-list__column {
	display: grid;
	gap: 12px;
}

.song-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 16px;
}

.song-row__main {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.song-thumb,
.music-card__cover,
.song-card__thumb {
	position: relative;
	flex: 0 0 auto;
	overflow: hidden;
	background:
		linear-gradient(135deg, var(--cover-start) 0%, var(--cover-end) 100%);
}

.song-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.04em;
}

.song-thumb::after,
.music-card__cover::after,
.song-card__thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.song-thumb img,
.music-card__cover img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.song-row__copy {
	min-width: 0;
}

.song-row__copy h3,
.song-row__copy p,
.song-card__title,
.song-card__artist,
.music-card h3,
.music-card p {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.song-row__copy p {
	font-size: 0.95rem;
}

.song-row__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.song-row__id,
.music-card__id,
.song-card__id {
	color: var(--primary);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.song-copy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--border);
	border-radius: 6px;
	color: #cbd5e1;
	background: rgba(9, 16, 28, 0.94);
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.song-copy--inline {
	width: auto;
	min-width: 112px;
	padding: 0 14px;
	gap: 8px;
	border-color: rgba(124, 58, 237, 0.28);
	background: linear-gradient(180deg, rgba(28, 39, 61, 0.98) 0%, rgba(18, 27, 44, 0.98) 100%);
	box-shadow: 0 14px 26px rgba(2, 8, 18, 0.28);
}

.song-copy__text {
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1;
}

.song-copy--inline:hover {
	border-color: rgba(124, 58, 237, 0.52);
	background: linear-gradient(180deg, rgba(34, 46, 70, 1) 0%, rgba(23, 34, 54, 1) 100%);
}

.song-copy svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.song-copy.is-copied {
	color: #fff;
	border-color: rgba(185, 74, 255, 0.65);
	background: rgba(123, 45, 237, 0.9);
}

.music-carousel {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 18px;
}

.music-card {
	padding: 0;
	overflow: hidden;
	box-shadow: none;
	background: transparent;
	border: 0;
}

.music-card__cover {
	display: grid;
	align-items: end;
	width: 100%;
	aspect-ratio: 1 / 1;
	padding: 12px;
	border-radius: 6px;
	box-shadow: var(--shadow);
}

.music-card__play {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 6px;
	color: #fff;
	background: rgba(5, 8, 16, 0.74);
}

.music-card__initials {
	position: absolute;
	right: 14px;
	bottom: 12px;
	z-index: 1;
	color: rgba(255, 255, 255, 0.96);
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: -0.05em;
}

.music-card h3 {
	margin-top: 12px;
	font-size: 1.06rem;
}

.music-card p {
	font-size: 0.95rem;
}

.music-card__id {
	display: inline-block;
	margin-top: 4px;
	font-size: 0.96rem;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.category-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 20px;
	min-height: 112px;
}

.category-card h3 {
	font-size: 1.12rem;
}

.section-heading__icon--guide {
	color: #c4a3ff;
	filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.22));
}

.home-guide__grid,
.home-faq__grid {
	display: grid;
	gap: 18px;
}

.home-guide__grid {
	grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
	align-items: stretch;
}

.home-guide__card,
.home-faq__item {
	border: 1px solid var(--border);
	border-radius: 6px;
	background:
		linear-gradient(180deg, rgba(13, 22, 37, 0.98) 0%, rgba(10, 18, 31, 0.98) 100%);
	box-shadow: var(--shadow);
}

.home-guide__card {
	display: grid;
	gap: 14px;
	padding: 22px;
}

.home-guide__card--steps {
	background:
		radial-gradient(circle at 10% 18%, rgba(124, 58, 237, 0.18), transparent 22%),
		linear-gradient(180deg, rgba(13, 22, 37, 0.98) 0%, rgba(10, 18, 31, 0.98) 100%);
}

.home-guide__card-head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.home-guide__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 6px;
	background: rgba(124, 58, 237, 0.12);
	color: #d8b4fe;
	font-size: 1.25rem;
	flex: 0 0 auto;
}

.home-guide__card h3,
.home-faq__item h3 {
	margin: 0;
	font-size: 1.08rem;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.home-guide__card p,
.home-faq__item p {
	margin: 0;
	color: var(--muted);
	line-height: 1.75;
}

.home-guide__steps {
	margin: 0;
	padding-left: 20px;
	color: #e7edf6;
	line-height: 1.85;
}

.home-guide__steps li + li {
	margin-top: 10px;
}

.home-faq__grid {
	grid-template-columns: 1fr;
}

.home-faq__item {
	padding: 0;
	overflow: hidden;
	box-shadow: none;
	background:
		linear-gradient(180deg, rgba(13, 22, 37, 0.98) 0%, rgba(10, 18, 31, 0.98) 100%);
}

.home-faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 24px;
	cursor: pointer;
	list-style: none;
}

.home-faq__item summary::-webkit-details-marker {
	display: none;
}

.home-faq__item summary::before {
	content: "";
	width: 4px;
	align-self: stretch;
	border-radius: 999px;
	background: linear-gradient(180deg, #7c3aed 0%, #d946ef 100%);
	box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.08);
}

.home-faq__item summary h3 {
	flex: 1;
}

.home-faq__toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	background: rgba(16, 26, 41, 0.92);
	flex: 0 0 auto;
}

.home-faq__toggle::before,
.home-faq__toggle::after {
	content: "";
	position: absolute;
	width: 14px;
	height: 2px;
	border-radius: 999px;
	background: #d8b4fe;
	transition: transform 180ms ease, opacity 180ms ease;
}

.home-faq__toggle::after {
	transform: rotate(90deg);
}

.home-faq__item[open] .home-faq__toggle {
	border-color: rgba(168, 85, 247, 0.3);
	background: rgba(33, 21, 56, 0.9);
}

.home-faq__item[open] .home-faq__toggle::after {
	transform: rotate(90deg) scaleX(0);
	opacity: 0;
}

.home-faq__item p {
	padding: 0 24px 22px 44px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	color: #d0dae8;
}

.cta-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 24px;
	padding: 26px 28px;
	border-color: rgba(168, 85, 247, 0.7);
	background:
		radial-gradient(circle at 8% 18%, rgba(124, 58, 237, 0.2), transparent 20%),
		linear-gradient(180deg, rgba(8, 12, 24, 0.98) 0%, rgba(9, 16, 28, 0.98) 100%);
}

.cta-panel__copy {
	display: flex;
	align-items: center;
	gap: 18px;
}

.cta-panel h2 {
	font-size: 2rem;
}

.cta-panel p {
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 1.02rem;
}

.search-results__grid,
.song-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.song-card,
.empty-state {
	padding: 22px;
}

.song-card__top {
	display: flex;
	align-items: center;
	gap: 16px;
}

.song-card__thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.94);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.05em;
}

.song-card__thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.song-card__thumb span,
.song-thumb span {
	position: relative;
	z-index: 1;
}

.song-card__chip {
	display: inline-flex;
	margin-bottom: 8px;
	padding: 7px 10px;
	border-radius: 6px;
	background: rgba(168, 85, 247, 0.14);
	color: #d8b4fe;
	font-size: 0.74rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.song-card__title {
	font-size: 1.3rem;
}

.song-card__artist {
	font-size: 0.95rem;
}

.song-card__meta {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.song-card__meta span {
	display: block;
	color: var(--muted);
	font-size: 0.84rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.song-card__meta strong {
	display: block;
	margin-top: 8px;
	font-size: 1rem;
}

.song-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 18px;
}

.song-card__id {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid rgba(168, 85, 247, 0.2);
	border-radius: 6px;
	background: rgba(124, 58, 237, 0.09);
}

.archive-banner,
.single-song__meta,
.single-song__body {
	padding: 24px;
}

.archive-banner p {
	margin-top: 8px;
	color: var(--muted);
}

.single-song {
	padding: 24px 0 10px;
}

.single-song-screen {
	padding-top: 18px;
}

.single-song-screen__shell {
	display: grid;
	gap: 18px;
	padding: 18px 16px 10px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(9, 15, 27, 0.96) 0%, rgba(6, 11, 22, 0.96) 100%);
	box-shadow: 0 24px 56px rgba(1, 8, 18, 0.42);
}

.single-song-screen__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.single-song-screen__related-thumb {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, var(--cover-start) 0%, var(--cover-end) 100%);
}

.single-song-screen__related-thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.single-song-screen__related-thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.single-song-screen__related-thumb span {
	position: relative;
	z-index: 1;
	color: rgba(255, 255, 255, 0.96);
	font-weight: 800;
	letter-spacing: -0.05em;
}

.single-song-screen__main {
	display: grid;
	gap: 18px;
}

.single-song-screen__intro {
	display: grid;
	gap: 6px;
}

.single-song-screen__title {
	margin: 0;
	font-family: "Bahnschrift", "Segoe UI Variable Display", "Segoe UI", sans-serif;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 700;
	letter-spacing: -0.055em;
}

.single-song-screen__intro-copy {
	margin: 2px 0 0;
	color: #c9d5e6;
	font-size: 1.02rem;
	line-height: 1.75;
}

.single-song-screen__artist {
	margin: 0;
	color: #d7e0ec;
	font-size: 1.02rem;
	font-weight: 600;
}

.single-song-screen__engagement {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 12px;
	align-self: flex-start;
}

.single-song-screen__like-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	background: rgba(18, 28, 44, 0.72);
	color: #e8eef8;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
	transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.single-song-screen__like-button:hover:not(:disabled) {
	transform: translateY(-1px);
	border-color: rgba(244, 63, 94, 0.34);
	background: rgba(24, 36, 55, 0.9);
	box-shadow: 0 10px 22px rgba(1, 8, 18, 0.18);
}

.single-song-screen__like-button:disabled {
	cursor: wait;
	opacity: 0.85;
}

.single-song-screen__like-button img {
	width: 18px;
	height: 18px;
	object-fit: contain;
	transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.single-song-screen__like-button.is-liked {
	border-color: rgba(96, 165, 250, 0.42);
	background: linear-gradient(180deg, rgba(37, 99, 235, 0.26) 0%, rgba(30, 64, 175, 0.3) 100%);
	color: #eff6ff;
	box-shadow: 0 10px 20px rgba(30, 64, 175, 0.18);
}

.single-song-screen__like-button.is-liked img {
	transform: scale(1.04);
	filter: brightness(0) invert(1);
}

.single-song-screen__like-button.is-error {
	border-color: rgba(248, 113, 113, 0.4);
	color: #fee2e2;
}

.single-song-screen__like-count {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #9fb0c5;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.single-song-screen__like-count::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 999px;
	background: rgba(148, 163, 184, 0.7);
	flex: 0 0 auto;
}

.single-song-screen__description-block {
	display: grid;
	gap: 12px;
	margin-top: 8px;
}

.single-song-screen__description-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.single-song-screen__description-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.single-song-screen__description-edit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	background: rgba(13, 22, 37, 0.92);
	color: #dbe4f0;
	cursor: pointer;
	transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.single-song-screen__description-edit:hover {
	transform: translateY(-1px);
	border-color: rgba(124, 58, 237, 0.34);
	color: #fff;
	background: rgba(20, 31, 49, 0.96);
}

.single-song-screen__description-edit svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.single-song-screen__description-note {
	margin: 0;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	font-size: 0.92rem;
	line-height: 1.6;
}

.single-song-screen__description-note--success {
	border-color: rgba(34, 197, 94, 0.28);
	background: rgba(17, 51, 33, 0.58);
	color: #d1fae5;
}

.single-song-screen__description-note--error {
	border-color: rgba(248, 113, 113, 0.28);
	background: rgba(67, 24, 24, 0.56);
	color: #fee2e2;
}

.single-song-screen__description {
	margin: 0;
	padding-left: 16px;
	border-left: 3px solid rgba(124, 58, 237, 0.4);
	color: #bcc8d8;
	font-size: 1rem;
	line-height: 1.8;
}

.single-song-screen__description p {
	margin: 0;
}

.single-song-screen__description p + p {
	margin-top: 12px;
}

.single-song-screen__description--empty {
	color: #9fb0c5;
	font-style: italic;
}

.single-song-screen__description-form {
	display: grid;
	gap: 12px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	background: rgba(11, 18, 30, 0.92);
}

.single-song-screen__description-form[hidden] {
	display: none !important;
}

.single-song-screen__description-form-label {
	color: #eef4fb;
	font-size: 0.92rem;
	font-weight: 700;
}

.single-song-screen__description-form textarea {
	width: 100%;
	min-height: 120px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: rgba(6, 11, 22, 0.96);
	color: #eef4fb;
	font: inherit;
	resize: vertical;
}

.single-song-screen__description-form textarea:focus {
	outline: none;
	border-color: rgba(124, 58, 237, 0.46);
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.14);
}

.single-song-screen__description-form-copy {
	margin: 0;
	color: #9fb0c5;
	font-size: 0.9rem;
	line-height: 1.6;
}

.single-song-screen__description-form-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.single-song-screen__detail-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.single-song-screen__detail-edit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	background: rgba(13, 22, 37, 0.92);
	color: #dbe4f0;
	cursor: pointer;
	transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.single-song-screen__detail-edit:hover {
	transform: translateY(-1px);
	border-color: rgba(124, 58, 237, 0.34);
	color: #fff;
	background: rgba(20, 31, 49, 0.96);
}

.single-song-screen__detail-edit svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.single-song-screen__detail-note {
	margin: 0;
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	font-size: 0.88rem;
	line-height: 1.6;
}

.single-song-screen__detail-note--success {
	border-color: rgba(34, 197, 94, 0.28);
	background: rgba(17, 51, 33, 0.58);
	color: #d1fae5;
}

.single-song-screen__detail-note--error {
	border-color: rgba(248, 113, 113, 0.28);
	background: rgba(67, 24, 24, 0.56);
	color: #fee2e2;
}

.single-song-screen__detail-form {
	display: grid;
	gap: 12px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	background: rgba(11, 18, 30, 0.92);
}

.single-song-screen__detail-form[hidden] {
	display: none !important;
}

.single-song-screen__detail-form input {
	width: 100%;
	min-height: 46px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: rgba(6, 11, 22, 0.96);
	color: #eef4fb;
	font: inherit;
}

.single-song-screen__detail-form input:focus {
	outline: none;
	border-color: rgba(124, 58, 237, 0.46);
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.14);
}

.single-song-screen__details-card,
.single-song-screen__howto {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(13, 22, 37, 0.96) 0%, rgba(10, 18, 31, 0.96) 100%);
}

.single-song-screen__details-card {
	padding: 20px;
	border-color: rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	box-shadow: 0 18px 36px rgba(1, 8, 18, 0.24);
}

.single-song-screen__details-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 1.08rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.single-song-screen__details-title::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: linear-gradient(135deg, #7c3aed 0%, #b14cff 100%);
	box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.12);
}

.single-song-screen__details-list {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.single-song-screen__detail-item {
	display: grid;
	gap: 8px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	background: rgba(15, 24, 38, 0.82);
}

.single-song-screen__detail-item:first-child {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	border-color: rgba(124, 58, 237, 0.22);
	background: linear-gradient(180deg, rgba(20, 32, 52, 0.96) 0%, rgba(14, 24, 40, 0.96) 100%);
}

.single-song-screen__detail-label {
	display: block;
	color: #9fb0c5;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.single-song-screen__detail-value {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	min-width: 0;
	color: #f1f5f9;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	text-align: left;
}

.single-song-screen__detail-value--icon {
	gap: 10px;
}

.single-song-screen__detail-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	border: 1px solid rgba(191, 219, 254, 0.42);
	background: linear-gradient(180deg, rgba(239, 246, 255, 0.96) 0%, rgba(219, 234, 254, 0.92) 100%);
	box-shadow: 0 8px 16px rgba(8, 47, 73, 0.18);
	color: #1d4ed8;
	flex: 0 0 auto;
}

.single-song-screen__detail-icon img {
	width: 16px;
	height: 16px;
	object-fit: contain;
	opacity: 0.96;
}

.single-song-screen__detail-value strong {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: -0.02em;
	word-break: break-word;
}

.single-song-screen__detail-value--copy strong {
	color: var(--primary);
	font-size: clamp(1.2rem, 2.6vw, 1.75rem);
	font-weight: 800;
	text-shadow: 0 8px 22px rgba(124, 58, 237, 0.22);
}

.single-song-screen__howto {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 16px;
}

.single-song-screen__howto-copy h2,
.single-song-screen__related h2 {
	margin: 0;
	font-size: 1.08rem;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.single-song-screen__howto-copy ol {
	margin: 14px 0 0;
	padding-left: 18px;
	color: #d7e0ec;
	line-height: 1.9;
}

.single-song-screen__howto-icon {
	color: rgba(148, 163, 184, 0.18);
	font-size: 5rem;
	width: 5rem;
	height: 5rem;
	flex: 0 0 auto;
}

.single-song-screen__related {
	display: grid;
	gap: 12px;
}

.single-song-screen__related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.single-song-screen__related-card {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) auto;
	gap: 10px;
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(13, 22, 37, 0.96) 0%, rgba(10, 18, 31, 0.96) 100%);
}

.single-song-screen__related-thumb {
	width: 56px;
	height: 56px;
	border-radius: 6px;
}

.single-song-screen__related-thumb span {
	font-size: 0.9rem;
}

.single-song-screen__related-copy {
	min-width: 0;
}

.single-song-screen__related-copy h3,
.single-song-screen__related-copy p,
.single-song-screen__related-copy span {
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.single-song-screen__related-copy h3 {
	font-size: 0.96rem;
	font-weight: 700;
}

.single-song-screen__related-copy p {
	margin-top: 4px;
	color: var(--muted);
	font-size: 0.88rem;
}

.single-song-screen__related-copy span {
	display: inline-block;
	margin-top: 4px;
	color: var(--primary);
	font-size: 0.88rem;
	font-weight: 700;
}

.single-song-screen__related-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-top: 4px;
}

.single-song-screen__related-meta > span {
	margin-top: 0;
}

.single-song-screen__related-likes {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #dbe7f5;
	font-size: 0.82rem;
	font-weight: 600;
}

.single-song-screen__related-likes img {
	width: 14px;
	height: 14px;
	object-fit: contain;
}

.single-song-screen__related-likes strong {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.single-song-screen__related-side-like {
	display: inline-flex;
	align-items: center;
	align-self: center;
	gap: 6px;
	padding: 6px 8px;
	border-radius: 999px;
	border: 1px solid rgba(191, 219, 254, 0.28);
	background: linear-gradient(180deg, rgba(239, 246, 255, 0.96) 0%, rgba(219, 234, 254, 0.92) 100%);
	box-shadow: 0 8px 16px rgba(8, 47, 73, 0.16);
	color: #1e3a8a;
	font-size: 0.8rem;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.single-song-screen__related-side-like img {
	width: 14px;
	height: 14px;
	object-fit: contain;
	opacity: 0.96;
	transition: filter 0.18s ease;
}

.single-song-screen__related-side-like strong {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.single-song-screen__related-side-like:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 10px 18px rgba(8, 47, 73, 0.2);
}

.single-song-screen__related-side-like:disabled {
	opacity: 0.72;
	cursor: wait;
}

.single-song-screen__related-side-like.is-liked {
	border-color: rgba(96, 165, 250, 0.5);
	background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
	box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
	color: #eff6ff;
}

.single-song-screen__related-side-like.is-liked img {
	filter: brightness(0) invert(1);
}

.single-song-screen__related-side-like.is-error {
	border-color: rgba(248, 113, 113, 0.52);
	box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.22);
}

.page-standard {
	padding-top: 18px;
}

.page-standard .site-shell {
	display: grid;
	gap: 6px;
	padding: 28px 30px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(13, 22, 37, 0.98) 0%, rgba(10, 18, 31, 0.98) 100%);
	box-shadow: 0 24px 56px rgba(1, 8, 18, 0.42);
}

.page-standard__intro {
	display: grid;
	gap: 16px;
}

.page-standard__title {
	margin: 0;
	font-family: "Bahnschrift", "Segoe UI Variable Display", "Segoe UI", sans-serif;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 700;
	letter-spacing: -0.055em;
}

.page-standard__summary {
	max-width: 58ch;
	margin: 0;
	color: var(--muted);
	font-size: 1.04rem;
	line-height: 1.8;
}

.submit-song-page__panel {
	max-width: 760px;
}

.page-standard__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 26px;
	padding: 14px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-standard__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.page-standard__meta-icon {
	color: #c4a3ff;
	font-size: 1rem;
	width: 1rem;
	height: 1rem;
}

.page-standard__meta-item p,
.page-standard__meta-item strong,
.page-standard__meta-item span {
	margin: 0;
}

.page-standard__meta-item p {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #d8e1ee;
	font-size: 1rem;
}

.page-standard__meta-item strong {
	color: #f8fafc;
	font-weight: 700;
}

.page-standard__meta-item span {
	color: #c9b7ff;
}

.page-standard__body {
	padding: 0;
	color: #e2e8f0;
	line-height: 1.85;
}

.page-standard__body > :first-child {
	margin-top: 0;
}

.single-song__intro {
	margin-bottom: 18px;
}

.single-song__title {
	margin-top: 16px;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.single-song__summary {
	max-width: 62ch;
	font-size: 1.03rem;
}

.single-song__meta {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.single-song__meta span {
	display: block;
	color: var(--muted);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.single-song__meta strong {
	display: block;
	margin-top: 8px;
	font-size: 1.04rem;
}

.single-song__body {
	margin-top: 18px;
	color: #e2e8f0;
	line-height: 1.8;
}

.single-song__body p:first-child {
	margin-top: 0;
}

.site-footer {
	margin-top: auto;
	padding: 8px 0 0;
}

.site-footer__card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 24px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	background:
		radial-gradient(circle at 12% 20%, rgba(124, 58, 237, 0.12), transparent 20%),
		linear-gradient(180deg, rgba(9, 15, 27, 0.94) 0%, rgba(6, 11, 22, 0.94) 100%);
	box-shadow: 0 20px 48px rgba(1, 8, 18, 0.36);
}

.site-footer__brand {
	display: grid;
	gap: 8px;
}

.site-footer__copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
}

.site-footer__copy strong {
	font-size: 1rem;
}

.site-footer__disclaimer {
	margin: 0;
	max-width: 62ch;
	color: rgba(203, 213, 225, 0.8);
	font-size: 0.86rem;
	line-height: 1.7;
}

.site-footer__meta {
	color: var(--muted);
	font-size: 0.88rem;
}

.site-footer__nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
}

.site-footer__nav a,
.site-footer__nav .menu-item > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	background: rgba(14, 22, 36, 0.82);
	color: #dbe4f0;
	font-size: 0.95rem;
	font-weight: 600;
	transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-footer__nav a:hover,
.site-footer__nav .menu-item > a:hover,
.site-footer__nav .current-menu-item > a {
	transform: translateY(-1px);
	border-color: rgba(168, 85, 247, 0.34);
	color: #fff;
}

.site-footer__nav .site-footer__link,
.site-footer__nav .menu-item.site-footer__link > a {
	padding: 0 18px;
	color: #fff;
}

.browse-page {
	padding-top: 26px;
}

.browse-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 30px;
	align-items: start;
}

.browse-main,
.browse-sidebar {
	display: grid;
	gap: 18px;
}

.browse-hero h1,
.browse-sidebar__hero-card strong {
	margin: 0;
	font-family: "Bahnschrift", "Segoe UI Variable Display", "Segoe UI", sans-serif;
	font-weight: 700;
	letter-spacing: -0.055em;
}

.browse-hero h1 {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.browse-hero h1 span {
	color: var(--primary);
}

.browse-hero p {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 1.16rem;
}

.browse-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.browse-filter {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 22px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	background: rgba(16, 26, 41, 0.92);
	color: #f8fafc;
	font-size: 1rem;
	font-weight: 600;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.browse-filter:hover,
.browse-filter.is-active {
	color: #fff;
	background: linear-gradient(90deg, #7c3aed 0%, #b14cff 100%);
	border-color: rgba(185, 74, 255, 0.65);
}

.browse-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 2px;
}

.browse-toolbar__count {
	color: #dbe4f0;
	font-size: 1.12rem;
}

.browse-toolbar__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.browse-sort select {
	min-width: 192px;
	height: 52px;
	padding: 0 48px 0 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	background: rgba(15, 25, 41, 0.96);
	color: #e5ecf6;
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #94a3b8 50%),
		linear-gradient(135deg, #94a3b8 50%, transparent 50%);
	background-position:
		calc(100% - 22px) 23px,
		calc(100% - 16px) 23px;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.browse-view-toggle {
	display: inline-grid;
	grid-template-columns: repeat(2, 52px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	overflow: hidden;
}

.browse-view-toggle a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	background: rgba(15, 25, 41, 0.96);
	color: #c4d0df;
}

.browse-view-toggle .is-active {
	background: rgba(124, 58, 237, 0.16);
	color: var(--primary);
}

.browse-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.browse-grid-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(13, 22, 37, 0.98) 0%, rgba(10, 18, 31, 0.98) 100%);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.browse-grid-card__cover {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	background: linear-gradient(135deg, var(--cover-start) 0%, var(--cover-end) 100%);
	overflow: hidden;
}

.browse-grid-card__cover::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.browse-grid-card__cover img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.browse-grid-card__cover span {
	position: relative;
	z-index: 1;
	color: rgba(255, 255, 255, 0.96);
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.05em;
}

.browse-grid-card__body {
	padding: 18px;
}

.browse-grid-card__body h2,
.browse-grid-card__meta,
.browse-grid-card__artist {
	margin: 0;
}

.browse-grid-card__body h2 {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.04rem;
	font-weight: 700;
}

.browse-grid-card__meta {
	margin-top: 10px;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.browse-grid-card__artist {
	margin-top: 12px;
	color: #dbe4f0;
	font-size: 0.98rem;
}

.browse-grid-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
}

.browse-grid-card__id {
	color: var(--primary);
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.browse-table {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(13, 22, 37, 0.98) 0%, rgba(10, 18, 31, 0.98) 100%);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.browse-table__head,
.browse-row {
	display: grid;
	grid-template-columns: 60px minmax(320px, 1.45fr) minmax(180px, 0.9fr) minmax(150px, 0.72fr);
	align-items: center;
	gap: 18px;
	padding: 0 28px;
}

.browse-table__head {
	min-height: 58px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	color: #c5d2e2;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
}

.browse-table__head div:nth-child(4) {
	color: var(--primary);
}

.browse-row {
	min-height: 102px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browse-row:last-child {
	border-bottom: 0;
}

.browse-row__index,
.browse-row__artist {
	color: #dce5f1;
	font-size: 0.98rem;
}

.browse-row__id {
	justify-self: start;
	width: auto;
	min-width: 0;
	height: 42px;
	padding: 0 14px;
	color: var(--primary);
	font-size: 0.96rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.browse-row__song {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.browse-row__thumb {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 6px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--cover-start) 0%, var(--cover-end) 100%);
}

.browse-row__thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.browse-row__thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.browse-row__thumb span {
	position: relative;
	z-index: 1;
	color: rgba(255, 255, 255, 0.96);
	font-size: 1.08rem;
	font-weight: 800;
}

.browse-row__song-copy {
	min-width: 0;
}

.browse-row__song-copy h2,
.browse-row__song-copy p,
.browse-artist__copy h3,
.browse-artist__copy p {
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.browse-row__song-copy h2 {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1rem;
	font-weight: 700;
}

.browse-row__song-copy p {
	margin-top: 8px;
	color: var(--muted);
	font-size: 0.95rem;
}

.browse-row__verified {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 6px;
	background: var(--primary);
	color: #fff;
	font-size: 0.74rem;
	line-height: 1;
}

.browse-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-top: 2px;
}

.browse-pagination__link,
.browse-pagination__dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 46px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(13, 22, 37, 0.96);
	color: #e8eef8;
}

.browse-pagination__link:first-child,
.browse-pagination__dots:first-child {
	border-radius: 6px 0 0 6px;
}

.browse-pagination__link:last-child {
	border-radius: 0 6px 6px 0;
}

.browse-pagination__link.is-active {
	background: linear-gradient(180deg, rgba(124, 58, 237, 0.95) 0%, rgba(141, 69, 243, 0.95) 100%);
	color: #fff;
}

.browse-pagination__dots {
	color: #94a3b8;
}

.browse-sidebar__hero-card,
.browse-sidebar__panel {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	box-shadow: var(--shadow);
}

.browse-sidebar__hero-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 28px 24px;
	background: linear-gradient(135deg, rgba(76, 20, 137, 0.98) 0%, rgba(41, 18, 81, 0.98) 100%);
}

.browse-sidebar__hero-card strong {
	display: block;
	font-size: 3.3rem;
	line-height: 1;
}

.browse-sidebar__hero-card h2 {
	margin: 12px 0 0;
	font-size: 1.16rem;
}

.browse-sidebar__hero-card p {
	margin: 14px 0 0;
	max-width: 26ch;
	color: #c9b8ef;
	line-height: 1.7;
}

.browse-sidebar__hero-card .dashicons {
	color: #9f57ff;
	font-size: 5.3rem;
	width: 5.3rem;
	height: 5.3rem;
}

.browse-sidebar__panel {
	padding: 22px 20px;
	background: linear-gradient(180deg, rgba(13, 22, 37, 0.98) 0%, rgba(10, 18, 31, 0.98) 100%);
}

.browse-sidebar__panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}

.browse-sidebar__panel-head h2 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
}

.browse-sidebar__panel-head h2 span:first-child {
	color: var(--primary);
}

.browse-sidebar__panel-head a {
	color: var(--primary);
	font-size: 0.95rem;
	font-weight: 600;
}

.browse-submission {
	display: grid;
	gap: 10px;
}

.browse-submission label {
	color: #dbe4f0;
	font-size: 0.88rem;
	font-weight: 600;
}

.browse-submission input,
.browse-submission textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	background: rgba(10, 18, 31, 0.96);
	color: #f8fafc;
	outline: none;
}

.browse-submission textarea {
	resize: vertical;
	min-height: 96px;
}

.browse-submission input:focus,
.browse-submission textarea:focus {
	border-color: rgba(168, 85, 247, 0.36);
	box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.18);
}

.browse-submission__note {
	margin: 0 0 12px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	font-size: 0.9rem;
	line-height: 1.6;
}

.browse-submission__note--success {
	border-color: rgba(74, 222, 128, 0.32);
	background: rgba(20, 83, 45, 0.18);
	color: #bbf7d0;
}

.browse-submission__note--error {
	border-color: rgba(248, 113, 113, 0.3);
	background: rgba(127, 29, 29, 0.2);
	color: #fecaca;
}

.browse-search-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.browse-search-tags a {
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 6px;
	background: rgba(15, 25, 41, 0.96);
	color: #f8fafc;
}

.browse-artists {
	display: grid;
	gap: 18px;
}

.browse-artist {
	display: grid;
	grid-template-columns: 20px 40px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
}

.browse-artist__rank {
	color: #d8e1ee;
	font-size: 0.98rem;
}

.browse-artist__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 6px;
	background: linear-gradient(135deg, #6f39ff 0%, #ff6f9c 100%);
	color: #fff;
	font-size: 0.92rem;
	font-weight: 800;
}

.browse-artist__copy h3 {
	font-size: 1rem;
	font-weight: 700;
}

.browse-artist__copy p {
	margin-top: 4px;
	color: var(--muted);
	font-size: 0.95rem;
}

.categories-page {
	padding-top: 22px;
}

.categories-page__shell {
	display: block;
}

.categories-screen {
}

.categories-screen__hero h1 {
	margin: 0;
	font-family: "Bahnschrift", "Segoe UI Variable Display", "Segoe UI", sans-serif;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 700;
	letter-spacing: -0.05em;
}

.categories-screen__hero p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 1.08rem;
}

.categories-screen__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.categories-screen__card {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 92px;
	padding: 0 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(17, 26, 40, 0.98) 0%, rgba(13, 22, 35, 0.98) 100%);
	box-shadow: 0 18px 44px rgba(1, 8, 18, 0.45);
	transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.categories-screen__card:hover {
	transform: translateY(-1px);
	border-color: rgba(168, 85, 247, 0.34);
}

.categories-screen__icon {
	color: #b866ff;
	font-size: 2.2rem;
	width: 2.2rem;
	height: 2.2rem;
	filter: drop-shadow(0 0 12px rgba(185, 74, 255, 0.34));
}

.categories-screen__copy {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.categories-screen__copy strong,
.categories-screen__copy small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.categories-screen__copy strong {
	font-size: 1.08rem;
	font-weight: 700;
}

.categories-screen__copy small {
	color: var(--muted);
	font-size: 0.94rem;
}

.category-detail-page {
	padding-top: 6px;
}

.category-detail {
	display: grid;
	gap: 18px;
	align-items: start;
}

.category-detail__main,
.category-detail__sidebar {
	display: grid;
	gap: 18px;
}

.category-detail__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 412px;
	gap: 18px;
	align-items: start;
}

.category-detail__content-main {
	display: grid;
	gap: 12px;
}

.category-detail__breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	color: #b8c4d4;
	font-size: 0.98rem;
}

.category-detail__breadcrumb strong:last-child {
	color: var(--primary);
	font-weight: 500;
}

.category-detail__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 430px;
	gap: 22px;
	align-items: start;
}

.category-detail__intro h1 {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	font-family: "Bahnschrift", "Segoe UI Variable Display", "Segoe UI", sans-serif;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 700;
	letter-spacing: -0.055em;
}

.category-detail__intro h1 .dashicons {
	color: var(--primary);
	font-size: 3rem;
	width: 3rem;
	height: 3rem;
}

.category-detail__intro p {
	margin: 14px 0 0;
	max-width: 34ch;
	color: var(--muted);
	font-size: 1.14rem;
	line-height: 1.7;
}

.category-detail__filters {
	display: inline-grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 34px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(15, 24, 39, 0.96) 0%, rgba(11, 19, 32, 0.96) 100%);
	overflow: hidden;
}

.category-detail__filter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 56px;
	padding: 0 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
	color: #eef3fb;
	font-size: 0.98rem;
	font-weight: 600;
}

.category-detail__filter:last-child {
	border-right: 0;
}

.category-detail__filter.is-active,
.category-detail__filter:hover {
	background: linear-gradient(90deg, #7c3aed 0%, #b14cff 100%);
	color: #fff;
}

.category-detail__hero-side {
	display: grid;
	gap: 16px;
}

.category-detail__visual,
.category-detail__stat-card,
.category-detail__list,
.category-detail__panel,
.category-detail__meta {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	box-shadow: var(--shadow);
}

.category-detail__visual {
	position: relative;
	min-height: 256px;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 40%, rgba(155, 88, 255, 0.16), transparent 28%),
		linear-gradient(180deg, rgba(10, 17, 31, 0.98) 0%, rgba(7, 13, 24, 0.98) 100%);
}

.category-detail__visual-note {
	position: absolute;
	top: 34px;
	left: 50%;
	color: #c084fc;
	font-size: 8.8rem;
	width: 8.8rem;
	height: 8.8rem;
	filter: drop-shadow(0 0 18px rgba(192, 132, 252, 0.56));
	transform: translateX(-50%);
}

.category-detail__float {
	position: absolute;
	color: #8b45f3;
	font-size: 2rem;
	line-height: 1;
	opacity: 0.9;
	text-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
}

.category-detail__float--1 {
	top: 72px;
	left: 58px;
}

.category-detail__float--2 {
	top: 40px;
	right: 66px;
	font-size: 1.55rem;
}

.category-detail__float--3 {
	top: 120px;
	right: 114px;
	font-size: 1.75rem;
}

.category-detail__stat-card {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 92px;
	padding: 0 20px;
	background: linear-gradient(180deg, rgba(17, 26, 40, 0.98) 0%, rgba(12, 20, 33, 0.98) 100%);
}

.category-detail__stat-card .dashicons {
	color: var(--primary);
	font-size: 2.6rem;
	width: 2.6rem;
	height: 2.6rem;
	filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.32));
}

.category-detail__stat-card strong {
	display: block;
	margin: 0;
	font-size: 2.2rem;
	font-weight: 800;
	letter-spacing: -0.05em;
}

.category-detail__stat-card p {
	margin: 6px 0 0;
	color: #d8e2ef;
	font-size: 0.96rem;
}

.category-detail__list {
	overflow: hidden;
	background: linear-gradient(180deg, rgba(13, 22, 37, 0.98) 0%, rgba(10, 18, 31, 0.98) 100%);
}

.category-detail__row {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) 170px 86px;
	align-items: center;
	gap: 18px;
	min-height: 112px;
	padding: 0 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-detail__row:last-child {
	border-bottom: 0;
}

.category-detail__rank {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	background: rgba(11, 19, 32, 0.94);
	color: var(--primary);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.category-detail__song {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.category-detail__thumb {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 6px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--cover-start) 0%, var(--cover-end) 100%);
}

.category-detail__thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.category-detail__thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.category-detail__thumb span {
	position: relative;
	z-index: 1;
	font-size: 1rem;
	font-weight: 800;
}

.category-detail__song-copy {
	min-width: 0;
}

.category-detail__song-copy h2,
.category-detail__song-copy p,
.category-detail__artist-copy h3,
.category-detail__artist-copy p {
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.category-detail__song-copy h2 {
	font-size: 1rem;
	font-weight: 700;
}

.category-detail__song-copy p {
	margin-top: 8px;
	color: #d7e0ec;
	font-size: 0.96rem;
}

.category-detail__id {
	color: var(--primary);
	font-size: 1rem;
	font-weight: 700;
	text-align: right;
	letter-spacing: -0.02em;
}

.category-detail__action {
	display: flex;
	justify-content: flex-end;
}

.category-detail__pagination {
	margin-top: 12px;
}

.category-detail__panel {
	padding: 18px 20px;
	background: linear-gradient(180deg, rgba(13, 22, 37, 0.98) 0%, rgba(10, 18, 31, 0.98) 100%);
}

.category-detail__panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}

.category-detail__panel-head h2 {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
}

.category-detail__panel-head a {
	color: var(--primary);
	font-size: 0.95rem;
	font-weight: 600;
}

.category-detail__artists {
	display: grid;
	gap: 16px;
}

.category-detail__artist {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
}

.category-detail__artist-avatar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 6px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--cover-start) 0%, var(--cover-end) 100%);
}

.category-detail__artist-avatar img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-detail__artist-avatar span {
	position: relative;
	z-index: 1;
	font-size: 0.92rem;
	font-weight: 800;
}

.category-detail__artist-copy h3 {
	font-size: 1rem;
	font-weight: 700;
}

.category-detail__artist-copy p,
.category-detail__empty-copy {
	color: var(--muted);
	font-size: 0.95rem;
}

.category-detail__empty-copy {
	margin: 0;
	line-height: 1.7;
}

.category-detail__meta {
	display: grid;
	gap: 8px;
	padding: 18px 20px;
	background: linear-gradient(180deg, rgba(13, 22, 37, 0.98) 0%, rgba(10, 18, 31, 0.98) 100%);
}

.category-detail__meta span {
	color: var(--muted);
	font-size: 0.88rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.category-detail__meta strong {
	font-size: 1.02rem;
	font-weight: 700;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

@keyframes float {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, -10px, 0);
	}
}

@media (max-width: 1180px) {
	.site-shell {
		width: min(100% - 32px, 1280px);
	}

	.site-header__bar {
		grid-template-columns: 1fr;
		justify-items: start;
		padding: 16px 0;
	}

	.site-nav {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.site-header__search {
		width: 100%;
	}

	.hero__content,
	.hero__visual,
	.song-list,
	.page-standard__meta,
	.single-song__meta,
	.single-song-screen__hero {
		grid-template-columns: 1fr;
	}

	.hero-figure {
		order: 2;
	}

	.hero-metrics {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.feature-strip,
	.category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-guide__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-guide__card--steps {
		grid-column: 1 / -1;
	}

	.home-faq__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.music-carousel {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.search-results__grid,
	.song-grid,
	.single-song-screen__related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.browse-layout {
		grid-template-columns: 1fr;
	}

	.category-detail__content,
	.category-detail__hero {
		grid-template-columns: 1fr;
	}

	.browse-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.categories-screen__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.browse-sidebar {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}

	.browse-sidebar__hero-card {
		grid-column: 1 / -1;
	}

	.category-detail__sidebar {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}

	.category-detail__meta {
		grid-column: 1 / -1;
	}
}

@media (max-width: 900px) {
	.site-header__bar {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		justify-items: stretch;
		gap: 14px 18px;
	}

	.site-header__toggle {
		display: inline-flex;
		justify-self: end;
	}

	.site-header__panel {
		display: none;
		grid-column: 1 / -1;
		width: 100%;
		padding-top: 4px;
	}

	.site-header__bar.is-nav-open .site-header__panel {
		display: grid;
		gap: 12px;
	}

	.site-header__bar.is-nav-open .site-header__toggle-line:nth-child(2) {
		transform: translateY(7px) rotate(45deg);
	}

	.site-header__bar.is-nav-open .site-header__toggle-line:nth-child(3) {
		opacity: 0;
	}

	.site-header__bar.is-nav-open .site-header__toggle-line:nth-child(4) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.site-nav,
	.site-nav__list {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}

	.site-nav a,
	.site-nav .menu-item > a {
		display: block;
		padding: 13px 14px;
		border: 1px solid rgba(255, 255, 255, 0.06);
		border-radius: 6px;
		background: rgba(12, 20, 34, 0.92);
	}

	.site-nav a::after,
	.site-nav .menu-item > a::after {
		left: 12px;
		right: 12px;
		bottom: 3px;
	}

	.site-header__search {
		width: 100%;
	}
}

@media (max-width: 860px) {
	.hero__copy h1 {
		max-width: none;
		font-size: clamp(2.2rem, 4vw, 3.2rem);
	}

	.hero__copy p {
		font-size: 1.1rem;
	}

	.hero-search,
	.cta-panel,
	.site-footer__card,
	.section-heading {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-search .button-primary,
	.button-primary--wide {
		width: 100%;
		min-height: 56px;
	}

	.hero-metrics {
		grid-template-columns: 1fr;
	}

	.feature-strip,
	.music-carousel,
	.category-grid,
	.home-guide__grid,
	.home-faq__grid,
	.search-results__grid,
	.song-grid,
	.page-standard__meta,
	.single-song-screen__related-grid {
		grid-template-columns: 1fr;
	}

	.browse-toolbar,
	.browse-toolbar__actions,
	.browse-sidebar__hero-card,
	.category-detail__stat-card,
	.single-song-screen__howto {
		flex-direction: column;
		align-items: stretch;
	}

	.browse-sidebar,
	.category-detail__sidebar {
		grid-template-columns: 1fr;
	}

	.browse-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.categories-screen__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.browse-table__head {
		display: none;
	}

	.browse-row {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 18px;
	}

	.browse-row__index::before {
		content: "# ";
		color: var(--muted);
	}

	.browse-row__artist::before {
		content: "Artist: ";
		color: var(--muted);
	}

	.browse-row__id::before {
		content: "Song ID: ";
		color: var(--muted);
	}

	.category-detail__filters {
		display: grid;
	}

	.category-detail__row {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 18px;
	}

	.category-detail__id,
	.category-detail__action {
		text-align: left;
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.site-main {
		padding-top: 24px;
	}

	.page-standard .site-shell {
		padding: 20px;
	}

	.hero-figure {
		min-height: 340px;
	}

	.hero-robot {
		transform: translateX(-50%) scale(0.82);
		transform-origin: center bottom;
	}

	.feature-card,
	.song-row,
	.song-card,
	.archive-banner,
	.single-song__meta,
	.single-song__body,
	.single-song-screen__shell,
	.cta-panel,
	.category-card {
		padding: 18px;
	}

	.song-row {
		flex-direction: column;
		align-items: stretch;
	}

	.song-row__actions,
	.song-card__bottom {
		justify-content: space-between;
	}

	.cta-panel__copy {
		align-items: flex-start;
	}

	.cta-panel h2,
	.section-heading h2 {
		font-size: 1.65rem;
	}

	.browse-hero h1 {
		font-size: clamp(2.2rem, 4vw, 3.2rem);
	}

	.browse-grid {
		grid-template-columns: 1fr;
	}

	.categories-screen__grid {
		grid-template-columns: 1fr;
	}

	.single-song-screen__hero {
		gap: 14px;
	}

	.single-song-screen__engagement {
		gap: 10px 12px;
	}

	.single-song-screen__details-list {
		grid-template-columns: 1fr;
	}

	.single-song-screen__detail-item,
	.single-song-screen__detail-item:first-child,
	.single-song-screen__detail-value--copy {
		flex-direction: column;
		align-items: flex-start;
	}

	.single-song-screen__detail-value {
		justify-content: flex-start;
		text-align: left;
	}

	.song-copy--inline {
		min-width: 0;
	}

	.single-song-screen__howto-icon {
		display: none;
	}

	.category-detail__intro h1 {
		font-size: clamp(2.2rem, 4vw, 3.2rem);
	}

	.category-detail__intro p {
		font-size: 1rem;
	}

	.category-detail__filter {
		padding: 0 18px;
	}

	.category-detail__visual {
		min-height: 220px;
	}

	.category-detail__visual-note {
		top: 42px;
		font-size: 7.1rem;
		width: 7.1rem;
		height: 7.1rem;
	}

	.browse-filters {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.browse-filter,
	.browse-sort select,
	.browse-view-toggle {
		width: 100%;
	}

	.browse-toolbar__actions {
		width: 100%;
	}

	.browse-view-toggle {
		grid-template-columns: 1fr 1fr;
	}

}
