/* global.css — loaded render-blocking on EVERY page.
   CSS variables, reset, base typography, nav, footer, and all shared/
   cross-page components (score badges, credit bars, artist-card grid,
   page hero, filters, section titles, breadcrumb, methodology, sources,
   data note, coming-soon, schedule table, 404). Split from main.css. */

/* =====================================================
	 SongSuey: Universe Dark (v2)
	 ===================================================== */

.email-text {
	unicode-bidi: bidi-override;
	direction: rtl;
	display: inline-block;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

:root {
	--bg: #060b17;
	--surface: #0f1825;
	--surface-2: #162030;
	--border: #1d3045;
	--text: #cdd9e5;
	--text-muted: #8b9bb4;
	--score-high: #3ddc84;
	--score-mid: #ffd23f;
	--score-low: #ff6b6b;
	--score-none: #ff6b6b;
	--accent: #56b0ff;
	--accent-2: #b07bfc;
	--accent-3: #f857a6;
	--accent-4: #3dd6f5;
	--gradient-accent: linear-gradient(135deg, #b07bfc 0%, #f857a6 50%, #56b0ff 100%);
	--gradient-high: linear-gradient(135deg, #3ddc84, #1a7a4a);
	--gradient-mid: linear-gradient(135deg, #ffd23f, #c8960a);
	--gradient-low: linear-gradient(135deg, #ff6b6b, #c03030);
	--gradient-none: linear-gradient(135deg, #ff6b6b, #c03030);
	--font: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	--font-mono: "Roboto Mono", "SF Mono", "Fira Code", Consolas, monospace;
	--radius: 8px;
	--max-width: 1200px;
}

@property --border-angle {
	syntax: '<angle>';
	initial-value: 135deg;
	inherits: false;
}

@keyframes border-rotate {
	to { --border-angle: 495deg; }
}

@keyframes card-glow {
	0%, 100% {
		box-shadow:
			-4px 0 14px rgba(176, 123, 252, 0.12),
			0 4px 14px rgba(248, 87, 166, 0.09),
			4px 0 14px rgba(86, 176, 255, 0.12),
			0 2px 8px rgba(0, 0, 0, 0.3);
	}
	50% {
		box-shadow:
			-6px 0 26px rgba(176, 123, 252, 0.26),
			0 6px 22px rgba(248, 87, 166, 0.18),
			6px 0 26px rgba(86, 176, 255, 0.22),
			0 2px 8px rgba(0, 0, 0, 0.3);
	}
}

/* =====================================================
	 Reset & Base
	 ===================================================== */

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg);
	color: var(--text);
	font-family: var(--font);
	line-height: 1.6;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

body > *:not(.site-header):not(.site-footer) {
	flex: 1;
}

a {
	color: var(--accent);
	text-decoration: none;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	display: block;
}

/* =====================================================
	 Layout
	 ===================================================== */

.main-content {
	flex: 1;
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 2rem 1.5rem 4rem;
}

/* =====================================================
	 Nav
	 ===================================================== */

.site-header {
	background: rgba(6, 11, 23, 0.82);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 100;
	-webkit-transition: background 0.25s, border-color 0.25s, -webkit-backdrop-filter 0.25s;
	transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
}


.page-home .nav__logo {
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.25s;
	transition: opacity 0.25s;
}

.page-home .site-header.site-header--scrolled .nav__logo {
	opacity: 1;
	pointer-events: auto;
}


.nav {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 56px;
}

.nav__logo {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 1.35rem;
	font-weight: 700;
	color: #dddddd;
	letter-spacing: -0.03em;
	text-decoration: none;
}

.nav__logo-icon {
	flex-shrink: 0;
	opacity: 0.95;
}

.nav__logo-accent {
	background: linear-gradient(135deg, #f857a6, #b07bfc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.nav__logo:hover {
	color: var(--text);
	text-decoration: none;
}

.nav__logo:hover .nav__logo-icon {
	opacity: 1;
}

.nav__logo:hover .nav__logo-accent {
	background: linear-gradient(135deg, #b07bfc, #f857a6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.nav__links {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.nav__links a {
	color: var(--text-muted);
	font-size: 0.9rem;
	text-decoration: none;
	transition: color 0.15s;
}

.nav__links a:hover {
	color: var(--text);
	text-decoration: none;
}

.nav__hamburger {
	display: none;
	background: none;
	border: none;
	color: var(--text-muted);
	font-size: 1.1rem;
	cursor: pointer;
	padding: 6px 8px;
	border-radius: 6px;
	line-height: 1;
	transition: color 0.15s, background 0.15s;
	font-family: inherit;
}

.nav__hamburger:hover {
	color: var(--text);
	background: rgba(255, 255, 255, 0.06);
}

/* =====================================================
	 Footer
	 ===================================================== */

.site-footer {
	background: var(--surface);
	border-top: 1px solid var(--border);
	padding: 1.5rem;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.85rem;
}

.site-footer a {
	color: var(--text);
	border-bottom: 1px dotted color-mix(in srgb, var(--text) 45%, transparent);
	transition: border-color 0.15s, color 0.15s;
}

.site-footer a:hover {
	color: #fff;
	text-decoration: none;
}

/* =====================================================
	 Score Badges
	 ===================================================== */

.score-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.25em 0.75em;
	border-radius: 9999px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.score-badge.score-high {
	background: rgba(61, 220, 132, 0.1);
	border: 1px solid rgba(61, 220, 132, 0.38);
	color: #3ddc84;
	box-shadow: 0 0 10px rgba(61, 220, 132, 0.18);
}
.score-badge.score-mid {
	background: rgba(255, 210, 63, 0.1);
	border: 1px solid rgba(255, 210, 63, 0.38);
	color: #ffd23f;
	box-shadow: 0 0 10px rgba(255, 210, 63, 0.18);
}
.score-badge.score-low {
	background: rgba(255, 107, 107, 0.1);
	border: 1px solid rgba(255, 107, 107, 0.38);
	color: #ff6b6b;
	box-shadow: 0 0 10px rgba(255, 107, 107, 0.18);
}
.score-badge.score-none {
	background: rgba(255, 107, 107, 0.1);
	border: 1px solid rgba(255, 107, 107, 0.38);
	color: #ff6b6b;
	box-shadow: 0 0 10px rgba(255, 107, 107, 0.18);
}

/* =====================================================
	 Credit Bars
	 ===================================================== */

.credit-cell {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 80px;
}

.credit-pct {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text);
	font-family: var(--font-mono);
}

.credit-bar {
	background: var(--border);
	height: 8px;
	border-radius: 4px;
	overflow: hidden;
}

.credit-bar__fill {
	height: 100%;
	width: var(--pct, 0%);
	border-radius: 4px;
	transition: width 0.3s ease;
}
.credit-bar__fill.score-high {
	background: #3ddc84;
	box-shadow: 0 0 5px rgba(61, 220, 132, 0.3);
}
.credit-bar__fill.score-mid {
	background: #ffd23f;
	box-shadow: 0 0 5px rgba(255, 210, 63, 0.3);
}
.credit-bar__fill.score-low {
	background: #ff6b6b;
	box-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}
.credit-bar__fill.score-none {
	background: #ff6b6b;
	box-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}

/* =====================================================
	 Section Titles
	 ===================================================== */


.section-title {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin-bottom: 1.25rem;
	color: var(--text);
}

.section-subtitle {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-top: -0.75rem;
	margin-bottom: 1.25rem;
}

/* =====================================================
	 Artist Grid (Home)
	 ===================================================== */

.artist-grid-section {
	margin-bottom: 3rem;
}

.artist-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1rem;
}

.artist-card {
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: var(--radius);
	padding: 1.5rem;
	text-decoration: none;
	color: var(--text);
	background:
		linear-gradient(var(--surface), var(--surface)) padding-box,
		linear-gradient(135deg, rgba(176, 123, 252, 0.25), rgba(248, 87, 166, 0.2), rgba(86, 176, 255, 0.25)) border-box;
	transition: box-shadow 0.35s ease;
}

.artist-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 60% at 90% 10%, rgba(176, 123, 252, 0.07), transparent);
	pointer-events: none;
}

.artist-card:hover {
	text-decoration: none;
	color: var(--text);
	background:
		linear-gradient(var(--surface), var(--surface)) padding-box,
		linear-gradient(var(--border-angle), rgba(176, 123, 252, 0.7), rgba(248, 87, 166, 0.6), rgba(86, 176, 255, 0.7)) border-box;
	animation: border-rotate 8s linear infinite, card-glow 2.5s ease-in-out infinite;
}

.artist-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.artist-card__name {
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	flex: 1;
}

.artist-card__meta {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 0.25rem;
}

.artist-card__meta--dim {
	opacity: 0.5;
}

.artist-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 0.75rem;
	border-top: 1px solid var(--border);
}

.artist-label {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: linear-gradient(135deg, var(--text-muted), #6a7a94);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.artist-card[data-label="complete artist"] .artist-label,
.artist-card[data-label="artist"] .artist-label {
	background: var(--gradient-high);
	-webkit-background-clip: text;
	background-clip: text;
}

.artist-card[data-label="songwriter"] .artist-label {
	background: var(--gradient-mid);
	-webkit-background-clip: text;
	background-clip: text;
}

.artist-card[data-label="collaborator"] .artist-label {
	background: var(--gradient-low);
	-webkit-background-clip: text;
	background-clip: text;
}

.artist-card__albums {
	font-size: 0.75rem;
	color: var(--text-muted);
	font-family: var(--font-mono);
}

/* =====================================================
	 Methodology Section (Home)
	 ===================================================== */

.methodology {
	margin-bottom: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

.methodology__content {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
}

.methodology__item h3 {
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text);
}

.methodology__item p,
.methodology__item ul {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.7;
}

.label-list {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.label-list li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-muted);
	font-size: 0.9rem;
}

/* =====================================================
	 Album Grid
	 ===================================================== */

.album-section {
	margin-bottom: 3rem;
}

.discography-group {
	margin-bottom: 2.5rem;
}

.discography-group + .discography-group {
	padding-top: 0.5rem;
	border-top: 1px solid var(--border);
}

.discography-group__title {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	margin-bottom: 1rem;
}

.album-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1rem;
}

.album-card {
	display: block;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.25rem;
	text-decoration: none;
	color: var(--text);
	transition: border-color 0.15s, background 0.15s;
}

.album-card:hover {
	border-color: rgba(176, 123, 252, 0.45);
	background: var(--surface-2);
	text-decoration: none;
	color: var(--text);
	box-shadow: 0 4px 16px rgba(176, 123, 252, 0.1);
}

.album-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.album-card__year {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text-muted);
	font-family: var(--font-mono);
}

.album-card__title {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin-bottom: 0.3rem;
	line-height: 1.3;
}

.album-card__label {
	font-size: 0.82rem;
	color: var(--text-muted);
	margin-bottom: 0.75rem;
}

.album-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding-top: 0.65rem;
	border-top: 1px solid var(--border);
}

.album-card__tracks,
.album-card__producers {
	font-size: 0.78rem;
	color: var(--text-muted);
}

.album-card__producers {
	text-align: right;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* =====================================================
	 Album Page (new layout)
	 The album-page styles now live in the "Album Page (new layout)"
	 block at the END of this file (ported from the album-design preview).
	 ===================================================== */

/* =====================================================
	 Data Note
	 ===================================================== */

.data-note {
	margin: 2rem 0;
	padding: 1rem 1.25rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-left: 3px solid var(--text-muted);
	border-radius: var(--radius);
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* =====================================================
	 Sources
	 ===================================================== */

.sources {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

.sources__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.sources__list li {
	font-size: 0.88rem;
}

.sources__list a {
	color: var(--text-muted);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.sources__list a:hover {
	color: var(--accent);
}

/* =====================================================
	 Breadcrumb
	 ===================================================== */

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.breadcrumb a {
	color: #566a7f;
	text-decoration: none;
	border-bottom: 1px dotted #253040;
	transition: color .15s, border-color .15s;
}

.breadcrumb a:hover {
	color: #b07bfc;
	text-decoration: none;
	border-color: rgba(176,123,252,.4);
}

.breadcrumb__sep {
	color: #1e2e3e;
	font-size: 0.6rem;
}

.breadcrumb__current {
	color: #8b9bb4;
}

/* =====================================================
	 Responsive
	 ===================================================== */

@media (max-width: 991px) {
	.nav__hamburger {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.nav {
		flex-wrap: wrap;
		height: auto;
		min-height: 56px;
	}

	.nav__links {
		display: none;
		flex-direction: column;
		width: 100%;
		gap: 0;
		padding: 4px 0 10px;
		border-top: 1px solid var(--border);
	}

	.nav__links.is-open {
		display: flex;
	}

	.nav__links > li {
		list-style: none;
	}

	.nav__links a {
		display: block;
		padding: 11px 0;
		font-size: 0.95rem;
	}
}


/* Deceased artist tag */
.died-tag {
	display: inline-block;
	margin-left: 0.4em;
	padding: 0.1em 0.45em;
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: 9999px;
	font-size: 0.7rem;
	color: var(--text-muted);
	font-weight: 400;
	vertical-align: middle;
}

/* Cross-links to artist pages within credit tables */
.credit-link {
	color: var(--accent);
	text-decoration: none;
	border-bottom: 1px dotted color-mix(in srgb, var(--accent) 45%, transparent);
	transition: border-color 0.15s;
}

.credit-link:hover {
	border-bottom-color: var(--accent);
}




/* New badge */
.artist-card__name-row {
	display: flex;
	align-items: center;
}

.new-tag {
	position: absolute;
	bottom: 0.3rem;
	right: -1.85rem;
	width: 5.5rem;
	text-align: center;
	font-size: 0.55rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	background: #a2456e;
	padding: 0.2rem 0;
	transform: rotate(-45deg);
	pointer-events: none;
}

@supports (color: color-mix(in srgb, red, blue)) {
	.new-tag {
		background: color-mix(in srgb, var(--accent-3) 65%, #0f0f0f);
	}
}

/* Dev-only upcoming section */
.artist-card--unreleased {
}

.artist-card__release {
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-top: 0.5rem;
	padding-top: 0.4rem;
	border-top: 1px solid var(--border);
}

.artist-card__release-rel {
	color: var(--accent-3);
	margin-left: 0.4em;
}

/* Date added */
.artist-card__date {
	font-size: 0.7rem;
	color: var(--text-muted);
	letter-spacing: 0.02em;
}

/* Page hero (artists listing, schedule) */
.page-hero {
	padding: 3rem 0 2rem;
	border-bottom: 1px solid var(--border);
	margin-bottom: 2.5rem;
}

.page-hero__title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.05;
	margin-bottom: 0.5rem;
}

.page-hero__sub {
	color: var(--text-muted);
	font-size: 0.95rem;
}

/* Upcoming teaser */
.upcoming-teaser {
	margin-top: 1.5rem;
	font-size: 0.88rem;
	color: var(--text-muted);
}

.upcoming-teaser a {
	color: var(--accent);
}

/* Coming soon page */
.coming-soon {
	padding: 4rem 0 3rem;
	max-width: 520px;
}

.coming-soon__name {
	font-size: clamp(1.6rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: 1rem;
}

.coming-soon__message {
	color: var(--text-muted);
	font-size: 1rem;
	margin-bottom: 0.4rem;
}

.coming-soon__date {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 1.25rem;
}

.coming-soon__link {
	font-size: 0.9rem;
	color: var(--accent);
}

/* Schedule table */
.schedule-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--border);
	border-radius: var(--radius);
}

.schedule-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.88rem;
}

.schedule-table th {
	background: var(--surface-2);
	padding: 0.7rem 1rem;
	text-align: left;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-muted);
	border-bottom: 1px solid var(--border);
	white-space: nowrap;
}

.schedule-table td {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid var(--border);
	vertical-align: middle;
}

.schedule-row:last-child td {
	border-bottom: none;
}

.schedule-row--upcoming td {
	opacity: 0.55;
}
.schedule-link--upcoming {
	color: inherit;
	text-decoration: none;
}
.schedule-link--upcoming:hover {
	text-decoration: underline;
}

.schedule-num {
	width: 2.5rem;
	color: var(--text-muted);
	font-family: var(--font-mono);
	font-size: 0.8rem;
	text-align: center;
}

.schedule-artist a {
	font-weight: 600;
	color: var(--text);
}

.schedule-artist a:hover {
	color: var(--accent);
	text-decoration: none;
}

.schedule-genres {
	color: var(--text-muted);
	font-size: 0.82rem;
}

.schedule-date {
	font-family: var(--font-mono);
	font-size: 0.82rem;
	white-space: nowrap;
}
.schedule-date__rel {
	color: var(--text-muted);
	font-size: 0.75rem;
}

.status-badge {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.2em 0.6em;
	border-radius: 3px;
}

.status-badge--live {
	background: rgba(61, 220, 132, 0.1);
	border: 1px solid rgba(61, 220, 132, 0.3);
	color: var(--score-high);
	box-shadow: 0 0 8px rgba(61, 220, 132, 0.15);
}

.status-badge--upcoming {
	background: rgba(176, 123, 252, 0.1);
	border: 1px solid rgba(176, 123, 252, 0.3);
	color: var(--accent-2);
}

/* =====================================================
	 404 Page
	 ===================================================== */

.not-found {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 6rem 1.5rem;
	gap: 1rem;
}

.not-found__code {
	font-size: 6rem;
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 1;
	color: var(--border);
}

.not-found__heading {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--text);
}

.not-found__body {
	color: var(--text-muted);
	max-width: 36ch;
}

.not-found__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 0.5rem;
}

.not-found__home,
.not-found__artists {
	padding: 0.6rem 1.25rem;
	border-radius: var(--radius);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: opacity 0.15s;
}

.not-found__home {
	background: var(--surface-2);
	color: var(--text);
	border: 1px solid var(--border);
}

.not-found__artists {
	background: linear-gradient(135deg, #56b0ff 0%, #b07bfc 100%);
	color: #fff;
	box-shadow: 0 0 18px rgba(86, 176, 255, 0.45), 0 0 36px rgba(176, 123, 252, 0.25);
}

.not-found__home:hover,
.not-found__artists:hover {
	opacity: 0.8;
}
