.radio-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 22px 18px 90px;
}

.radio-hero {
    border-radius: 26px;
    padding: 30px 22px 26px;
    border: 1px solid #2a3248;
    background: radial-gradient(circle at 50% 0%, rgba(255, 153, 0, 0.24), transparent 48%), linear-gradient(160deg, #2b3040, #192133 60%, #283047);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.42);
    text-align: center;
}

.radio-hero-logo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 28px;
    border: 2px solid rgba(255, 163, 24, 0.4);
    margin: 0 auto 18px;
    background: #fff;
    box-shadow: 0 0 32px rgba(255, 153, 0, 0.4);
}

.radio-hero-name {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.radio-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.radio-play-btn {
    width: 86px;
    height: 86px;
    border: 0;
    border-radius: 50%;
    background: #ff9c00;
    color: #0a0a0a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 26px rgba(255, 156, 0, 0.55);
}

.radio-play-btn svg {
    width: 34px;
    height: 34px;
}

.radio-play-btn.is-playing {
    background: #ffc04a;
}

.radio-status {
    margin-top: 14px;
    color: var(--text-secondary);
    font-size: 13px;
    min-height: 18px;
}

.station-section {
    margin-top: 26px;
}

.station-title {
    font-size: 22px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.station-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.station-item {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    color: var(--text-primary);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: left;
}

.station-item.active {
    border-color: #a86600;
    background: linear-gradient(90deg, rgba(90, 52, 8, 0.62), rgba(65, 39, 8, 0.48));
}

.station-logo {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    object-fit: cover;
    background: #fff;
}

.station-body {
    flex: 1;
    min-width: 0;
}

.station-name {
    font-size: 27px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.station-views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #98a4b6;
}

.view-eye-icon {
    width: 14px;
    height: 14px;
    color: #76859a;
    flex-shrink: 0;
}

.station-views-count {
    letter-spacing: 0.01em;
    font-weight: 600;
}

.station-views-label {
    opacity: 0.9;
}

.station-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ff9c00;
    margin-right: 8px;
    opacity: 0;
}

.station-item.active .station-dot {
    opacity: 1;
}

.station-arrow {
    color: var(--text-secondary);
    opacity: 0.8;
    font-size: 24px;
}

.radio-audio {
    display: none;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    background: var(--bg-card);
}

.pagination .active {
    border-color: #a86600;
    background: rgba(90, 52, 8, 0.62);
}

.pagination .disabled {
    opacity: 0.45;
    pointer-events: none;
}

@media (max-width: 768px) {
    .radio-page {
        padding: 10px 10px 10px;
    }

    .radio-hero {
        border-radius: 20px;
        padding: 20px 14px 18px;
    }

    .radio-hero-logo {
        width: 94px;
        height: 94px;
        border-radius: 20px;
        margin-bottom: 12px;
    }

    .radio-hero-name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .radio-play-btn {
        width: 66px;
        height: 66px;
    }

    .radio-play-btn svg {
        width: 28px;
        height: 28px;
    }

    .station-title {
        font-size: 14px;
        margin-bottom: 10px;
        letter-spacing: 0.06em;
    }

    .station-item {
        border-radius: 14px;
        padding: 10px 11px;
        gap: 10px;
    }

    .station-logo {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .station-name {
        font-size: 16px;
    }

    .station-views {
        font-size: 12px;
        gap: 4px;
    }

    .view-eye-icon {
        width: 13px;
        height: 13px;
    }
}
