/* ==========================================
   PODCAST STUDIO PRO
========================================== */

body{
    background:#050505;
}

.podcast-pro-wrapper{
    max-width:1200px;
    margin:0 auto;
    padding:30px 15px;
}

.podcast-pro-hero{
    text-align:center;
    margin-bottom:30px;
}

.podcast-pro-hero h1{
    color:#fff;
    font-size:42px;
    margin:15px 0;
}

.station-subheading{
    color:#ccc;
    font-size:18px;
}

.minister-name{
    color:#999;
    font-size:16px;
}

.live-status{
    margin-top:20px;
}

.online{
    color:#00ff66;
    font-weight:bold;
    font-size:18px;
}

.offline{
    color:#ff4444;
    font-weight:bold;
    font-size:18px;
}

.player-section{
    margin-top:20px;
}

.podcast-player-pro{
    width:100%;
}

#terrainVisualizer{
    width:100%;
    height:250px;
    display:block;
    background:#000;
    border-radius:14px;
    overflow:hidden;
    margin-bottom:20px;
}

.player-card{
    background:#101010;
    border:1px solid #222;
    border-radius:14px;
    padding:20px;
}

.now-playing{
    text-align:center;
}

.now-playing h2{
    color:#fff;
    margin:10px 0;
}

.live-pill{
    display:inline-block;
    padding:8px 15px;
    border-radius:30px;
    background:#1b1b1b;
    color:#fff;
    font-size:12px;
    letter-spacing:1px;
}

.player-controls{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:20px 0;
}

.player-controls button{
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:#136692;
    color:#fff;
    font-size:24px;
}

.progress-wrap{
    width:100%;
    height:8px;
    background:#222;
    border-radius:20px;
    overflow:hidden;
}

.progress-bar{
    height:100%;
    width:0%;
    background:#39ff14;
}

.time-row{
    display:flex;
    justify-content:space-between;
    color:#ccc;
    margin-top:10px;
}

.volume-wrap{
    margin-top:20px;
}

.volume-wrap input{
    width:100%;
}

.content-section{
    margin-top:40px;
    color:#fff;
}

.station-logo img{
    max-width:180px;
    width:100%;
    height:auto;
}

@media(max-width:768px){

    .podcast-pro-hero h1{
        font-size:28px;
    }

    #terrainVisualizer{
        height:180px;
    }

}