@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #090909;
}
header{
    background: #070707;
    border-bottom: 1px solid #202020;
    height: 64px;
    width: 100%;
}
.headwrap{
    width: 80%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header img{
    width: 45px;
    height: 45px;
    border-radius: 100%;
}
header .left{
    display: flex;
    color: #eee;
    align-items: center;
}
header .left h1{
    font-size: 16px;
}
header .left p{
    opacity: 0.75;
    font-size: 14px;
    font-weight: 300;
}
.lefttext{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 16px;
}
nav ul{
    display: flex;
}
nav ul li{
    list-style: none;
    margin-left: 32px;
}
nav ul li a{
    color: #eee;
    opacity: 0.75;
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
}
nav ul li a:hover{
    text-decoration: underline;
}

.wrapper{
    width: 80%;
    margin: 0 auto;
}
.maps, .pricing{
    width: 100%;
    padding-top: 32px;
}
.maps h2, .pricing h2{
    color: #eee;
    font-size: 20px;
}
.maps h2 span{
    font-size: 16px;
    margin-left: 8px;
}
.maps h2 span a{
    color: #AF77EB;
    text-decoration: none;
}
.maps h2 span a:hover{
    text-decoration: underline;
}

.cardbase {
  background: rgb(29, 9, 9);
  height: 228px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0; /* important to allow content to wrap */
  overflow: hidden;
}
.cover{
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-top: 1px solid rgba(255,255,255,0.75);
    border-left: 1px solid rgba(255,255,255,0.75);
    border-right: 1px solid rgba(255,255,255,0.75);
    position: relative;
}
.songinfo{
     box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background: #070707;
    min-width: 25%;
    height: 128px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border: 1px solid #202020;
    position: relative;
    color: #eee;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.songinfo h3{
    font-size: 16px;
}
.songinfo h3 span{
    font-size: 14px;
    opacity: 0.75;
    font-weight: 400;
}
.songinfo p{
    margin-top: 4px;
    font-size: 14px;
    opacity: 0.75;
    font-weight: 300;
}
.songinfo p.date{
    opacity: 0.4;
    font-weight: 200;
    font-size: 12px;
}

.blackgradient{
    min-width: 100%;
    height: 100px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    position: absolute;
    background: linear-gradient(10deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 9999;
}
.diffs{
    display: flex;
    flex-direction: row-reverse;
}
.diffs div{
    margin-left: 5px;
}
.expertplus{
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #7047A9;
}
.expert{
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #A83624;
}
.hard{
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #B15B1E;
}
.normal{
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #2A669D;
}
.easy{
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #2E7D58;
}

.categories{
    position: absolute;
    width: 328px;
    height: 24px;
    bottom: 0;
    margin-bottom: 16px;
    display: flex;
}
.style, .genre{
    display: flex;
}
.categories p{
    color: #2A669D;
    font-size: 12px;
    opacity: 1;
    background: #2a669d21;
    border: 1px solid #2A669D;
    padding: 2px 8px;
    border-radius: 20px;
    margin-right: 8px;
}

.genre p{
    color: #2E7D58;
    font-size: 12px;
    opacity: 1;
    background: #2e7d5821;
    border: 1px solid #2E7D58;
    padding: 2px 8px;
    border-radius: 20px;
    margin-right: 8px;
}
.labels{
    position: absolute;
    z-index: 99999;
    display: flex;
    right: 0;
    margin: 8px 8px 0px 0px;
}
p.curated {
    background:#48B88F;
    opacity: 1;
    padding: 4px 12px;
    font-weight: 500;
    border-radius: 20px;
    font-size: 12px;
    color: #eee;
    
}

.cardflex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
  margin-top: 16px;
  padding: 0; /* keep padding on wrapper, not the grid, or adjust if needed */
}
.stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
}
.stats div{
    width: 100%;
    background: #070707;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #eee;
    border-radius: 16px;
    border: 1px solid #202020;
}
.stats p{
    opacity: 0.75;
    font-weight: 200;
    margin-top: 8px;
    font-size: 14px;
}

.priceflex{
    display: grid;
     grid-template-columns: repeat(5, 1fr);
    align-items: center;
    width: 100%;
    margin-top: 16px;
    gap: 32px;
    
    
}
.priceflex button{
    transition: 0.3s;
}
.priceflex button:hover{
    cursor: pointer;
    transition: 0.3s;
    transform: scale(1.05);
    
}
.price1{
    
    background: #070707;
    border: 1px solid #202020;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #36f35950;
}
.price2{
    
    background: #070707;
    border: 1px solid #202020;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #366CF350;
}
.price3{
    
    background: #070707;
    border: 1px solid #202020;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #F3C73650;
}
.price4{
    
    background: #070707;
    border: 1px solid #202020;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #F3367B50;
}
.price5{
    
    background: #070707;
    border: 1px solid #202020;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #A136F350;
}
.head{
    text-align: center;
    color: #eee;
}
.price1 .head h3{
    font-size: 22px;
    margin-bottom: 4px;
}
.price2 .head h3{
    font-size: 22px;
    margin-bottom: 4px;
}
.price3 .head h3{
    font-size: 22px;
    margin-bottom: 4px;
}
.price4 .head h3{
    font-size: 22px;
    margin-bottom: 4px;
}
.price5 .head h3{
    font-size: 22px;
    margin-bottom: 4px;
}


.price1 .head h4{
    color: #36F358;
    font-size: 20px;
}
.price2 .head h4{
    color: #366CF3;
    font-size: 20px;
}
.price3 .head h4{
    color: #F3C736;
    font-size: 20px;
}
.price4 .head h4{
    color: #F3367B;
    font-size: 20px;
}
.price5 .head h4{
    color: #A136F3;
    font-size: 20px;
}
.price1 .head{
    padding-bottom: 16px;
    border-bottom: 1px solid #36F358;
    width: 100%;
    margin: 0 auto;
}
.price2 .head{
    padding-bottom: 16px;
    border-bottom: 1px solid #366CF3;
    width: 100%;
    margin: 0 auto;
}
.price3 .head{
    padding-bottom: 16px;
    border-bottom: 1px solid #F3C736;
    width: 100%;
    margin: 0 auto;
}
.price4 .head{
    padding-bottom: 16px;
    border-bottom: 1px solid #F3367B;
    width: 100%;
    margin: 0 auto;
}
.price5 .head{
    padding-bottom: 16px;
    border-bottom: 1px solid #A136F3;
    width: 100%;
    margin: 0 auto;
}

.price1 button{
    background: #070707;
    color: #eee;
    border: 1px solid #36F358;
    border-radius: 8px;
    padding: 8px 16px;
    width: 100%;
    display: block;
    margin: 32px auto 0 auto;
}
.price2 button{
    background: #070707;
    color: #eee;
    border: 1px solid #366CF3;
    border-radius: 8px;
    padding: 8px 16px;
    width: 100%;
    display: block;
    margin: 32px auto 0 auto;
}
.price3 button{
    background: #070707;
    color: #eee;
    border: 1px solid #F3C736;
    border-radius: 8px;
    padding: 8px 16px;
    width: 100%;
    display: block;
    margin: 32px auto 0 auto;
}
.price4 button{
    background: #070707;
    color: #eee;
    border: 1px solid #F3367B;
    border-radius: 8px;
    padding: 8px 16px;
    width: 100%;
    display: block;
    margin: 32px auto 0 auto;
}
.price5 button{
    background: #070707;
    color: #eee;
    border: 1px solid #A136F3;
    border-radius: 8px;
    padding: 8px 16px;
    width: 100%;
    display: block;
    margin: 32px auto 0 auto;
}
.pricing ul{
    width: 80%;
    margin: 0 auto;
}
.pricing li{
    color: #eee;
    opacity: 0.75;
    font-size: 14px;
    font-weight: 200;
    margin-top: 16px;
}

.start div{
    width: 100%;
    background: #070707;
    border: 1px solid #202020;
    border-radius: 16px;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 32px;
    
}
.start h3{
    font-size: 20px;
    color: #eee;
    margin-top: 32px;
    padding-left: 32px;
    padding-right: 32px;
}
.start p{
    font-size: 14px;
    color: #eee;
    opacity: 0.75;
    margin-bottom: 32px;
    font-weight: 300;
    margin-top: 4px;
    padding-left: 32px;
    padding-right: 32px;
}

.forms{
    width: 100%;
    
    display: flex;
    gap: 32px;
}
.formleft{
    width: 50%;
    
}
.formright{
    width: 50%;
    
}
.contactbox{
    display: flex;
    gap: 32px;
    color: #eee;
}
.contactbox h4{
    font-size: 16px;
}
.contactbox p{
    font-size: 14px;
    font-weight: 200;
    opacity: 0.75;
}
.contactbox .contactinfo i{
    font-size: 32px;
    opacity: 0.75;
}
.contactbox .contactinfo{
    display: flex;
    align-items: center;
    background: #070707;
    border: 1px solid #202020;
    border-radius: 16px;
    padding: 32px;
    width: 50%;
}
.contacttext{
    margin-left: 16px;
}
.processbox{
    
    background: #070707;
    border: 1px solid #202020;
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
    color: #eee;
    
}
.processbox li{
    font-weight: 200;
    font-size: 14px;
    opacity: 0.75;
    margin-top: 16px;
}
.processbox span{
    font-style: italic;
    color: #ffb921;
}
.processbox a{
    color: #bf83ff;
    text-decoration: none;
}
.processbox a:hover{
    text-decoration: underline;
}

form{
    background: #070707;
    border: 1px solid #202020;
    border-radius: 16px;
    padding: 32px;
    color: #eee;
    margin-bottom: 64px;
}
form input{
    background: #101010;
    border: 1px solid #202020;
    padding: 8px 16px;
    border-radius: 8px;
    color: #eee;
    margin-bottom: 16px;
}
form input:focus , textarea:focus , select:focus{
    border: 1px solid #505050;
    outline: none;
}
form label{
    font-size: 14px;
    color: #eee;
    font-weight: 600;
    margin-bottom: 4px;
}
.form-group{
    display: flex;
    flex-direction: column;
}
.form-row{
    display: flex;
    gap: 32px;
}
.form-row .form-group{
    width: 50%;
}
select{
    background: #101010;
    border: 1px solid #202020;
    padding: 8px 16px;
    border-radius: 8px;
    color: #eeeeee75;
    margin-bottom: 16px;
    font-weight: 200;
}
textarea{
    background: #101010;
    border: 1px solid #202020;
    padding: 8px 16px;
    border-radius: 8px;
    color: #eeeeee;
    margin-bottom: 16px;
    font-weight: 300;
    resize: none;
}

.form-terms label{
    font-weight: 300;
}
.form-terms label a{
    color: #bf83ff;
    text-decoration: none;
}
.form-terms label a:hover{
    color: #bf83ff;
    text-decoration: underline;
}
form button{
    width: 100%;
    padding: 8px 16px;
    background: #951EAD;
    color: #eee;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
    margin-top: 16px;
}
form button:hover{
    cursor: pointer;
    transform: scale(1.02);
}
option{
    border-radius: 8px;
}
footer{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    color: #eeeeee90;
    border-top: 1px solid #202020;
    font-size: 14px;
}
.contactme{
    color:#63ff80
}




@media only screen and (max-width: 1700px) {
    .cardflex{
        grid-template-columns: repeat(2, 1fr);
    }
    .priceflex{
        grid-template-columns: repeat(3, 1fr);
        
    }

}
@media only screen and (max-width: 1440px){
.forms{
        flex-direction: column;
        align-items: center;
    }
   .formleft{
        width: 100%;
        }
    .formright{
        width: 100%;
    }
     .contactbox{
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .contactinfo{
        width: calc(100% - 64px) !important;
        
    }
}
@media only screen and (max-width: 800px) {
    .cardflex{
        grid-template-columns: repeat(1, 1fr);
    }
    .priceflex{
        grid-template-columns: repeat(2, 1fr);
        
    }
    
    .stats{
         grid-template-columns: repeat(1, 1fr);
    }
    
}

@media only screen and (max-width: 680px) {
 .priceflex{
        grid-template-columns: repeat(1, 1fr);
        
        
    }
    

.form-row{
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.form-row .form-group{
    width: 100%;
}

    
}

/* Hide mobile nav & burger by default */
.mobile-nav {
    display: none;
    position: absolute;
    top: 64px; /* below header */
    right: 0;
    width: 200px;
    background: #070707;
    border: 1px solid #202020;
    border-radius: 8px;
    z-index: 99999999;
}
.mobile-nav ul {
    display: flex;
    flex-direction: column;
    padding: 16px;
}
.mobile-nav ul li {
    margin: 8px 0;
}
.mobile-nav ul li a {
    color: #eee;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
}
.burger {
    display: none; /* hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}
.burger div {
    height: 3px;
    width: 100%;
    background: #eee;
    border-radius: 2px;
}

/* Show burger on small screens */
@media only screen and (max-width: 1440px) {
    .desktop-nav { display: none; }
    .burger { display: flex; }
}
.truncate {
    white-space: nowrap;        /* Prevent line breaks */
    overflow: hidden;           /* Hide overflow */
    text-overflow: ellipsis;    /* Show "..." */
}