.crp-player {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.crp-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
    filter: blur(60px);
    transform: scale(1.1);
}

.crp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.crp-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    height: 100%;
    min-height: 400px;
    padding: 40px;
    flex-wrap: wrap;
}

.crp-cover-section {
    flex-shrink: 0;
}

.crp-cover-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: crp-float 3s ease-in-out infinite;
}

@keyframes crp-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.crp-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.crp-cover-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.crp-info-section {
    flex: 1;
    text-align: center;
    color: white;
    max-width: 500px;
}

.crp-radio-name {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.crp-song-title {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.4;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.crp-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.crp-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.crp-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.crp-volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.crp-volume-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.crp-volume-btn:hover {
    opacity: 1;
}

.crp-volume-slider {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
}

.crp-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
}

.crp-visualizer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 3;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .crp-container {
        gap: 30px;
        padding: 30px;
    }
    
    .crp-cover-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .crp-radio-name {
        font-size: 24px;
    }
    
    .crp-song-title {
        font-size: 16px;
    }
    
    .crp-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .crp-volume-slider {
        width: 70px;
    }
}

@media (max-width: 480px) {
    .crp-container {
        flex-direction: column;
        text-align: center;
    }
    
    .crp-cover-wrapper {
        width: 150px;
        height: 150px;
    }
}