/*==================================================
            RESET
==================================================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

:root{

--gold:#FFD54A;

--gold-dark:#F0C02E;

--blue:#2563EB;

--dark:#080808;

--card:#151515;

--card2:#202020;

--text:#d8d8d8;

--shadow:0 20px 45px rgba(0,0,0,.35);

}

html{

scroll-behavior:smooth;

}

body{

background:var(--dark);

font-family:'Poppins',sans-serif;

color:white;

line-height:1.7;

overflow-x:hidden;

}

img{

display:block;

max-width:100%;

}

a{

text-decoration:none;

color:inherit;

}

ul{

list-style:none;

}

/*==================================================
            NAVBAR
==================================================*/

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

}

.navbar{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 8%;

background:rgba(0,0,0,.55);

backdrop-filter:blur(15px);

}

.logo img{

width:170px;

}

.navbar ul{

display:flex;

gap:35px;

}

.navbar a{

font-weight:600;

transition:.35s;

}

.navbar a:hover{

color:var(--gold);

}

.login-btn{

padding:12px 28px;

background:var(--gold);

color:#111;

border-radius:40px;

font-weight:700;

}

.login-btn:hover{

transform:translateY(-3px);

}

/*==================================================
            HERO
==================================================*/

.hero{

min-height:70vh;

background:

linear-gradient(

rgba(0,0,0,.75),

rgba(0,0,0,.75)

),

url(image/backgroundimg.png);

background-size:cover;

background-position:center;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:170px 8% 100px;

}

.hero{

background-size:cover;
background-position:center top;
background-repeat:no-repeat;

}

.hero-content{

max-width:900px;

}

.hero-badge{

display:inline-block;

padding:12px 30px;

background:rgba(255,213,74,.15);

border-radius:50px;

color:var(--gold);

font-weight:700;

margin-bottom:30px;

}

.hero h1{

font-size:68px;

margin-bottom:25px;

}

.hero p{

font-size:22px;

color:#dddddd;

line-height:1.8;

margin-bottom:45px;

}

/*==================================================
            SEARCH
==================================================*/

.search-box{

max-width:720px;

margin:auto;

display:flex;

overflow:hidden;

border-radius:60px;

background:white;

margin-bottom:35px;

}

.search-box input{

flex:1;

padding:20px;

border:none;

outline:none;

font-size:18px;

}

.search-box button{

width:80px;

border:none;

background:var(--gold);

font-size:22px;

cursor:pointer;

transition:.35s;

}

.search-box button:hover{

background:var(--gold-dark);

}

/*==================================================
        POPULAR TAGS
==================================================*/

.popular-tags{

display:flex;

justify-content:center;

align-items:center;

flex-wrap:wrap;

gap:12px;

}

.popular-tags span{

font-weight:700;

}

.popular-tags button{

padding:10px 20px;

border:none;

border-radius:40px;

background:rgba(255,255,255,.08);

color:white;

cursor:pointer;

transition:.35s;

}

.popular-tags button:hover{

background:var(--gold);

color:#111;

}

/*==================================================
        CATEGORY BUTTONS
==================================================*/

.category-section{

padding:90px 8% 40px;

text-align:center;

}

.category-section h2{

font-size:40px;

margin-bottom:35px;

}

.category-buttons{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:18px;

}

.category-buttons button{

padding:16px 28px;

border:none;

border-radius:50px;

background:#1d1d1d;

color:white;

cursor:pointer;

transition:.35s;

font-weight:600;

}

.category-buttons button:hover,

.category-buttons .active{

background:var(--gold);

color:#111;

}

/*==================================================
            FEATURED SECTION
==================================================*/

.featured{

    padding:90px 8%;

}

.title-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:45px;

    flex-wrap:wrap;

    gap:20px;

}

.title-row h2{

    font-size:42px;

}

.title-row p{

    color:#bbbbbb;

}

.title-row a{

    color:var(--gold);

    font-weight:700;

}

.title-row a:hover{

    text-decoration:underline;

}

/*==================================================
            VIDEO GRID
==================================================*/

.video-grid{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(350px,1fr));

    gap:35px;

}

/*==================================================
            VIDEO CARD
==================================================*/

.video-card{

    background:var(--card);

    border-radius:24px;

    overflow:hidden;

    transition:.4s;

    box-shadow:var(--shadow);

}

.video-card:hover{

    transform:translateY(-10px);

}

/*==================================================
            THUMBNAIL
==================================================*/

.thumbnail{

    position:relative;

    aspect-ratio:16/9;

    overflow:hidden;

}

.thumbnail img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.video-card:hover img{

    transform:scale(1.08);

}

.play{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.45);

    opacity:0;

    transition:.35s;

}

.video-card:hover .play{

    opacity:1;

}

.play i{

    width:85px;

    height:85px;

    border-radius:50%;

    background:white;

    color:#ff0000;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

}

/*==================================================
            VIDEO CONTENT
==================================================*/

.video-content{

    padding:28px;

}

.video-content h3{

    font-size:28px;

    margin-bottom:15px;

}

.video-content p{

    color:#cfcfcf;

   font-size: 15px;

    margin-bottom:20px;

}

.song-meta{

    display:flex;

    justify-content:space-between;

    margin-bottom:22px;

    font-weight:600;

    color:var(--gold);

}

.topics{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:30px;

}

.topics span{

    background:#242424;

    color:#dddddd;

    padding:10px 18px;

    border-radius:40px;

    font-size:14px;

}

.watch-btn{

    display:block;

    text-align:center;

    padding:18px;

    background:linear-gradient(

    135deg,

    var(--gold),

    #ffef99

    );

    color:#111;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.watch-btn:hover{

    transform:translateY(-4px);

    box-shadow:

    0 15px 35px rgba(255,213,74,.3);

}

.video-card:hover{

    box-shadow:

    0 25px 55px rgba(255,213,74,.18);

}

.video-card{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}


/*==================================================
        RECENTLY ADDED
==================================================*/

.recent-section{

    padding:90px 8%;

    background:#101010;

}

.recent-list{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.recent-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:var(--card);

    padding:22px 30px;

    border-radius:18px;

    transition:.35s;

}

.recent-item:hover{

    transform:translateX(8px);

}

.recent-item i{

    font-size:42px;

    color:#ff0000;

    margin-right:20px;

}

.recent-item div{

    flex:1;

}

.recent-item h3{

    margin-bottom:5px;

}

.recent-item p{

    color:#bbbbbb;

}

.recent-item a{

    background:var(--gold);

    color:#111;

    padding:12px 26px;

    border-radius:40px;

    font-weight:700;

    transition:.35s;

}

.recent-item a:hover{

    background:white;

}

/*==================================================
        RECOMMENDED
==================================================*/

.recommend-section{

    padding:90px 8%;

}

.recommend-section h2{

    font-size:42px;

    margin-bottom:20px;

}

.recommend-section>p{

    color:#cccccc;

    margin-bottom:45px;

}

.recommend-grid{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.recommend-card{

    background:var(--card);

    padding:40px;

    border-radius:22px;

    text-align:center;

    transition:.35s;

}

.recommend-card:hover{

    transform:translateY(-8px);

}

.recommend-card i{

    font-size:55px;

    color:var(--gold);

    margin-bottom:25px;

}

.recommend-card h3{

    margin-bottom:15px;

}

.recommend-card p{

    color:#cccccc;

    margin-bottom:30px;

}

.recommend-card a{

    display:inline-block;

    background:var(--gold);

    color:#111;

    padding:14px 28px;

    border-radius:40px;

    font-weight:700;

}

/*==================================================
        SUBSCRIBE
==================================================*/

.subscribe-section{

    padding:110px 8%;

    background:

    linear-gradient(

    rgba(0,0,0,.82),

    rgba(0,0,0,.82)

    ),

    url(image/backgroundimg.png);

    background-size:cover;

    text-align:center;

}

.subscribe-content{

    max-width:760px;

    margin:auto;

}

.subscribe-content h2{

    font-size:48px;

    margin-bottom:25px;

}

.subscribe-content p{

    color:#dddddd;

    margin-bottom:45px;

}

.subscribe-form{

    display:flex;

    max-width:650px;

    margin:auto;

    overflow:hidden;

    border-radius:60px;

}

.subscribe-form input{

    flex:1;

    padding:20px;

    border:none;

    outline:none;

    font-size:18px;

}

.subscribe-form button{

    border:none;

    background:var(--gold);

    padding:0 35px;

    cursor:pointer;

    font-weight:700;

}

/*==================================================
        TESTIMONIALS
==================================================*/

.testimonials{

    padding:90px 8%;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.testimonial-card{

    background:var(--card);

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.testimonial-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    margin:auto;

    margin-bottom:20px;

    object-fit:cover;

}

.stars{

    color:gold;

    font-size:22px;

    margin:15px 0;

}

/*==================================================
        CTA
==================================================*/

.join-academy{

    padding:120px 8%;

    text-align:center;

    background:#111;

}

.join-academy h2{

    font-size:52px;

    margin-bottom:20px;

}

.join-academy p{

    max-width:760px;

    margin:auto;

    color:#cccccc;

    margin-bottom:40px;

}

.join-btn{

    display:inline-block;

    padding:20px 45px;

    background:var(--gold);

    color:#111;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    transition:.35s;

}

.join-btn:hover{

    transform:translateY(-5px);

}

/*==================================================
        FOOTER
==================================================*/

footer{

    background:#050505;

    padding:70px 8%;

    text-align:center;

}

.footer-logo{

    width:180px;

    margin:auto;

    margin-bottom:30px;

}

.footer-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:30px;

    margin-bottom:30px;

}

.footer-links a:hover{

    color:var(--gold);

}

footer p{

    color:#888;

}

/*==================================================
        BACK TO TOP
==================================================*/

.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:var(--gold);

    color:#111;

    cursor:pointer;

    display:none;

    font-size:20px;

    box-shadow:var(--shadow);

}

.back-top.show{

    display:block;

}

/*==================================================
        RESPONSIVE
==================================================*/

@media(max-width:900px){

.hero h1{

font-size:48px;

}

.navbar{

flex-direction:column;

gap:20px;

}

.navbar ul{

flex-wrap:wrap;

justify-content:center;

}

.title-row{

flex-direction:column;

text-align:center;

}

.subscribe-form{

flex-direction:column;

border-radius:20px;

}

.subscribe-form input{

width:100%;

}

.subscribe-form button{

padding:20px;

}

.recent-item{

flex-direction:column;

text-align:center;

gap:20px;

}

}

.video-card,
.recommend-card,
.testimonial-card,
.recent-item{

opacity:0;

transform:translateY(40px);

transition:.7s;

}

.video-card.show,
.recommend-card.show,
.testimonial-card.show,
.recent-item.show{

opacity:1;

transform:translateY(0);

}














































