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

body{
    font-family:'Poppins', sans-serif;
    background:#050505;
    color:white;
    overflow-x:hidden;
}

body::before{
    content:'';
    position:fixed;
    inset:0;
    background:
      radial-gradient(circle at top left, rgba(255,0,255,.2), transparent 30%),
      radial-gradient(circle at bottom right, rgba(0,200,255,.2), transparent 30%);
    z-index:-1;
}

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.logo-area img{
    width:120px;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#ff00ff;
}

.btn-play-top{
    background:#ff00ff;
    border:none;
    color:white;
    padding:14px 24px;
    border-radius:50px;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 0 20px #ff00ff88;
}

.hero{
    min-height:80vh;
    display:grid;
    grid-template-columns:1fr 1fr 350px;
    align-items:center;
    gap:40px;
    padding:60px;
}

.tag{
    color:#00d9ff;
    font-weight:700;
    letter-spacing:2px;
}

.left h1{
    font-size:5rem;
    line-height:0.95;
    margin:20px 0;
    font-weight:900;
}

.left h1 span{
    color:#ffe600;
}

.left p{
    color:#ddd;
    font-size:1.1rem;
    margin-bottom:30px;
}

.buttons{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.primary,
.secondary{
    padding:16px 28px;
    border-radius:50px;
    border:none;
    font-weight:700;
    cursor:pointer;
}

.primary{
    background:#00d9ff;
    color:black;
    box-shadow:0 0 20px rgba(0,217,255,.5);
}

.secondary{
    background:transparent;
    color:white;
    border:2px solid #ff00ff;
}

.socials{
    display:flex;
    gap:15px;
}

.socials a{
    color:white;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.2);
    padding:10px 16px;
    border-radius:50px;
}

.center{
    text-align:center;
}

.main-logo{
    width:100%;
    max-width:650px;
    filter:drop-shadow(0 0 35px rgba(255,0,255,.4));
}

.right{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:25px;
    backdrop-filter:blur(10px);
    box-shadow:0 0 30px rgba(0,0,0,.5);
}

.card h3{
    color:#00d9ff;
    margin-bottom:20px;
}

.mini-logo{
    width:120px;
    display:block;
    margin:0 auto 20px;
}

.card h2{
    text-align:center;
    margin-bottom:10px;
}

.card p{
    text-align:center;
    color:#ccc;
}

.live{
    text-align:center;
    margin-top:20px;
    color:#ff00ff;
    font-weight:700;
}

.card ul{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.player-footer{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#090909;
    border-top:2px solid #ff00ff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 40px;
    z-index:999;
}

.footer-left{
    display:flex;
    align-items:center;
    gap:15px;
}

.footer-left img{
    width:70px;
}

.controls{
    display:flex;
    gap:15px;
}

.controls button{
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:#ff00ff;
    color:white;
    font-size:1.2rem;
    cursor:pointer;
    box-shadow:0 0 20px rgba(255,0,255,.5);
}

.volume{
    display:flex;
    align-items:center;
    gap:10px;
}

.volume input{
    width:150px;
}

.copyright{
    text-align:center;
    padding:25px;
    margin-bottom:100px;
    color:#888;
    font-size:14px;
}

@media(max-width:1200px){
    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .buttons,
    .socials{
        justify-content:center;
    }

    .right{
        max-width:500px;
        margin:auto;
    }
}

@media(max-width:768px){
    .topbar{
        flex-direction:column;
        gap:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .left h1{
        font-size:3rem;
    }

    .player-footer{
        flex-direction:column;
        gap:20px;
        position:relative;
    }

    .copyright{
        margin-bottom:0;
    }
}
