/* Radio Page Styles */
.radio-container {
    padding: 100px 0;
    text-align: center;
}

.radio-player-card {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.radio-player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-green));
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,0,0,0.1);
    color: #ff4d4d;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    border: 1px solid rgba(255,0,0,0.2);
}

.status-badge .dot {
    width: 10px;
    height: 10px;
    background: #ff4d4d;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.radio-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.radio-subtitle {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 50px;
}

.play-button {
    width: 100px;
    height: 100px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 2rem;
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

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

.play-button.playing {
    background: var(--primary-green);
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
}

/* Audio Visualizer */
.visualizer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
}

.bar {
    width: 4px;
    background: var(--primary-red);
    height: 10%;
    border-radius: 2px;
    transition: height 0.2s ease;
}

.playing .bar {
    animation: dance 1s infinite alternate ease-in-out;
}

@keyframes dance {
    0% { height: 20%; }
    50% { height: 100%; }
    100% { height: 40%; }
}

/* Multi-bar delays */
.bar:nth-child(1) { animation-delay: 0.1s; }
.bar:nth-child(2) { animation-delay: 0.3s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.5s; background: var(--primary-green); }
.bar:nth-child(5) { animation-delay: 0.4s; }
.bar:nth-child(6) { animation-delay: 0.6s; }

.volume-control {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #666;
}

.volume-slider {
    width: 150px;
    accent-color: var(--primary-red);
}

@media (max-width: 768px) {
    .radio-player-card {
        padding: 40px 20px;
        margin: 0 15px;
    }
    .radio-title {
        font-size: 1.8rem;
    }
}
