.bottom-bar {

    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* WICHTIG */
    gap: 25px;
    padding: 14px 25px;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(12px);
    border-radius: 20px 20px 0 0;
    color: white;
    z-index: 9999;
    font-size: 0.7rem;
}

.bottom-left-group {
    display: flex;
    align-items: center;
    margin-left: 15px; 
}
.bottom-right {
    margin-left: auto;
}

.social-icons {
    display: flex;
    gap: 18px;
}

.icon svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: 0.3s;
}

.icon:hover svg {
    fill: rgb(244,61,62);
}

#soundToggle {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 6px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

#soundToggle:hover {
    border-color: rgb(244,61,62);
    color: rgb(244,61,62);
}
#soundToggle.active {
    border-color: rgb(244,61,62);
    color: rgb(244,61,62);
    box-shadow: 0 0 10px rgba(244,61,62,0.4);
}