.audio-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(200, 150, 100, 0.3);
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.audio-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 5px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.8;
}

.audio-btn:hover {
    transform: scale(1.1);
    opacity: 1;
}

.audio-btn:active {
    transform: scale(0.95);
}

.volume-slider-container {
    display: flex;
    align-items: center;
    width: 120px;
}

.volume-slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(200, 150, 100, 0.2);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(200, 150, 100, 0.8);
    cursor: pointer;
    transition: background 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    background: rgba(200, 150, 100, 1);
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(200, 150, 100, 0.8);
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}

.volume-slider::-moz-range-thumb:hover {
    background: rgba(200, 150, 100, 1);
}

.volume-label {
    color: rgba(200, 150, 100, 0.7);
    font-size: 12px;
    font-family: 'Rajdhani', monospace;
    min-width: 30px;
    text-align: right;
}

@media (max-width: 768px) {
    .audio-controls {
        bottom: 10px;
        right: 10px;
    }

    .audio-player {
        padding: 8px 12px;
        gap: 10px;
    }

    .volume-slider-container {
        width: 90px;
    }

    .audio-btn {
        font-size: 18px;
    }

    .volume-label {
        font-size: 11px;
    }
}
