/* Sağ altta bulunan müzik kontrol butonu */
.music-toggle {
    position: fixed;
    z-index: 50;
    bottom: 20px;
    right: 20px;
    background-color: #0d0d0d;
    color: #00bcd4;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #00bcd4;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px #00bcd4;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.music-toggle:hover {
    box-shadow: 0 0 20px #00bcd4;
    background-color: #1a1a1a; /* Hover etkisi için daha açık ton */
}
