/* css/radio.css - Vintage Radio Station */

.radio-body {
    background: linear-gradient(to bottom, #2a1f1d 0%, #1a1510 50%, #0a0908 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', monospace;
}

.radio-container {
    width: 90%;
    max-width: 800px;
    background: linear-gradient(145deg, #3a3025, #2a2018);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.8),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 0 0 10px #1a1510,
        0 0 0 12px var(--empire-gold);
    position: relative;
}

.radio-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--empire-gold);
    padding-bottom: 1rem;
}

.radio-header h1 {
    font-family: 'Cinzel', serif;
    color: var(--empire-gold);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 0.3em;
}

.frequency-display {
    background: #0f0f0f;
    border: 3px inset #2a2a2a;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
    color: #ff6b35;
    text-shadow: 0 0 10px #ff6b35;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
}

.tuner-dial {
    width: 100%;
    height: 60px;
    background: linear-gradient(to right, #1a1a1a, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    position: relative;
    margin: 2rem 0;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
    overflow: hidden;
}

.dial-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 40px;
    background: #ff4444;
    box-shadow: 0 0 10px #ff4444;
    transition: left 0.3s ease;
}

.station-markers {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    margin-top: 0.5rem;
    color: var(--empire-text-muted);
    font-size: 0.8rem;
}

.now-playing-panel {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--empire-gold);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.show-title {
    font-size: 1.8rem;
    color: var(--empire-gold);
    margin-bottom: 0.5rem;
}

.episode-title {
    font-size: 1.3rem;
    color: var(--empire-text);
    margin-bottom: 1rem;
}

.episode-description {
    color: var(--empire-text-muted);
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
}

.radio-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.radio-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--empire-gold);
    background: linear-gradient(145deg, #3a3025, #2a2018);
    color: var(--empire-gold);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.3),
        inset 0 2px 5px rgba(255,255,255,0.1);
    transition: all 0.1s ease;
}

.radio-btn:active {
    transform: translateY(2px);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.radio-btn.playing {
    background: var(--empire-gold);
    color: var(--empire-dark);
    box-shadow: 0 0 20px var(--empire-gold);
}

.playlist-selector {
    margin-top: 2rem;
    text-align: center;
}

.playlist-selector select {
    background: #1a1a1a;
    border: 1px solid var(--empire-gold);
    color: var(--empire-gold);
    padding: 0.8rem 1.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.vu-meters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.vu-meter {
    width: 20px;
    height: 100px;
    background: #1a1a1a;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
}

.vu-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #00ff00, #ffff00, #ff0000);
    transition: height 0.1s ease;
    height: 0%;
}
