@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
    background-color: #0e0e10;
    color: #94a1b2;
    font-family: 'Poppins';
    align-items: center;
    text-align: center;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

html {
    scrollbar-width: none;
}

/* Verstecke die vertikale Scrollleiste */
::-webkit-scrollbar {
    width: 0;
}

/* Optional: Verstecke die horizontale Scrollleiste */
::-webkit-scrollbar-horizontal {
    display: none;
}

/* Optional: Verstecke die Ecken der Scrollleiste */
::-webkit-scrollbar-corner {
    display: none;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    width: 80%;
    margin: 0 auto;
    background-color: #1f1f2388;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    z-index: 999;
    backdrop-filter: blur(10px);
}

.link {
    color: #a6a8b8;
    text-decoration: none;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.link:hover {
    color: white;
}

.fixed-header img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-right: 10px;
}

.fixed-header .channel-name {
    font-size: 20px;
    color: #fff;
}

.fixed-header .volume-slider {
    width: 150px;
}

#radio-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 90px;
}

.channel-button {
    cursor: pointer;
    position: relative;
    margin: 10px;
    display: flex;
    align-items: center;
    width: 80%;
    height: 120px;
    background-color: #1f1f2388;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

.channel-button:hover {
    background-color: #1f1f2355;
}

.channel-button img {
    width: 100px;
    height: 100px;
    margin-right: 15px;
    place-items: false;
    border-radius: 3px;
}

.channel-button span {
    font-size: 25px;
    color: #94a1b2;
}

.speaker {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #94a1b2;
    display: none;
}

.legal {
    text-align: center;
    font-size: 10px;
    animation: fadeInUp .8s;
    color: #94a1b2;
    cursor: pointer;
}