:root{

    --navy:#0a2472;
    --blue:#0e6efd;
    --lightblue:#4da3ff;
    --darkblue:#001e3c;
    --gold:#ffffff;
    --white:#ffffff;
    
    }
    
    *{
    
    scroll-behavior:smooth;
    
    }
    
    body{
    
    background:linear-gradient(135deg,#0a2472,#001e3c);
    color:white;
    font-family:Arial,sans-serif;
    
    }
    
    .custom-nav{
    
    background:rgba(10,36,114,.95);
    
    backdrop-filter:blur(12px);
    
    }
    
    .hero{
    
    position:relative;
    
    background:
    linear-gradient(
    135deg,
    rgba(10,36,114,.90),
    rgba(14,110,253,.70)
    ),
    radial-gradient(
    circle at 30% 50%,
    rgba(255,255,255,.15),
    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,.3)
    );
    
    pointer-events:none;
    
    }
    
    .hero-title{
    
    font-size:5rem;
    font-weight:900;
    
    }
    
    .hero-title span{
    
    display:block;
    
    color:#ffffff;
    
    text-shadow:0 0 20px rgba(255,255,255,.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(255,255,255,.7)
    );
    
    }
    
    .btn-gold{
    
    background:#ffffff;
    
    color:#0a2472;
    
    font-weight:bold;
    
    border-radius:50px;
    
    padding:15px 35px;
    
    transition:all .3s;
    
    }
    
    .btn-gold:hover{
    
    background:#0e6efd;
    
    color:white;
    
    transform:translateY(-2px);
    
    }
    
    .wave{
    
    height:140px;
    
    background:
    linear-gradient(
    180deg,
    transparent,
    rgba(14,110,253,.6)
    );
    
    }
    
    .player-section{
    
    background:linear-gradient(180deg,#001e3c,#0a2472);
    
    padding:80px 0;
    
    }
    
    .player-box{
    
    background:linear-gradient(135deg,#0e6efd,#0a2472);
    
    padding:30px;
    
    border-radius:20px;
    
    display:flex;
    
    justify-content:space-between;
    
    align-items:center;
    
    box-shadow:
    0 0 30px rgba(255,255,255,.2);
    
    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:#0a2472;
    
    }
    
    .play-button:hover{
    
    transform:scale(1.1);
    
    box-shadow:0 0 25px rgba(255,255,255,.8);
    
    }
    
    .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,
    #0a2472,
    #0e6efd
    );
    
    }
    
    .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:#ffffff;
    
    background:rgba(255,255,255,.12);
    
    }
    
    .program-card h3{
    
    color:#ffffff;
    
    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:#001e3c;
    
    text-align:center;
    
    }
    
    .about h2{
    
    font-size:2.5rem;
    
    margin-bottom:30px;
    
    color:#ffffff;
    
    }
    
    .about p{
    
    font-size:1.3rem;
    
    max-width:700px;
    
    margin:0 auto;
    
    line-height:1.8;
    
    }
    
    footer{
    
    background:linear-gradient(135deg,#0e6efd,#0a2472);
    
    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:#0a2472;
    
    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;
    
    }
    
    }