*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:black;
    font-family:'Montserrat', sans-serif;
    color:white;
    overflow-x:hidden;
}

/* =========================================
NAVBAR
========================================= */

.navbar{
    position:fixed;

    width:100%;

    padding:20px 60px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:999;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(12px);
}

.logoNighty{
    width:130px;
}

.navLinks{
    display:flex;
    gap:40px;

    list-style:none;
}

.navLinks a{
    text-decoration:none;
    color:white;

    font-weight:500;

    transition:.3s;
}

.navLinks a:hover{
    color:#ff4fd8;
}

.ticketBtn{
    background:linear-gradient(
        45deg,
        #ff4fd8,
        #8f5bff
    );

    border:none;

    color:white;

    padding:14px 28px;

    border-radius:40px;

    cursor:pointer;

    font-weight:700;

    box-shadow:0 0 25px #ff4fd8;
}

/* =========================================
HERO
========================================= */

.hero{
    position:relative;

    height:100vh;
    overflow:hidden;
}

.heroVideo{
    position:absolute;

    width:100%;
    height:100%;

    object-fit:cover;
}

.heroOverlay{
    position:absolute;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        rgba(0,0,0,.4),
        rgba(0,0,0,.8)
    );
}

.heroContent{
    position:relative;

    z-index:5;

    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.heroContent h1{
    font-size:8rem;
    font-weight:900;

    letter-spacing:12px;

    background:linear-gradient(
        45deg,
        white,
        #ff4fd8
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.heroContent h2{
    font-size:4rem;

    color:#d75dff;

    letter-spacing:10px;
}

.heroContent p{
    margin-top:20px;

    font-size:1.2rem;

    letter-spacing:4px;
}

.playButton{
    margin-top:40px;

    width:100px;
    height:100px;

    border-radius:50%;

    border:2px solid #ff4fd8;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:2rem;

    cursor:pointer;

    box-shadow:0 0 30px #ff4fd8;
}

/* =========================================
EVENTS
========================================= */

.eventsSection{
    padding:120px 8%;
}

.sectionTitle{
    text-align:center;
    margin-bottom:60px;
}

.sectionTitle span{
    color:#ff4fd8;
    letter-spacing:6px;
}

.sectionTitle h2{
    margin-top:20px;

    font-size:4rem;

    color:#ff4fd8;
}

.eventsGrid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.eventCard{
    background:#0d0d0d;

    border-radius:25px;

    overflow:hidden;

    border:1px solid #7428ff;

    transition:.4s;

    box-shadow:0 0 25px rgba(255,79,216,.2);
}

.eventCard:hover{
    transform:translateY(-10px);
}

.eventCard img{
    width:100%;
    height:350px;

    object-fit:cover;
}

.eventInfo{
    padding:25px;
}

.eventInfo h3{
    font-size:2rem;
}

.eventInfo p{
    margin:10px 0 20px;
}

.eventInfo button{
    background:linear-gradient(
        45deg,
        #ff4fd8,
        #8f5bff
    );

    border:none;

    padding:12px 25px;

    border-radius:30px;

    color:white;

    cursor:pointer;
}

.floating-ticket{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#ff2d8d;
    color:white;
    padding:15px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    font-size:18px;
    box-shadow:0 0 20px rgba(255,45,141,.5);
    z-index:99999;
    transition:.3s;
}

.floating-ticket:hover{
    transform:scale(1.05);
}

.modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.8);
    z-index:999999;
}


.modal-content{

    width:min(90%,600px);

    background:white;

    color:#111;

    margin:5vh auto;

    padding:30px;

    border-radius:20px;

    max-height:90vh;

    overflow:auto;

}

.closeModal{

    position:absolute;

    top:10px;
    right:20px;

    font-size:50px;

    font-weight:900;

    color:#ff4fd8;

    cursor:pointer;

    line-height:1;

    text-shadow:
        0 0 10px #ff4fd8,
        0 0 20px #ff4fd8;

    transition:.3s;
}

.modal-content h2{
    color:#8f5bff;
    margin-bottom:20px;
}

.modal-content h3{
    color:#ff4fd8;
    margin:20px 0;
}

.modal-content p{
    color:#111;
    margin-bottom:10px;
}

.modal-content label{
    display:block;
    color:#111;
    font-weight:600;
    margin-bottom:8px;
}

.modal input{

    width:100%;

    padding:12px;

    margin-bottom:15px;

}

/* =========================================
PLAYER
========================================= */

.playerSection{
    padding:100px 8%;
}

.playerContainer{
    background:#080808;

    border:1px solid #8f5bff;

    border-radius:30px;

    padding:40px;

    display:grid;

    grid-template-columns:
    300px 1fr 300px;

    gap:40px;

    align-items:center;

    box-shadow:0 0 35px rgba(143,91,255,.2);
}

.albumCover img{
    width:100%;

    border-radius:20px;
}

.playerInfo h2{
    color:#ff4fd8;

    margin-bottom:10px;
}

.subtitle{
    color:#aaa;
    margin-bottom:30px;
}

.playerInfo h3{
    font-size:2rem;
}

.playerInfo input{
    width:100%;

    margin:30px 0;
}

.controls{
    display:flex;
    gap:20px;
}

.controls button{
    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:#151515;

    color:white;

    cursor:pointer;

    font-size:1.3rem;
}

.playMain{
    background:linear-gradient(
        45deg,
        #ff4fd8,
        #8f5bff
    ) !important;
}

.wave{
    display:flex;
    align-items:flex-end;
    gap:10px;

    height:180px;
}

.bar{
    width:14px;

    background:
    linear-gradient(
        to top,
        #ff4fd8,
        #8f5bff
    );

    border-radius:20px;

    animation:wave 1s infinite ease-in-out;
}

.bar:nth-child(1){height:40px;}
.bar:nth-child(2){height:100px;}
.bar:nth-child(3){height:70px;}
.bar:nth-child(4){height:160px;}
.bar:nth-child(5){height:120px;}
.bar:nth-child(6){height:80px;}
.bar:nth-child(7){height:40px;}

@keyframes wave{
    0%{
        transform:scaleY(.7);
    }

    50%{
        transform:scaleY(1.2);
    }

    100%{
        transform:scaleY(.7);
    }
}

/* =========================================
GENRES
========================================= */

.genres{
    padding:100px 8%;

    text-align:center;
}

.genres h2{
    margin-bottom:50px;

    color:#ff4fd8;
}

.genresGrid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(180px,1fr));

    gap:30px;
}

.genresGrid div{
    background:#111;

    padding:40px 20px;

    border-radius:20px;

    border:1px solid #8f5bff;
}

/* =========================================
FOOTER
========================================= */

footer{
    padding:80px 8%;

    border-top:1px solid #222;
}

.footerGrid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:40px;
}

.footerLogo{
    width:240px;

    margin-bottom:20px;
}

.socials{
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:900px){

    .navbar{
        padding:20px;
    }

    .navLinks{
        display:none;
    }

    .heroContent h1{
        font-size:4rem;
    }

    .heroContent h2{
        font-size:2rem;
    }

    .sectionTitle h2{
        font-size:2.5rem;
    }

    .playerContainer{
        grid-template-columns:1fr;
    }

}