.radio-header {
    padding: 20px 20px 22px 20px;
    background: linear-gradient(165deg, #2B3A67 0%, #1A2140 60%, #10142B 100%);
    border-radius: 0 0 28px 28px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(16, 20, 43, 0.25);
}
.back-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 6px 14px 6px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.back-pill:hover { background: rgba(255, 255, 255, 0.18); }

.radio-eyebrow {
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.75;
    margin-bottom: 6px;
}
.radio-header h1 {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 700;
    margin-bottom: 4px;
}
.radio-subhead {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.65;
    margin-bottom: 12px;
}
.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 5px 12px;
    border-radius: 30px;
}

/* ============================================================
   ON AIR CARD
   ============================================================ */
.onair-card {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 28px 20px 24px 20px;
    margin: 0 20px 24px 20px;
    border: 1px solid #EFEAE4;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.onair-pulse {
    width: 88px;
    height: 88px;
    margin: 0 auto 14px auto;
    border-radius: 50%;
    background: linear-gradient(160deg, #2B3A67, #10142B);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 10px 24px rgba(43, 58, 103, 0.25);
    position: relative;
}
.onair-pulse.is-live::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(43, 58, 103, 0.35);
    animation: radioPulse 1.8s ease-out infinite;
}
@keyframes radioPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.35); opacity: 0; }
}

.onair-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #A09898;
    background: #F5F0EA;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 12px;
}
.onair-tag .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #C9BFB5;
}
.onair-tag.is-live {
    color: #C0304A;
    background: rgba(192, 48, 74, 0.08);
}
.onair-tag.is-live .dot {
    background: #C0304A;
    animation: dotBlink 1s ease-in-out infinite;
}
@keyframes dotBlink {
    50% { opacity: 0.3; }
}

.onair-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: #2A2624;
    margin-bottom: 2px;
}
.onair-card > p {
    font-size: 13px;
    color: #8A7A7A;
    font-weight: 300;
    margin-bottom: 20px;
}

.radio-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2B3A67, #10142B);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(43, 58, 103, 0.3);
    margin-bottom: 20px;
    transition: 0.15s;
}
.radio-play-btn:hover { transform: translateY(-1px); }

.volume-row {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 220px;
    margin: 0 auto;
    color: #A09898;
    font-size: 13px;
}
.volume-row input[type="range"] {
    flex: 1;
    accent-color: #2B3A67;
}

/* ============================================================
   STATIONS
   ============================================================ */
.section-block {
    padding: 0 20px 24px 20px;
}
.section-heading h2 {
    font-size: 15px;
    font-weight: 600;
    color: #2A2624;
    margin-bottom: 12px;
}
.section-heading h2 i {
    color: #2B3A67;
    margin-right: 6px;
}

.station-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.station-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    border: 1px solid #EFEAE4;
    border-radius: 14px;
    padding: 12px 16px;
    cursor: pointer;
    transition: 0.15s;
}
.station-item.is-active {
    border-color: #2B3A67;
    background: rgba(43, 58, 103, 0.05);
}
.station-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #F5F0EA;
    color: #2B3A67;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.station-item.is-active .station-icon {
    background: #2B3A67;
    color: #fff;
}
.station-meta { flex: 1; }
.station-meta h4 {
    font-size: 14px;
    font-weight: 500;
    color: #2A2624;
}
.station-meta p {
    font-size: 12px;
    color: #8A7A7A;
    font-weight: 300;
}

@media (min-width: 768px) {
    .station-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}
