#filterHero {
	position: relative;
	height: 450px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
	overflow: hidden;
}

#heroWall {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #050505;
}

.wallRow {
	flex: 1;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.wallTrack {
	display: flex;
	height: 100%;
	will-change: transform;
}

.wallItem {
	height: 100%;
	aspect-ratio: 1/1;
	background-size: cover;
	background-position: center;
	filter: grayscale(100%) contrast(120%) brightness(0.6);
	transition: filter 0.5s ease;
}

/* Fog Layers */
.fogLayer {
	position: absolute;
	top: 0;
	left: 0;
	width: 200%;
	height: 100%;
	background: url('/imgs/logo.webp');
	/* Fallback / Texture if available, otherwise just gradient */
	background: linear-gradient(90deg, transparent 0%, rgba(20, 20, 20, 0.8) 50%, transparent 100%);
	opacity: 0.3;
	pointer-events: none;
	z-index: 1;
}

.fog-1 {
	animation: fogFloat 60s linear infinite;
}

.fog-2 {
	animation: fogFloat 85s linear infinite reverse;
	opacity: 0.2;
}



/* Dark Overlay for Void Effect - Spotlight Removed */
#filterHeroOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 10, 10, 0.85);
	/* Heavy darkness */
	z-index: 2;
	pointer-events: none;
}

.wallRow:nth-child(odd) .wallTrack {
	animation: scrollLeft 180s linear infinite;
	/* Very Slow */
}

.wallRow:nth-child(even) .wallTrack {
	animation: scrollRight 200s linear infinite;
	/* Very Slow */
}

@keyframes scrollLeft {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@keyframes scrollRight {
	0% {
		transform: translateX(-50%);
	}

	100% {
		transform: translateX(0);
	}
}

#filterHeroOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.7) 0%, rgba(17, 17, 17, 0.9) 100%);
	backdrop-filter: blur(5px);
}

#filterContent {
	position: relative;
	z-index: 2;
	text-align: center;
	width: 90%;
	max-width: 800px;
}

#filterContent h1 {
	font-size: 3.5rem;
	font-weight: 900;
	color: #fff;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: -1px;
}

#filterContent p {
	color: #aaa;
	font-size: 1.2rem;
	margin-bottom: 30px;
}

#filterBarContainer {
	background: rgba(30, 30, 30, 0.6);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 10px 20px;
	border-radius: 50px;
	gap: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#bandNameSearch,
#bandGenreSearch {
	align-items: center;
	gap: 10px;
	padding: 5px 15px;
}

#bandNameSearch {
	flex: 2;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

#bandGenreSearch {
	flex: 1;
}

#bandSearchBar,
#bandGenreSelector {
	background: transparent;
	border: none;
	color: #fff;
	font-size: 1rem;
	width: 100%;
	padding: 8px;
}

#bandSearchBar:focus,
#bandGenreSelector:focus {
	outline: none;
}

#bandGenreSelector option {
	background: #222;
	color: #fff;
}

/* Bands Grid */
#bandsGridWrapper {
	width: 95%;
	max-width: 1400px;
	margin: 0 auto 100px;
}

#bandsContainer {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 25px;
	justify-content: center;
}

.bandContainer {
	width: 100%;
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	--band-accent: rgba(96, 125, 139, 0.8);
	contain: layout content;
}

.bandContainer:hover {
	transform: translateY(-10px);
}

.bandCard {
	position: relative;
	height: 300px;
	border-radius: 16px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.bandCardOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
	display: flex;
	align-items: flex-end;
	padding: 20px;
	transition: background 0.4s ease;
}

.bandContainer:hover .bandCardOverlay {
	background: linear-gradient(0deg, var(--band-accent) 0%, rgba(0, 0, 0, 0.2) 70%);
}

.bandCardContent {
	width: 100%;
}

.bandCardName {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 10px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.viewProfile {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #aaa;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s ease;
}

.bandContainer:hover .viewProfile {
	color: #fff;
}

/* Mobile Responsiveness */
@media screen and (max-width: 900px) {
	#filterContent h1 {
		font-size: 2.5rem;
	}

	#filterBarContainer {
		flex-direction: column;
		border-radius: 20px;
		padding: 15px;
	}

	#bandNameSearch {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		width: 100%;
	}
}

@media screen and (max-width: 600px) {
	#bandsContainer {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 15px;
	}

	.bandCard {
		height: 240px;
	}

	.bandCardName {
		font-size: 1.1rem;
	}
}