* {
	scrollbar-color: #4e5151 #2b2d2d;
}

html, body {
	overflow: scroll !important;
}

section#songs hr {
	width: 260px;
}

section#songs .song-filter, .song-type {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

section#songs .filter-item, .type-item {
	padding: 4px 10px;
	font-size: 10px;
	letter-spacing: 2px;
	cursor: pointer;
	border: 1px solid #1a1a1a;
	background: #0a0a0a;
	color: #666;
	transition: all 0.3s ease;
	user-select: none;
}

section#songs .state-1 {
	border-color: #d2738a;
	color: #d2738a;
	background: #111
}

section#songs .state-2 {
	border-color: #ff2878;
	color: #ff2878;
	background: #111
}

section#songs .song-grid {
	display: grid;
	gap: clamp(2px, 0.3vw, 8px);
	grid-auto-rows: auto;
	margin-bottom: clamp(60px, 10vh, 100px);
}

@media (max-width: 1400px) {
	section#songs .song-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 1401px) {
	section#songs .song-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

section#songs .song-item {
	background: #0a0a0a;
	border: 1px solid #1a1a1a;
	padding: 12px 16px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: 122px;
}

section#songs .song-item:hover {
	border-color: #d2738a;
	background: #111111;
}

section#songs .song-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(210, 115, 138, 0.1), transparent);
	transition: left 0.5s ease;
}

section#songs .song-item:hover::before {
	left: 100%;
}

section#songs .song-title {
	color: #d2738a;
	font-size: 12px;
	letter-spacing: 2px;
	margin-bottom: 6px;
	text-transform: lowercase;
	font-weight: normal;
	animation: blink 2s ease-in-out infinite;
}

section#songs .song-meta {
	color: #666666;
	font-size: 9px;
	letter-spacing: 1px;
	line-height: 1.4;
}

section#songs .song-item a {
	text-decoration: none;
	color: inherit;
	display: block;
	animation: none !important;
}

