body[data-theme="dark"] .radio-page-container {
    background: var(--surface-bg);
    color: var(--text-primary);
}

.radio-page-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 0;
    flex-grow: 1;
}

.radio-page-container {
    width: 100%;
    max-width: 520px;
    padding: 32px 24px;
    background: var(--surface-bg);
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.radio-flex {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.radio-logo-block {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.radio-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 24px var(--shadow-color);
    background: #fff;
    border: 3px solid var(--accent-color);
    transition: box-shadow 0.3s, border 0.3s;
}

.radio-info-block {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
}

#currentStation {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-align: left;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    justify-content: flex-start;
}

.play-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px var(--shadow-color);
}
.play-btn:hover {
    background: var(--accent-gradient-start);
}

#volumeSlider {
    width: 100px;
    accent-color: var(--accent-color);
}

.radio-stations {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.station-btn {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    outline: none;
}
.station-btn.active, .station-btn:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

@media (max-width: 800px) {
    .radio-flex {
        flex-direction: column;
        gap: 18px;
    }
    .radio-logo {
        width: 90px;
        height: 90px;
    }
    .radio-page-container {
        padding: 16px 4px;
        max-width: 100%;
    }
    .player-controls {
        flex-direction: row;
        gap: 10px;
    }
    #currentStation {
        font-size: 1.2rem;
    }
    #volumeSlider {
        width: 80px;
    }
} 