:root{

    --navy:#1a1a2e;
    --blue:#0f3460;
    --red:#e94560;
    --gold:#e94560;
    --white:#ffffff;
    --black:#000000;
    
    }
    
    *{
    
    scroll-behavior:smooth;
    
    }
    
    body{
    
    background:linear-gradient(135deg,#1a1a2e,#0f3460);
    color:white;
    font-family:Arial,sans-serif;
    
    }
    
    .custom-nav{
    
    background:rgba(26,26,46,.95);
    
    backdrop-filter:blur(12px);
    
    border-bottom:2px solid rgba(233,69,96,.5);
    
    }
    
    .hero{
    
    position:relative;
    
    background:
    linear-gradient(
    135deg,
    rgba(26,26,46,.90),
    rgba(15,52,96,.85)
    ),
    radial-gradient(
    circle at 30% 50%,
    rgba(233,69,96,.20),
    transparent
    );
    
    background-size:cover;
    background-position:center;
    
    overflow:hidden;
    
    }
    
    .overlay{
    
    position:absolute;
    inset:0;
    
    background:
    radial-gradient(
    circle at center,
    transparent,
    rgba(0,0,0,.5)
    );
    
    pointer-events:none;
    
    }
    
    .hero-title{
    
    font-size:5rem;
    font-weight:900;
    
    }
    
    .hero-title span{
    
    display:block;
    
    color:#e94560;
    
    text-shadow:0 0 20px rgba(233,69,96,.8);
    
    }
    
    .hero-subtitle{
    
    font-size:2rem;
    
    }
    
    .hero-text{
    
    font-size:1.2rem;
    
    margin:25px 0;
    
    }
    
    .hero-mic{
    
    max-height:600px;
    
    filter:drop-shadow(
    0 0 40px rgba(233,69,96,.7)
    );
    
    }
    
    .btn-gold{
    
    background:#e94560;
    
    color:#ffffff;
    
    font-weight:bold;
    
    border-radius:50px;
    
    padding:15px 35px;
    
    transition:all .3s;
    
    border:2px solid #e94560;
    
    }
    
    .btn-gold:hover{
    
    background:transparent;
    
    color:#e94560;
    
    transform:translateY(-2px);
    
    box-shadow:0 10px 30px rgba(233,69,96,.4);
    
    }
    
    .wave{
    
    height:140px;
    
    background:
    linear-gradient(
    180deg,
    transparent,
    rgba(233,69,96,.6)
    );
    
    }
    
    .player-section{
    
    background:linear-gradient(180deg,#0f3460,#1a1a2e);
    
    padding:80px 0;
    
    }
    
    .player-box{
    
    background:linear-gradient(135deg,rgba(233,69,96,.8),rgba(15,52,96,.9));
    
    padding:30px;
    
    border-radius:20px;
    
    display:flex;
    
    justify-content:space-between;
    
    align-items:center;
    
    box-shadow:
    0 0 40px rgba(233,69,96,.3);
    
    flex-wrap:wrap;
    gap:20px;
    
    border:2px solid rgba(255,255,255,.2);
    
    }
    
    .player-info{
    
    display:flex;
    align-items:center;
    gap:15px;
    
    }
    
    .live-dot{
    
    width:14px;
    height:14px;
    
    background:red;
    
    display:inline-block;
    
    border-radius:50%;
    
    animation:pulse 1.5s infinite;
    
    box-shadow:0 0 10px red;
    
    }
    
    @keyframes pulse{
    
    0%,100%{
    
    transform:scale(1);
    opacity:1;
    
    }
    
    50%{
    
    transform:scale(1.3);
    opacity:.7;
    
    }
    
    }
    
    .player-controls{
    
    display:flex;
    align-items:center;
    gap:25px;
    
    }
    
    .play-button{
    
    width:80px;
    height:80px;
    
    border:none;
    
    border-radius:50%;
    
    background:#ffffff;
    
    font-size:30px;
    
    cursor:pointer;
    
    transition:all .3s;
    
    color:#e94560;
    
    }
    
    .play-button:hover{
    
    transform:scale(1.1);
    
    box-shadow:0 0 30px rgba(255,255,255,.8);
    
    background:#e94560;
    
    color:#ffffff;
    
    }
    
    .volume-control{
    
    display:flex;
    align-items:center;
    gap:10px;
    
    }
    
    .volume-control i{
    
    font-size:20px;
    
    }
    
    #volumeSlider{
    
    width:120px;
    
    -webkit-appearance:none;
    
    background:rgba(255,255,255,.2);
    
    border-radius:10px;
    
    height:6px;
    
    outline:none;
    
    }
    
    #volumeSlider::-webkit-slider-thumb{
    
    -webkit-appearance:none;
    
    width:18px;
    height:18px;
    
    background:#ffffff;
    
    border-radius:50%;
    
    cursor:pointer;
    
    }
    
    #volumeSlider::-moz-range-thumb{
    
    width:18px;
    height:18px;
    
    background:#ffffff;
    
    border-radius:50%;
    
    cursor:pointer;
    border:none;
    
    }
    
    .programs{
    
    padding:100px 0;
    
    background:
    linear-gradient(
    180deg,
    #1a1a2e,
    #0f3460
    );
    
    }
    
    .section-title{
    
    text-align:center;
    
    margin-bottom:50px;
    
    font-size:3rem;
    
    }
    
    .program-card{
    
    background:rgba(255,255,255,.08);
    
    padding:40px;
    
    border-radius:20px;
    
    text-align:center;
    
    transition:.3s;
    
    margin-bottom:30px;
    
    border:2px solid transparent;
    
    }
    
    .program-card:hover{
    
    transform:translateY(-10px);
    
    border-color:#e94560;
    
    background:rgba(233,69,96,.15);
    
    }
    
    .program-card h3{
    
    color:#e94560;
    
    font-size:1.8rem;
    
    margin-bottom:15px;
    
    }
    
    .program-card p{
    
    font-size:1.2rem;
    
    color:rgba(255,255,255,.85);
    
    }
    
    .about{
    
    padding:100px 0;
    
    background:#000000;
    
    text-align:center;
    
    }
    
    .about h2{
    
    font-size:2.5rem;
    
    margin-bottom:30px;
    
    color:#e94560;
    
    }
    
    .about p{
    
    font-size:1.3rem;
    
    max-width:700px;
    
    margin:0 auto;
    
    line-height:1.8;
    
    }
    
    footer{
    
    background:linear-gradient(135deg,#e94560,#1a1a2e);
    
    padding:50px 0 30px;
    
    text-align:center;
    
    }
    
    footer h5{
    
    color:#ffffff;
    
    margin-bottom:20px;
    
    }
    
    .social-links{
    
    display:flex;
    
    gap:15px;
    
    justify-content:center;
    
    }
    
    .social-links a{
    
    width:45px;
    height:45px;
    
    background:rgba(255,255,255,.15);
    
    display:flex;
    
    align-items:center;
    justify-content:center;
    
    border-radius:50%;
    
    color:white;
    
    font-size:20px;
    
    transition:.3s;
    
    text-decoration:none;
    
    }
    
    .social-links a:hover{
    
    background:#ffffff;
    
    color:#e94560;
    
    transform:translateY(-5px);
    
    }
    
    @media(max-width:768px){
    
    .hero-title{
    
    font-size:3rem;
    
    }
    
    .hero-subtitle{
    
    font-size:1.5rem;
    
    }
    
    .player-box{
    
    flex-direction:column;
    
    text-align:center;
    
    }
    
    .player-controls{
    
    flex-direction:column;
    
    }
    
    .volume-control{
    
    width:100%;
    
    justify-content:center;
    
    }
    
    #volumeSlider{
    
    width:200px;
    
    }
    
    .section-title{
    
    font-size:2rem;
    
    }
    
    }