/* Radio Interface Styling - в стиле характеристик */
.radio-interface {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 20px;
}

/* Левая панель со списком радиостанций */
.radio-stations-list {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-right: 2px solid #0f0;
}

/* Стили для радиостанции */
.radio-station {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 2px solid #0f0;
    border-radius: 8px;
    background: rgba(0, 255, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.radio-station:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    transform: translateY(-2px);
}

.radio-station.active {
    background: rgba(0, 255, 0, 0.15);
    border-color: #0f0;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

/* Название радиостанции */
.station-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 14px;
    color: #0f0;
    margin-bottom: 8px;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.8);
}

/* Частота радиостанции */
.station-frequency {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: #0f0;
    opacity: 0.8;
    text-shadow: 0 0 3px rgba(0, 255, 0, 0.6);
}

/* Правая панель с отображением */
.radio-display {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

/* Контейнер для иконки динамика */
.speaker-icon-container {
    margin-bottom: 30px;
    padding: 40px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 70%);
    border-radius: 50%;
    border: 2px solid #0f0;
}

/* Иконка динамика */
.speaker-icon {
    font-size: 80px;
    color: #0f0;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.6));
}

/* Информация о станции */
.station-info {
    text-align: center;
}

.station-info p {
    font-family: 'Press Start 2P', monospace;
    font-size: 16px;
    color: #0f0;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.8);
    line-height: 1.6;
}

/* Анимация для активной станции */
.radio-station.active .station-name {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Анимация для иконки динамика при активной станции */
.radio-station.active ~ .radio-display .speaker-icon {
    animation: speakerPulse 1.5s infinite;
}

@keyframes speakerPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive дизайн */
@media (max-width: 768px) {
    .radio-interface {
        flex-direction: column;
        gap: 15px;
    }
    
    .radio-stations-list {
        flex: none;
        border-right: none;
        border-bottom: 2px solid #0f0;
        padding: 15px;
    }
    
    .radio-display {
        padding: 20px;
    }
    
    .speaker-icon {
        font-size: 60px;
    }
    
    .speaker-icon-container {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .radio-stations-list {
        padding: 10px;
    }
    
    .radio-station {
        padding: 12px;
    }
    
    .station-name {
        font-size: 12px;
    }
    
    .station-frequency {
        font-size: 10px;
    }
    
    .speaker-icon {
        font-size: 50px;
    }
    
    .speaker-icon-container {
        padding: 25px;
    }
} 