:root{
    --bg-color: #020202;
    --neon-pink: #ff2d95;
    --cyan: #00ffd1;
    --light-gray: #e0e0e0;
    --white: #fff;
    --black: #000;
    --crimson: #e2203b;
    --insta: linear-gradient(#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    max-width: 1350px;
    margin: 0 auto;
    background-color: #000;
}
/*----------------Header Section----------------*/
header{
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(2, 2, 2, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); 
    padding: 1em 2.5em;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo a{
    background: linear-gradient(to right, #00fff0, #ff0080);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}
nav ul{
    display: flex;
    gap: 40px;
    list-style-type: none;
}

nav ul li a{
    text-decoration: none;
    color: var(--light-gray);
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    cursor: pointer;
}
nav ul li a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 6px var(--neon-pink), 0 0 12px var(--neon-pink);
}
.underline{
    width: 0;
    height: 2px;
    background-color: var(--neon-pink);
    transition: width 0.4s ease;
}
li:active a{
    color: var(--neon-pink);
    text-shadow: 0 0 6px var(--neon-pink), 0 0 12px var(--neon-pink)
}
li:hover .underline{
    display: block;
    width: 100%;
}

.log-btn{
    font-weight: 300;
    font-size: 0.8rem;
    width: 80px;
    padding: 0.6em 1em;
    border: none;
    border-radius: 5px;
    transition: 0.3s ease;
    cursor: pointer;
}
.login{
    background: linear-gradient(to bottom right,#6b00d7,#a230ed);
    color: #fff;
    margin-right: 1em;
}
.signup{
    background-color: #000;
    border: 1px solid #6e3482;
    box-shadow: 0 0 15px #6e3482;
    color: #fff;
}
.login:hover{
    font-weight: 400;
    transform: translateY(-5px);
    box-shadow: 0 0 15px #6e3482,0 0 30px #6b00d7;
}
.signup:hover{
    font-weight: 400;
    transform: translateY(-5px);
    box-shadow: 0 0 15px #6e3482, 0 0 30px #6e3482;
}
/*----------------Hero Section----------------*/
#home{
    width: 100%;
    height: 100vh;
    background: url(Resources/hero-bg-org.jpg) no-repeat center/cover;
    position: relative;
    color: var(--white);
    padding: 1em 2em;
}
.overlay{
    width: 100%;
    height: 100%;
    background-color: #00000091;
    position: absolute;
    top: 0;
    left: 0;
    animation: overlay-fade 5s infinite alternate;
}
@keyframes overlay-fade {
    0% { background-color: #000000a2; }
    50% { background-color: #000000a1; }
    100% { background-color: #00000091; }
}
.content{
    position: relative;
    z-index: 1;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.heading{
    font-size: 4rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.3em;
}
.glow{
    background: linear-gradient(to right,#00ffd1,#ff2d95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tagline{
    font-size: 1.2rem;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: var(--light-gray);
    margin-bottom: 2em;
}
.listen{
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    padding: 0.3em 1em;
    border-radius: 20px;
    border: none;
    border: 1px solid #7f3aa1;
    box-shadow: 0 0 20px #7f3aa1;
    background: transparent;
    /*background: linear-gradient(#7f3aa1,#5416b5);*/
    color: #fff;
    transition: 0.3s ease;
    max-width: 200px;
    cursor: pointer;
}
.listen:hover{
    transform: scale(1.1);
    box-shadow: 0 5px 20px #7f3aa1;
    background: linear-gradient(#7f3aa1,#5416b5);
}
/*----------------Playlists Section----------------*/
#playlists{
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--white);
    padding: 4em 2em;
    margin-bottom: 5em;
}
.section-header h2{
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2em;
    letter-spacing: 2px;
}
.card-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    justify-content: center;
    gap: 2em;
}
.card{
    width: minmax(200px, 250px);
    border-radius: 20px;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1em;
    border: 1px solid #7f3aa1;
    transition: 0.3s ease;
    animation: breath 3s infinite alternate-reverse;
}
.card:hover{
    transform: scale(1.05);
    box-shadow: 0 0 20px #7f3aa1, 0 0 40px #ff2d95;
}
@keyframes breath {
    0%,100%{
        box-shadow: 0 0 10px #6e3482;
    }
    50%{
        box-shadow: none;
    }
}
.card-img-sec{
    height: 100%;
}
.card-img-sec img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.card-info-sec{
    padding: 1em 0;
}
.song{
    font-size: 1.2rem;
    font-weight: 500;
}
.artists{
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    font-weight: 200;
}
.play-btn-sec{
    display: flex;
    justify-content: center;
}
.play{
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    padding: 0.3em 0.8em;
    border-radius: 20px;
    border: none;
    border: 1px solid #7f3aa1;
    background: transparent;
    color: #fff;
    transition: 0.3s ease;
    max-width: 100px;
    cursor: pointer;   
}
.play:hover{
    box-shadow: 0 0 10px #7f3aa1,0 0 5px #ff2d95;
    transform: scale(1.05);
}
/*----------------Now Playing Section----------------*/
#now-playing{
    background: url(Resources/opoy7.jpg) no-repeat center/cover;
    width: 100%;
    height: 100%;
    padding: 4em 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.player{
    width: 80%;
    min-width: 300px;
    height: 250px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 3em;
    padding: 1.5em;
    border-radius: 20px;
    margin-bottom: 3em;
    background-image: linear-gradient(#000, #000),
                      linear-gradient(135deg, #fc2e86, #ff70ff, #00ffd1, #ff2d95);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: border-glow 6s linear infinite;
}
@keyframes border-glow {
    0% {
        background-image: linear-gradient(#000, #000),
                          linear-gradient(0deg, #fc2e86, #ff70ff, #00ffd1, #ff2d95);
    }
    50% {
        background-image: linear-gradient(#000, #000),
                          linear-gradient(180deg, #00ffd1, #ff2d95, #fc2e86, #ff70ff);
    }
    100% {
        background-image: linear-gradient(#000, #000),
                          linear-gradient(360deg, #fc2e86, #ff70ff, #00ffd1, #ff2d95);
    }
}
.artists-img-sec{
    max-width: 200px;
    height: 200px;
}
.artists-img-sec img{
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: image-rotate 15s linear infinite;
}
@keyframes image-rotate {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}
.song-info-sec{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
    margin-right: 1em;

}
.song-title{
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
#now-playing .artist-name{
    font-weight: 200;
    font-size: 0.8rem;
}
.progress-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.time{
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.progress-bar{
    width: 90%;
    height: 5px;
    border-radius: 5px;
    background: linear-gradient(to right,#fc2e86,#ff705f);
    box-shadow: 0 0 10px #fc2e86, 0 0 20px #ff705f;
    animation: progress-slide 3s linear infinite;
}
@keyframes progress-slide {
    0%{
        background: linear-gradient(to right,#fc2e86,#ff705f);
    }
    100%{
        background: linear-gradient(to right, #fc2e86,#ff70ff);
    }
}
.player-controls{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.fa-solid{
    font-size: 1rem;
    color: #fff;
    background-color: transparent;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0.7em;
    transition: 0.3s ease;
}
.fa-solid:hover{
    transform: scale(1.2);
    box-shadow: 0 0 10px #ff2d95, 0 0 20px #fc2e86;
}
#now-playing .tagline{
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;

    font-family: "Montserrat", sans-serif;
}
.app{
    padding: 0.7em 1em;
    font-size: 0.8rem;
    background-color: transparent;
    border: 1px solid #fc2e86;
    color: #fff;
    font-weight: 300;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}
.app:hover{
    transform: scale(1.1);
    box-shadow: 0 0 20px #fc2e86;
}
@media(max-width: 768px){
    .player {
        flex-direction: column;
        height: auto;
        text-align: center;
    }
    .song-info-sec {
        width: 100%;
    }
}
/*----------------Artists Section----------------*/
#artists{
    background-color: #000;
    padding: 4em 2em;
    color: #fff;
    text-align: center;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2em;
    color: #fff;
}

.section-title span {
    background: linear-gradient(to right, #00ffd1, #ff2d95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.artists-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 2em;
}
.artist-card{

    background-color: rgba(255, 255, 255, 0.03);
    padding: 2em 1em;
    border-radius: 15px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
}
.artist-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 20px #ff70ff;
}
.artist-img{
    width: 150px;
    height: 150px;
    margin: 0 auto 1em;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: glowRotate 4s linear infinite;
}
@keyframes glowRotate {
    0%{ border-color: #ff2d95;}
    25%{border-color: #00ffd1;}
    50%{border-color: #e2203b;}
    75%{border-color: #7f3aa1;}
    100%{border-color: #ff2d95;}
}
.artist-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.artist-card h3{
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.follow-btn{
    padding: 0.5em 1.2em;
    background-color: transparent;
    border: 1px solid #ff2d95;
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: 0.3s ease;
    cursor: pointer;
}
.follow-btn:hover{
    background: linear-gradient(to right,#00ffd1,#ff2d95);
    color: #000;
    font-weight: 500;
    box-shadow: 0 0 15px #ff2d95;
}
/*----------------Events Section----------------*/
#events{
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 2em 4em;
    background-color: #000;
}
.top-event-date{
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
}
.event-grid{
    display: grid;
    grid-template-rows: 1fr;
    justify-content: center;

    gap: 1em;
    margin-bottom: 2em;
}
.event-card{
    background-color: #1b1b1b7e;
    max-width: 100%;
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    border: 1px solid rgba(211, 211, 211, 0.342);
    padding: 5px;
    border-radius: 10px;
    transition: 0.3s ease;
}
.event-card:nth-child(3){
    border: 1px solid #ff70ff;
}
.event-card.second:nth-child(3){
    border: 1px solid rgba(211, 211, 211, 0.342);
}
.event-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 0 20px #ff70ff55, 0 0 40px #00ffd155;
}
.event-img{
    flex-grow: 1fr;
    width: 250px;
    height: 100%;
}
.event-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.event-info{
    width: 60%;
    padding: 1.2em 0;
}
.event-date{
    color: #ffffffc9;
    font-weight: 300;
    font-size: 0.8rem;
    margin-bottom: 5px;
}
.event-date span{
    color: #ff70ff;
    font-weight: 400;
    font-size: 1.3rem;
}
.event-name{
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.location{
    color: #ccc;
    font-size: 0.8rem;
    font-weight: 300;
}
.event-ticket-sec{
    width: 115px;
    height: 100px;
    margin-right: 40px;
    border: 1px solid #ff70ff83;
    background-color: transparent;
    border-radius: 50%;
    padding: 1em;
    position: relative;
    overflow: hidden;
}
.event-ticket-sec::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(#ff70ff, #00ffd1, #ff70ff);
    animation: rotate-glow 4s linear infinite;
    z-index: 0;
}
.event-ticket{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 400;
    background-color: #000;
    border: 1px solid #ff70ff;
    padding: 1em;
    position: relative;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
    transition: 0.2s ease;
}
@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.event-ticket:active{
    background-color: #ffffff54;
    color: #000;
    font-weight: 500;
}
/*----------------Subscribe Section----------------*/
#subscribe{
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    padding: 4em 2em;
    position: relative;
}
#subscribe h3{
    font-size: 3rem;
}
#subscribe p{
    font-size: 1.2rem;
}
#email{
    width: 250px;
    height: 30px;
    padding: 1em;border-radius: 10px;
    border: 1px solid #7f3aa1;
    background-color: #000;
    color: #00fff0;
    margin-bottom: 1em;
}
#email:focus{
    outline: 1px solid #a230ed;
    box-shadow: 0 0 15px #a230ed;
}
#email::placeholder{
    letter-spacing: 1px;
    font-weight: 300;
}
.subs{
    padding: 5px 20px;
    border: 1px solid #a230ed;
    border-radius: 30px;
    font-size: 0.8rem;
    background-color: transparent;
    color: #fff;
    box-shadow: 0 0 10px #a230ed;
    transition: 0.3s ease;
    cursor: pointer;
    animation: buttonGlow 3s infinite;
}
.subs:hover{
    transform: scale(1.1);
}
@keyframes buttonGlow {
    0% {
        box-shadow: 0 0 10px #a230ed, 0 0 20px #a230ed55;
    }
    50% {
        box-shadow: 0 0 10px #ff2d95, 0 0 20px #ff2d9555;
    }
    100% {
        box-shadow: 0 0 10px #a230ed, 0 0 20px #a230ed55;
    }
}
/*----------------Footer Section----------------*/
#footer{
    color: #fff;
    background-color: #131313;
    width: 100%;
    height: 100px;
    padding: 1em 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}
.content-block{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#footer .logo a{
    font-size: 1.5rem;
}
.nav-links a{
    text-decoration: none;
    color: #fff;
    margin-right: 10px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.nav-links a:hover{
    color: #a230ed;
    text-shadow: 0 0 5px #a230ed;
}
.fa-brands{
    margin-right: 15px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.fa-facebook:hover{
    color: #1877F2;
    transform: scale(1.5);
    text-shadow: 0 0 10px #1877F2;
}
.fa-x-twitter:hover{
    color: #fff;
    transform: scale(1.5);
    text-shadow: 0 0 10px #fff;
}
.fa-instagram:hover{
    background: linear-gradient(#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.5);
    text-shadow: 0 0 10px #fc2e86;
}
.fa-google:hover{
    background: linear-gradient(#f7443f,#f5ca0d,#0fb65a,#2f82f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.5);
    text-shadow: 0 0 10px #2f82f8;
}
.copyright{
    font-size: 0.7rem;
    opacity: 0.5;
}

/* -----------Meadia Query Section------------ */
@media screen and (max-width:1024px) {
    header{
        position: static;
        height: auto;
        flex-direction: column;
        gap: 10px;
    }
    nav ul li a{
        font-size: 0.85rem;
    }
    .log-btn{
        width: 65px;
        padding: 0.4em 0.6em;
    }
    #home{
        height: 100vh;
    }
    .heading{
        font-size: 3rem;
    }
    .tagline{
        font-size: 1rem;
    }
    .listen{
        font-size: 1rem;
        padding: 0.2em 0.7em;
    }
    .player{
        max-width: 350px;
    }
    .event-card{
        width: calc(100%-30px);
    }
    .event-img{
        height: 100%;
    }
    .event-name{
        font-size: 0.9rem;
    }
    .location{
        font-size: 0.7rem;
    }
    .event-ticket-sec{
        width: 105px;
        height: 90px;
        margin-right: 30px;
    }
    .event-ticket{
        width: 80px;
        height: 80px;
        font-size: 0.7rem;
    }
    #footer{
        height: auto;
    }
    .content-block{
        flex-direction: column;
        gap: 10px;
    }
}
@media screen and (max-width:640px) {
    .heading{
        font-size: 2.5rem;
    }
    .tagline{
        font-size: 0.8rem;
    }
    .listen{
        font-size: 0.8rem;
        padding: 0.2em 0.7em;
    }
    .section-header h2{
        font-size: 2rem;
    }
    .event-card{
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 250px;
        height: auto;
        padding: 5px;
    }
    .event-img {
        width: 100%;
        max-height: 150px;
    }
    .event-info{
        width: 100%;
        padding: 0;
    }
    .event-ticket-sec {
        width: auto;
        height: auto;
        padding: 0;
        border-radius: 30px;
        margin-right: 0;
        margin-bottom: 1em;
    }
    .event-ticket-sec:hover{
        box-shadow:  0 0 10px #7f3aa1,0 0 20px #7f3aa1;
    }
    .event-ticket-sec::before{
        display: none;
    }
    .event-ticket{
        width: 100%;
        height: 100%;
        border-radius: 0;
        border: none;
        font-size: 0.6rem;
    }
    #subscribe h3{
        font-size: 2.2rem;
    }
    #subscribe p{
        font-size: 0.6rem;
        text-align: center;
        opacity: 0.7;
    }
}