/* Disco Music Player Styles */
    .music-toggle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ff00aa, #00f7ff);
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        margin-left: 20px;
        box-shadow: 0 0 20px rgba(255, 0, 170, 0.5);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .music-toggle:hover {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(0, 247, 255, 0.7);
    }

    .disco-ball {
        width: 30px;
        height: 30px;
        background: radial-gradient(circle at 30% 30%, 
            #fff 0%, 
            #ccc 10%, 
            #999 30%, 
            #333 60%, 
            #000 100%);
        border-radius: 50%;
        position: relative;
        box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.8);
    }

    .disco-light {
        position: absolute;
        width: 5px;
        height: 5px;
        background: #fff;
        border-radius: 50%;
        filter: blur(1px);
        animation: discoFlash 1.5s infinite;
    }

    .disco-light:nth-child(1) {
        top: 5px;
        left: 5px;
        animation-delay: 0s;
    }

    .disco-light:nth-child(2) {
        top: 5px;
        right: 5px;
        animation-delay: 0.5s;
    }

    .disco-light:nth-child(3) {
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        animation-delay: 1s;
    }

    @keyframes discoFlash {
        0% { opacity: 0; transform: scale(0.5); }
        50% { opacity: 1; transform: scale(1.2); background: var(--disco-color, #ff00aa); }
        100% { opacity: 0; transform: scale(0.5); }
    }

    .music-toggle.active {
        animation: discoPulse 0.5s infinite alternate;
    }

    @keyframes discoPulse {
        0% { box-shadow: 0 0 15px #ff00aa; }
        100% { box-shadow: 0 0 30px #00f7ff; }
    }