/* AUDIXO Player PRO CSS */
.audixo-player {
    background: rgba(29, 29, 29, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    color: white;
    font-family: system-ui, -apple-system, sans-serif;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
}

.audixo-cover {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.audixo-cover:hover {
    transform: scale(1.05);
}

.audixo-waveform {
    height: 60px;
    background: linear-gradient(to right, #ce176a, #ff2d8b);
    position: relative;
    overflow: hidden;
}

.play-button {
    background: #ce176a;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #ff2d8b;
    transform: scale(1.1);
}

/* More styles for mobile, glassmorphism, etc. */
