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

body{
    background:#080808;
    color:#ffffff;
    font-family:'Poppins',sans-serif;
}

.custom-nav{
    background:#050505;
    border-bottom:1px solid #141414;
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar-brand{
    font-weight:700;
    font-size:1.8rem;
    color:#ffffff !important;
}

.song-counter{
    background:rgba(34,197,94,.12);
    border:1px solid rgba(34,197,94,.25);
    color:#22c55e;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    font-size:1rem;
}

.hero-section{
    min-height:300px;
    padding:70px 0;
    display:flex;
    align-items:center;
    background:
    linear-gradient(
        90deg,
        rgba(0,60,35,.55) 0%,
        rgba(0,0,0,.95) 45%,
        rgba(0,60,35,.45) 100%
    );
}

.hero-badge{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    border:1px solid rgba(34,197,94,.35);
    background:rgba(34,197,94,.08);
    color:#22c55e;
    font-size:.95rem;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:25px;
}

.hero-title{
    font-size:4rem;
    font-weight:800;
    line-height:1.05;
    margin-bottom:15px;
}

.hero-title span{
    color:#22c55e;
}

.hero-description{
    color:#bdbdbd;
    font-size:1.1rem;
    line-height:1.8;
    max-width:700px;
}

.playlist-intro{
    padding:90px 0 50px;
    text-align:center;
    background:#080808;
}

.intro-line{
    width:60px;
    height:3px;
    background:#22c55e;
    margin:0 auto 30px;
    border-radius:10px;
}

.playlist-intro h2{
    font-size:3rem;
    font-weight:800;
    margin-bottom:18px;
}

.playlist-intro p{
    color:#a8a8a8;
    font-size:1.1rem;
}

.playlist-section{
    padding:20px 0 100px;
}

.song-card{
    background:#0c0c0c;
    border:1px solid rgba(34,197,94,.10);
    border-radius:28px;
    overflow:hidden;
    height:100%;
    transition:.35s;
}

.song-card:hover{
    transform:translateY(-8px);
    border-color:rgba(34,197,94,.35);
    box-shadow:
    0 10px 40px rgba(0,0,0,.4),
    0 0 20px rgba(34,197,94,.12);
}

.song-content{
    padding:26px;
}

.song-header{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.song-number{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:72px;
    height:46px;
    background:rgba(34,197,94,.12);
    border:1px solid rgba(34,197,94,.18);
    border-radius:14px;
    color:#22c55e;
    font-size:1rem;
    font-weight:700;
}

.song-info{
    flex:1;
}

.song-info h4{
    margin:0;
    color:#ffffff;
    font-size:2rem;
    font-weight:700;
    line-height:1.1;
}

.song-info h6{
    margin-top:6px;
    color:#22c55e;
    font-size:1rem;
    font-weight:600;
}

iframe{
    width:100%;
    height:260px;
    border:none;
    display:block;
}

footer{
    border-top:1px solid #1a1a1a;
    text-align:center;
    color:#7d7d7d;
    padding:35px;
    margin-top:50px;
}

@media(max-width:1200px){

    .hero-title{
        font-size:3.5rem;
    }

}

@media(max-width:992px){

    .hero-title{
        font-size:3rem;
    }

    .song-info h4{
        font-size:1.7rem;
    }

}

@media(max-width:768px){

    .hero-section{
        min-height:auto;
        padding:60px 0;
    }

    .hero-title{
        font-size:2.5rem;
    }

    .hero-description{
        font-size:1rem;
    }

    .playlist-intro h2{
        font-size:2rem;
    }

    .song-info h4{
        font-size:1.4rem;
    }

    iframe{
        height:220px;
    }

    .song-counter{
        font-size:.85rem;
        padding:10px 18px;
    }

}

@media(max-width:576px){

    .navbar-brand{
        font-size:1.2rem;
    }

    .hero-title{
        font-size:2rem;
    }

    .hero-badge{
        font-size:.8rem;
    }

    .song-content{
        padding:20px;
    }

    .song-header{
        gap:12px;
    }

    .song-number{
        min-width:60px;
        height:40px;
        font-size:.9rem;
    }

    .song-info h4{
        font-size:1.2rem;
    }

}