@import url('https://fonts.googleapis.com/css2?family=Fugaz+One&family=Kaisei+Tokumin&family=Shrikhand&display=swap');
a{
    text-decoration: none;
    color: #333;
}
body{
    margin: 0 auto;
    background: #FFFAFA;
   

}
.fix{
    position: fixed;
    top: 0;
    z-index: 1000;
}
.top-bar{
    background-color: #1E1E1E;
    width: 100vw;
    height: 65px;
    box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
    display: flex;
    align-items: center; /* Center items vertically */
}

.top-bar .connect-btn{
    background-color: #1ED760;
    width: 160px;
    height: 35px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto; /* Add this line to align to the right */
    margin-right: 45px;
}
.top-bar .connect-btn:hover{
    background: #0a5123;
}
.top-bar .connect-btn a:hover{
    color: #1ED760;
}

.top-bar .connect-btn a{
    padding: 10px;
    color: #333333;
    font-size: 12px;
    font-family: "Shrikhand", serif;
    font-weight: 300;
    font-style: normal;
    text-align: center; /* Center text within the button */
}
.top-bar h1{
    font-size: 20px;
    font-family: "Shrikhand", serif;
    font-weight: 400;
    font-style: normal;
    color: #1ED760;
    letter-spacing: 1px;
    margin-left: 30px;
}
.transform-bar{
    background-color: #1ED760;
    width: 60vw;
    height: 35px;
    margin: 0 auto;
    transform: translateY(-20px);
    border-radius: 50px;
    box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
-webkit-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
}
nav ul li a{
    text-decoration: none;
    color: #333333;
    font-size: 18px;
    font-family: "Fugaz One", serif;
    font-weight: 400;
    font-style: normal;
}
nav ul li a:hover{
    text-decoration: underline;
}
nav ul{
    display: flex;
    justify-content: center;
}
nav ul li{
    margin: 8px 20px;
}

#musicgenre h1{
    font-size: 35px;
    color: #333;
    font-family: "Shrikhand", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    letter-spacing: 2px;
    margin: 50px 0 60px 0;
    padding-top: 100px;
    transition: 0.3s ease-in-out;

}
#musicgenre h1:hover{
    transform: translateY(-10px);
    font-size: 40px;
}

#musicgenre-gridBox{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
    margin: 0 auto;
    width: 90vw;
}

.flip-box {
    background-color: transparent;
    width: 200px;
    height: 200px;
    perspective: 1000px; /*for 3D effect */
}
.flip-box button:hover {
    background-color: #021709;
    color: #1ED760;
}


.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.flip-box-front{
    overflow: hidden;
}
.flip-box-front img{
    width: 100%;
    height: 100%;
}

.flip-box-back {
    background-color: #101e15;
    transform: rotateY(180deg);
    overflow-y: scroll;
    position: relative;
}
.flip-box .flip-box-back p{
    margin: 5px 5px;
    line-height: 22px;
    letter-spacing: -0.5px;
    font-family: "Kaisei Tokumin", serif;
    font-size: 13px;
    font-weight: 200;
    font-style: normal;
    color: #fff;
    box-sizing: border-box;
    position: absolute;
    top: 0;
}
.flip-box-back::-webkit-scrollbar{
    width: 6px;
}
.flip-box-back::-webkit-scrollbar-track {
    background: #2b1818; /* Background of the track */
    border-radius: 10px;
}
.flip-box-back::-webkit-scrollbar-thumb {
    background: #1ED760; /* Color of the handle */
    border-radius: 10px;
}   

.flip-box #btn{
    margin: 30px 50px;
    width: 110px;
    border-radius: 30px;
    font-family: "Fugaz One", serif;
    font-weight: 400;
    font-style: normal;
}
#btn a{
    color: #1E1E1E;
}
.recentlyhitsongs h1{
    font-size: 35px;
    color: #333 ;
    font-family: "Shrikhand", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    letter-spacing: 2px;
    margin: 150px 0 50px 0;
    transition:transform 0.3s ease-in-out, font-size 0.3s ease-in-out;

}
.recentlyhitsongs h1:hover{
    transform: translateY(-10px);
    font-size: 40px;
     
}
.recentlyhitsongs-wrapped{
    display: grid;
    grid-template-columns: repeat(10,1fr); 
    overflow-x: scroll;
    gap: 20px;
    height: 50px;
    width: 90vw;
    height: 350px;
    margin: 0 auto;
}
.recentlyhitsongs-wrapped::-webkit-scrollbar{
    width: 0;
}
#recentlyhitsongs{
    padding: 10px;
    width: 330px;
    height: 80px;
    order: auto;
    display: flex;
    border-left: #5c5c5c47 solid 2px;
    justify-content: space-between;
}


.recentlyhitsongs h3{
    margin: auto 20px auto 10px;
    font-family: "Shrikhand", serif;
    font-weight: 250;
    font-style: normal;
    font-size: 16px;
}

.seemore-button{
    display: flex;
    justify-content: space-between;
    margin: 10px auto;
    width: 90%;
    border-bottom: #021709 1px dotted;
}
.topartistchart-lable .seemore-button{
    border-bottom: none;
}
.seemore-button #seemore-btn button{
    width: 30px;
    height: 25px;
    border-radius: 50px;
    background-color: #0da141;
    color: #fff;
    border: none;
    margin-bottom: 50px;
}
.seemore-button #seemore-btn button:hover{
    background-color: #0a5123;
}

.seemore-button h3 a{
    color: #0da141;
    font-family: "Fugaz One", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    transition: all 0.5s;
}
.seemore-button h3 a:hover{
    color: #0a5123;
}
.latestsongs h1{  
    font-size: 35px;
    color: #333 ;
    font-family: "Shrikhand", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    letter-spacing: 2px;
    margin: 50px 0;
    transition:0.3s ease-in-out;
}
.latestsongs h1:hover{
    transform: translateY(-10px);
    font-size: 40px;
}
.latestsongs-wrapped{
    display: grid;
    grid-template-columns: repeat(10,1fr);
    grid-template-rows: repeat(3, 1fr);
    overflow-x: scroll;
    gap: 20px;
    height: 50px;
    width: 90vw;
    height: 350px;
    margin: 0 auto;
}
.latestsongs-wrapped::-webkit-scrollbar{
    width: 0;
}
#latestsongs{
    padding: 10px;
    width: 330px;
    height: 80px;
    display: flex;
    border-left: #1e1e1e47 solid 2px;
    justify-content: space-between;
}
.latestsongs-wrapped .img{
    width: 25%;
    height: 100%;
    background-color: #a4a4a4;
    border-radius: 10px;
}
.latestsongs h3{
    margin: auto 20px auto 10px;
    font-family: "Shrikhand", serif;
    font-weight: 250;
    font-style: normal;
    font-size: 16px;
}
.latestsongs .songtitle-name{
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    margin-right: 50px;
}
.latestsongs .songtitle-name a{
    color: #333;
    font-family: "Fugaz One", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
}
#top_artists_chart{
    font-size: 35px;
    color: #333;
    margin-left: 60px;
    font-family: "Shrikhand", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
}

.topartistpic-wrapped{
    display: grid;
    grid-template-columns: repeat(10,1fr);
    width: 90%;
    height: 400px;
    border-radius: 10px;
    border: #021709 dotted 1px;
    overflow-x: scroll;
    margin: 50px auto 30px auto;
    box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
-webkit-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
}
.topartistpic-wrapped::-webkit-scrollbar{
    width: 0;
}
#top_artists_chart-selector{
    color: #1ED760;
    background-color: #191616;
    border-radius: 10px;
    margin-left: 10px;
    padding: 1px;
    font-size: 13px;
    font-family: "Fugaz One", serif;
    font-weight: 200;
    font-style: normal;
    border: none;
}
.artistpic{
    width: 180px;
    height: 300px;
    border-radius: 50px;
    margin: auto 30px; 
    position: relative;
}

.artistpic img{
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: #002d10 solid 2px;
    transition: border-radius 0.3s;
}
.artistpic img:hover{
    border-radius: 40px;
}

.artistpic #artist-name{
    text-decoration: none;
    color: #1E1E1E;
    overflow: visible;
}
.artist-name{
    position: absolute;
    bottom: -35px;
    color: #333;
    text-align: center;
    width: 100%;
    font-family: "Fugaz One", serif;
    font-weight: 300;
    font-style: normal;
}
.artistpic a .artist-name:hover{
   text-decoration: underline;
}
footer{
    width: 100%;
    background-color: #021709;
}
.footer-flex{
    display: flex;
    justify-content: space-between;
}

footer a{
    color: #fff;
}
.footer-nav ul li{
    padding-top: 25px;
    font-size: 18px;
}
.footer-nav ul li a:hover{
    text-decoration: underline;
}
.footer-nav ul{
    margin: 10px 150px 10px 0;
}
.footer-logo img{
    margin: 30px 0 20px 100px;
}
.footer-logo p{
    margin: 10px 0 20px 100px;
}
.footer-contact {
    margin: 0 0 30px 100px;
}
.footer-social{
    margin: 0 0 30px 100px;
}
.footer-social a{
    padding-left: 10px;
    font-size: 18px;
}
.footer-social a:hover{
    color: #1ED760;
}
footer p{
    color: #fff;
}
.footer-legal{
    text-align: center;
    padding-bottom: 20px;
}
/*End of Home Page*/

/*Start of Genres page*/
.genres-title{
    padding-top: 130px;
    font-size: 35px;
    font-family: "Shrikhand", serif;
    font-weight: 400;
    font-style: normal;
    margin-left: 80px;
    margin-bottom: 50px;
}
#musicgenre-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 90vw;
    margin: 0 auto 80px auto;
}
.musicbgpic {
    position: relative;
    flex-grow: 1;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
    margin: 0 auto;
}
.border-line{
    width: 100vw;
    border-bottom: #021709 dotted 1px;
    margin: 0 auto 70px auto;
    
}
.musicbgpic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../Music-genrePics/pop.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    filter: blur(20px);
    z-index: 1;
}
.rockbgpic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../Music-genrePics/Rock.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    filter: blur(20px);
    z-index: 1;
}
.rnbbgpic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../Music-genrePics/R&B.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    filter: blur(20px);
    z-index: 1;
}
.rapbgpic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../Music-genrePics/Rap.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    filter: blur(20px);
    z-index: 1;
}
.content-overlay {
    width: 500px;
    position: relative;
    color: white;
    text-align: center;
    z-index: 2;
    padding: 20px;
    margin: auto 100px auto 0;
}
.content-overlay h2{
    color: #FFFAFA;
    font-size: 25px;
    font-family: "Fugaz One", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 20px;
}
.content-overlay p{
    line-height: 27px;
    letter-spacing: -0.5px;
    font-family: "Kaisei Tokumin", serif;
    font-size: 16px;
    font-weight: 200;
    font-style: normal;
    color: #fff;
}
.innerpic-musicgenres {
    position: relative;
    width: 300px;
    height: 280px;
    background-color: #ff6464;
    z-index: 3;
    margin: auto 0 auto 100px;
    border-radius: 10px;
    overflow: hidden;
}
.innerpic-musicgenres img{
    height: 100%;
    width: 100%;
}
.musicchart-playlist{
    width: 80vw;
    display: flex;
    justify-content: space-around;
    margin: 0 auto 120px auto;
    box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
    
}
.title{
    font-size: 35px;
    font-family: "Shrikhand", serif;
    font-weight: 300;
    font-style: normal;
    color: #333;
    line-height: 50px;
    letter-spacing: 0.5px;
    margin: auto 0;
    padding-bottom: 80px;
}
.musicchart-playlist span{
    color: #1ED760;
}
.playlist{
    padding-bottom: 10px;
}
.musicchart iframe{
    box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 7px 8px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.75);
}
/*Gernes Page End*/


/*Start Artist page*/
.artist-title{
    padding-top: 130px;
    font-size: 35px;
    font-family: "Shrikhand", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin: 0 auto;
    margin-left: 25px;
}
.artist-country{
    padding-top: 40px;
    font-size: 25px;
    font-family: "Shrikhand", serif;
    font-weight: 400;
    font-style: normal;
    width: 90vw;
    margin: 0 auto;
    border-bottom: #021709 dotted 1px;
}
.artist-country ul{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}
.artist-country ul li{
    padding-left: 50px;
}
.global-green{
    color: #1ED760;
}
.text-color{
    color: #1ED760;
}
.artist-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin: 30px auto;
    width: 70%;
}
.artistpage-artistpic{
    background-color: #4f4f4f;
    height: 200px;
    width: 200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    box-shadow: 0px 7px 8px -1px rgba(0, 0, 0, 0.8);
-webkit-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.8);
-moz-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.8);
}


.overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
}
.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
}



.artistpage-artistpic img{
    position: absolute ;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;   
    left: 50%; 
    transform: translate(-50%, -50%);  
    transition: all 0.5s ease-in-out;
}
.artistpage-artistpic img:hover{
    width: 110%;
    height: 110%;
    transition: all 0.5s ease-in-out;
}

.artistpage-artistpic p{
    font-size: 11px;
    position: absolute;
    bottom: 10px;
    left: 10px; 
    margin: 0;
    color: white; 
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 5px; 
    border-radius: 3px; 
    z-index: 2;
    font-family: "Kaisei Tokumin", serif;
    font-weight: 200;
    font-style: normal;
}
.artistpage-artistpic p:hover{
    color: #1ED760;
    background-color: #021709;
}
/*Artist Page End*/

/*Chart Page start*/
.globalchart-title h1{
    padding-top: 130px;
    font-size: 30px;
    font-family: "Shrikhand", serif;
    font-weight: 400;
    font-style: normal;
    margin-left: 65px;
    padding-bottom: 20px;
    letter-spacing: 0.5px;
}
.globalchart-title{
    width: 100vw;
    box-shadow: 0px 7px 8px -1px rgba(0, 0, 0, 0.8);
-webkit-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.8);
-moz-box-shadow: 0px 7px 8px -1px rgba(0,0,0,0.8);
}
.chart-page .playlist{
    display: flex;
    justify-content: center;
    margin: 50px 0;
}
.chart-page span{
    color: #1ED760;
}
