*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{

    font-family:Arial,Helvetica,sans-serif;
    background:#0f172a;
    color:#fff;

}


/* =========================
   HEADER
   ========================= */

.topbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 60px;

    background:#111827;

    border-bottom:1px solid #1f2937;

    position:sticky;
    top:0;

    z-index:1000;

}


.logo{

    font-size:28px;
    font-weight:bold;
    color:#38bdf8;

}


nav{

    display:flex;
    gap:30px;
    align-items:center;

}


nav a{

    color:white;
    text-decoration:none;
    transition:.3s;

}


nav a:hover{

    color:#38bdf8;

}



/* =========================
   HERO SECTION
   ========================= */

.hero{

    max-width:1200px;

    margin:auto;

    padding:100px 30px;

    text-align:center;

}


.hero h1{

    font-size:58px;

    line-height:1.2;

    margin-bottom:30px;

}


.hero p{

    font-size:20px;

    color:#cbd5e1;

    max-width:800px;

    margin:auto;

    line-height:1.8;

}



/* =========================
   RADIO PLAYER
   ========================= */


.audio-player{

    max-width:520px;

    margin:50px auto;

    padding:35px;

    background:#111827;

    border-radius:24px;

    border:1px solid #1f2937;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}



.station-logo{

    width:90px;

    height:90px;

    margin:0 auto 20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:45px;

    background:#1e293b;

    border-radius:50%;

}



.audio-player h2{

    font-size:28px;

    margin-bottom:10px;

}



.tagline{

    color:#94a3b8;

    font-size:16px;

}



/* =========================
   PLAYER CONTROLS
   ========================= */


.controls{

    margin-top:30px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}



.controls button{

    background:#38bdf8;

    color:#000;

    border:none;

    padding:12px 24px;

    border-radius:30px;

    font-size:16px;

    cursor:pointer;

    font-weight:bold;

}



.controls button:hover{

    transform:translateY(-2px);

}



.controls input[type="range"]{

    width:140px;

}



.status{

    margin-top:25px;

    color:#38bdf8;

    font-weight:bold;

}



/* =========================
   BUTTONS
   ========================= */


.buttons{

    margin-top:50px;

}



.btn-primary{

    display:inline-block;

    background:#38bdf8;

    color:#000;

    padding:18px 36px;

    border-radius:10px;

    text-decoration:none;

    font-size:18px;

    font-weight:bold;

}



.btn-primary:hover{

    transform:translateY(-3px);

}



/* =========================
   FOOTER
   ========================= */


footer{

    text-align:center;

    padding:30px;

    color:#94a3b8;

}



/* =========================
   MOBILE
   ========================= */


@media(max-width:768px){


.topbar{

    flex-direction:column;

    gap:20px;

    padding:20px;

}



nav{

    flex-wrap:wrap;

    justify-content:center;

}



.hero{

    padding:70px 20px;

}



.hero h1{

    font-size:38px;

}



.hero p{

    font-size:18px;

}



.audio-player{

    padding:25px;

}


}
