body {
	background: url(bg.png) no-repeat center center fixed;
	background-size: cover;
	padding-bottom: 100px;
	position: relative;
	min-height: 100vh;
	overflow-x: hidden;
}
.genre-nav .btn.active {
	background-color: #198754 !important;
	color: white;
}
.card {
	background-color: rgba(255, 255, 255, 0.6);
}
footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	padding: 10px;
	box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
	z-index: 1000;
}
#nowPlaying {
	font-weight: bold;
	color: #198754;
}

/* Visualizer Styling */
#visualizer-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
}

#visualizer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly;   /* Balken gleichmäßig verteilen */
    padding: 0 0 170px 0;           /* kein Padding links/rechts */
    box-sizing: border-box;
}

.bar {
    width: 8px;                    /* schmaler für mehr Balken */
    margin: 0 1px;                /* minimaler Abstand */
    background: linear-gradient(to top, #198754, yellow, red) !important;
    opacity: 0.3;
    border-radius: 4px 4px 0 0;
    transition: height 0.1s ease-out;
}

#visualizer-toggle {
	position: fixed;
	top: 15px;
	right: 15px;
	z-index: 1001;
	background-color: rgba(25, 135, 84, 0.8);
	color: white;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.container {
	position: relative;
	z-index: 2;
}