/* Simple Music Player */
#musicToggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--dark-color);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}

#musicToggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.7);
}
