@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body {
  background-color: hsl(120, 6%, 7%);
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: #e2e3e3;
  box-sizing: border-box;
  overflow: hidden;
}

a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
* button {
 cursor: pointer;
}


#loader-wrapper {
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

#loader {
  width: 50px;
  height: 50px;
  border: 4px solid hsl(120, 6%, 7%);
  border-top: 4px solid #009ad2;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
body.loaded {
  overflow: auto;
}

#loader-wrapper.hide {
  opacity: 0;
  pointer-events: none;
}

.header {
  background-color: #00000023;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0b0d0b;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  color: #bebebe;
  z-index: 100;
  animation: fadeIn 2s ease-in-out forwards;
}

/* make left + right equal flex space */
.navbar .left,
.navbar .right {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0px 30px;
}

/* center stays in true middle */
.navbar .center {
  flex: 0; /* no extra stretching */
  display: flex;
  justify-content: center;
}
.navbar .right {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* push buttons to right edge */
  align-items: center;
  gap: 10px; /* optional: spacing between buttons */
}


/*.left {*/
/*  display: flex;*/
/*  gap: 10px;*/
/*}*/
.backward-icon {
  display: none;
}
.hambuger img{
  /*width: 29px;*/
}
.hambuger{
  background-color: rgb(37, 35, 35);
  padding: 10px;
  border-radius: 50px;
  transition: 0.4s;
}
.hambuger i{
  font-size: 22px;
}
.hambuger:hover {
  background-color: black;
  transform: scale(1.1);
}

.hambuger i {
  font-size: 22px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.hambuger:hover i {
  transform: rotate(90deg);
}


.center .logo-icon {
  width: 150px;
}

.center .logo-icon img {
  width: 100%;
}

.right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.right .button {
  background-color: transparent;
  color: white;
  border: 1px solid #bebebe;
  border-radius: 55px;
  padding: 14px 29px;
  font-size: 13px;
  -webkit-animation: scale-up-center 2s ease-out 1s alternate both;
  animation: scale-up-center 2s ease-out 1s alternate both;
}

.right .learnMoreBtn {
  background-color: #009ad2;
  color: white;
  padding: 15px 21px;
  border: none;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: .6px;
 -webkit-animation: scale-up-center 2s ease-out 1s alternate both;
  animation: scale-up-center 2s ease-out 1s alternate both;
}
.right .learnMoreBtn:hover {
  background-color: white;
  color: black;
}


#mainContent {
  transition: backdrop-filter 0.3s ease-in-out;
}
#mainContent.blurred {
  filter: blur(3px);
  opacity: .9;
}
#sidebar {
  background-color: #0b0d0b;
  font-family: "Poppins", sans-serif;
  color: #f8f0f3;
  position: absolute;
  position: fixed;
  width: 313px;
  top: 86px;
  left: -550px;
  bottom: 0;
  z-index: 50;
  transition: left 0.5s ease-in-out;

}
#sidebar.open {
  left: 0; /* Visible when open */
}
.sidebar div {
  padding-bottom: 33px;
}

 .sidebar-nav a{
  color: white;
} 
.sidebar-nav img {
  width: 115px;
  margin-left: 20px;
}

.sidebar-nav ul {
  list-style: none;
}

.sidebar-nav ul li {
  display: flex;
  gap: 15px;
  padding: 10px 0 10px 36px;
  margin: 21px 0;
  align-items: center;
  letter-spacing: 2px;
  cursor: pointer;
  font-size: 17px;
  
}
.sidebar-nav ul li .fa-solid {
  font-size: 14px;
}
.sidebar-nav ul li:hover {
  background-color: #171a17;
}

 
/* background-animation */

.landing-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  /* text-align: center; */
  position: relative;
  overflow: hidden;  
  margin-bottom: 8%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  background-size: cover;
  background-position: center;
  animation: fade 1s ease-in-out;
  overflow: hidden;
}

.carousel-slide.active {
  display: block;
}
.dots {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 10px;
}
.dot {
  width: 12px;
  height: 12px;
  background: #666;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.dot.active {
  background: #00aaff;
}

.overlay {
  position: absolute;
  background: rgba(0,0,0,0.6);
  padding: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start; /* default for large screens */
}

/* Headline */
.overlay h1 {
  font-size: 4rem;
  width: 95%;
  max-width: 900px;
  animation: scale-up-center 1s ease-out .1s alternate both;
}

/* Paragraph */
.overlay p {
  font-size: 1.3rem;
  width: 45%;
  max-width: 600px;
  margin-top: 10px;
  animation: scale-up-center 1s ease-out .1s alternate both;
}
.overlay .btn-group {
  margin-top: 40px;
  display: flex;
  gap: 30px;
}

/* Center on smaller screens */
@media (max-width: 768px) {
  .overlay {
    align-items: center;     /* center horizontally */
    text-align: center;      /* center text */
    padding: 20px;
  }

  .overlay h1 {
    font-size: 2rem;
    width: 100%;
  }

  .overlay p {
    font-size: 1rem;
    width: 100%;
    margin-top: 10px;
  }

  .btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center; /* center buttons */
    margin-top: 20px;
  }
}

.overlay .btn-group .primary, .secondary {
  background-color: #009ad2;
  color: white;
  padding: 15px 39px;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  letter-spacing: .6px;
  transition: 0.2s;
  -webkit-animation: scale-up-center 2s ease-out 1s alternate both;
  animation: scale-up-center 2s ease-out 1s alternate both;
}

.btn-group .primary:hover,
.btn-group .secondary:hover {
  background-color: #fff;
  color: black;
}

.btn-group .secondary {
  color: white;
  background-color: transparent;
  border: 1px solid gray;
  border-radius: 50px;
  /* padding: 19px 46px; */
  font-size: 16px;
}


.wtr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 10%;
  column-gap: 25px;
  color: #e2e3e3;
  padding: 0 8%;
  margin: 0 0 93px 0;
}
.wtr h2 {
  font-size: 2rem;
  font-weight: 400;
  padding-bottom: 15px;
}
.wtr p,
ol {
  font-size: 20px;
  line-height: 47px;
  list-style: none;
  font-weight: 100;
  color: #e2e3e3e2;
}
.royaltyBasket ul{
  margin-left: 4px;
}
.royaltyBasket span,
.whyMusicRoyalties span,
.howItWorks span {
  font-size: 27px;
  font-weight: 300;
  color: #e2e3e3;
}


/* trending-container */
.trending-container {  
  padding: 0 36px;
}
.trending-sub-container {
  margin-top: 7%;
  display: flex;
  justify-content: space-between;
  color: white;
  align-items: center;
}
.trending {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 17px;
  margin-bottom: 30px;
  align-items: baseline;
}
.trending h2 a{
  color: white;
  letter-spacing: 1.5px;
  font-size: 2.7rem;
  font-weight: 400;
}
.trending p:first-of-type {
  font-size: 14px;
  text-decoration: none;
}
.trending p a {
  color: #6d6f6d;
  letter-spacing: 0.8px;
  transition: color 0.2s;
}
.trending p a:hover {
  color: #fff;
}

.tagline {
  display: inline-block;
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  color: #f7931a; /* a warm highlight tone */
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(247, 147, 26, 0.1); /* soft orange tint */
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-top: 0.3rem;
}

/* Hover effect for interactivity */
.tagline:hover {
  background: rgba(247, 147, 26, 0.2);
  color: #d97904;
  transform: translateY(-2px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .tagline {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
}

@media (max-width: 480px) {
  .tagline {
    font-size: 0.8rem;
    display: block;
    text-align: center;
    margin-top: 0.5rem;
  }
}


.roi {
  display: flex;
  gap: 15px;
  font-size: 13px;
  padding-top: 10px;
  color: rgba(0, 128, 0, 0.63);
}
.roi span {
  color: white;
}
.scroll {
  display: flex;
  gap: 10px;
}

.trending-container .card-container {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  column-gap: 9px;
  row-gap: 14px;
  padding-bottom: 60px;
}

.trending-container .card {
  display: grid;
  background-color: rgba(31, 33, 31, 0.725);
  height: auto;
  border-radius: 12px;
  padding: 18px;
  cursor: pointer;
  position: relative;
  /* animation: fadeIn 6s ease-in-out forwards; */
}
.trending-container .card img {
  width: 100%;
  height: 107px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.trending-container .card .card-text{
  display: grid;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  gap: 10px;
}

.trending-container .card-text h4 a {
  color: white;
  font-size: 14px;
  letter-spacing: 1.6px;
}
.trending-container .card-text small a {
  color: #6d6f6d;
}

.trustSignals {
  padding: 8% 0;
  text-align: center;
  font-size: 25px;
  font-weight: 200;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 10px;
  margin-top: 3%;
}
.TestimonyCard {
  background-color: #80808029;
  /* background-color: rgb(225, 225, 225); */
  /* width: 31vh; */
  height: 300px;
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px;
}

.fade {
  animation: fadeIn 1.3s ease-in-out;
}

.TestimonyCard img {
  object-fit: cover;
  width: 54px;
  height: 54px;
  border-radius: 35px;
  margin-bottom: 13px;
}

.TestimonyCard h4 {
  /* color: #333; */
  color: #f4f4f4;
 font-size: 17px;
 letter-spacing: .4px;
}

.TestimonyCard p {
  font-size: 16px;
  letter-spacing: .2px;
    /* color: rgb(81, 81, 81); */
  color: rgb(176, 176, 176);
 }

 .TestimonyCard span {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .2px;
  color: #8fbfd1;
   margin-bottom: 15px;
  /* color: rgb(176 176 176 / 70%); */
}

.faq-container {
  padding: 0 89px;
}

.faq-container h1 {
  text-align: center;
  font-size: 40px;
  margin: 15% 0 7%;
}

.faq-container .faq-question h4 {
  font-size: 19px;
  letter-spacing: .6px;
  font-weight: 400;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  cursor: pointer;
}
.faq-question:hover {
  color: rgb(183, 183, 183);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item {
  border-bottom: 2px solid #808080b5;
}
/* .faq-item:last-child {
  border-bottom: none;
} */

.faq-container .faq-answer p {
  font-size: 17px;
  letter-spacing: .6px;
  font-weight: 300;
  color: rgba(198, 197, 197, 0.753);

}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease-out, padding 0.1s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 0 10px;
}

.counters {
  background-color: #009ad2;
  padding: 35px;
  font-size: 27px;
  border-radius: 5px;
  text-align: center;
  position: relative;
  max-width: 600px;
  margin: 60px auto;

}
.counters .button {
  background-color: transparent;
  padding: 15px;
  margin-top: 25px;
  color: white;
  border: 2px solid #fff;
  border-radius: 6px;
  font-size: 17px;
}

.old-track {
  display: grid;
  grid-template-columns: 266px 100px;
  column-gap: 0px;
  padding-top: 30px;
  margin-bottom: 30px;
}

/*.container{*/
/*  display:grid;*/
/*  grid-template-columns: repeat(3, minmax(0, 1fr));*/
/*  column-gap: 29px;*/
/*  margin-top: 7%;*/
/*  overflow: auto;*/
/*}*/
/*.category{*/
/*  color: white;*/
/*}*/
/*.category p a {*/
/*  color: #6d6f6d;*/
/*  letter-spacing: 0.8px;*/
/*  transition: color 0.2s;*/
/*}*/
/*.category p a:hover {*/
/*  color: #fff;*/
/*}*/
/*.cat-head{*/
/*  display:flex; */
/*  flex-direction: column;*/
/*  align-items:baseline; */
/*}*/
/*.cat-head h2{*/
/*  margin: 0;*/
/*  font-weight: 400;*/
/*  letter-spacing: 2px;*/
/*  font-size: 39px;*/
/*}*/
/*.more {*/
/*  display: flex;*/
/*  align-items: baseline;*/
/*  gap: 15px;*/
/*  font-size: 15px;*/
 
/*}*/
/*.category .cat-head h2 {*/
/*     margin-bottom: 10px;*/
/*}*/
/*.more > p {*/
/*  color: #838383;*/
/*}*/
/*.cat-head small{*/
/*  color: rgb(138, 136, 136);*/
/*  font-size: 13px;*/
/*}*/

/* header row with Item / Streams */
/*.list-head{*/
/*  display:grid; */
/*  grid-template-columns: 1fr 90px 24px;*/
/*  align-items:center; */
/*  margin-top:14px; */
/*  padding: 6px 15px 6px 77px;*/
/*  color: #838383;*/
/*  font-size:10px; */
/*  text-transform:uppercase; */
/*  letter-spacing:.08em;*/
/*}*/

/* track row */
/*.track{*/
/*  display:grid; */
/*  grid-template-columns: 1fr 90px 24px;*/
/*  align-items:center; */
/*  gap:28px;*/
/*  background-color: #171a17;*/
/*  border-radius:10px; */
/*  padding: 15px 10px;*/
/*  margin-bottom: 7px;*/
/*  cursor: pointer;*/
/*} */
/*.track:hover,*/
/*.empty:hover{*/
/*   background-color: hsl(120,6%,15%);*/
/*}*/
/*.track .fa-solid {*/
/*  display: none;*/
/*}*/
/*.empty {*/
/*  background-color: transparent;*/
/*}*/
/*.item{*/
/*  display:flex; */
/*  align-items:center; */
/*  gap:12px; */
/*  min-width:0; */
/*}*/

/*.cover{*/
/*  width: 60px;*/
/*  height: 58px;*/
/*  border-radius:6px; */
/*  object-fit:cover;*/
/*}*/
/*.meta{*/
/*  min-width:0*/
/*}*/
/*.title{*/
/*  font-weight:700; */
/*  font-size:14px; */
/*  white-space: wrap;*/
/*}*/
/*.artist{*/
/*  color:gray; */
/*  font-size:13px; */
/*  white-space:nowrap; */
/*}*/

/*.streams{*/
/*  text-align:right; */
/*  color: #838383;*/
/*  font-size:14px;*/
/*}*/

/*.streams-inline {*/
/*  gap: 37px;*/
/*  display: flex;*/
/*}*/
/*.streams-inline small {*/
/*  font-size: 14.5px;*/
/*}*/

/*.trackpagination {*/
/*  margin-top: 30px;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  gap: 8px;*/
/*}*/

/*.trackpagination button {*/
/*  padding: 6px 12px;*/
/*  border: 1px solid #444;*/
/*  background: #fff;*/
/*  cursor: pointer;*/
/*  border-radius: 6px;*/
/*}*/

/*.trackpagination button.active {*/
/*  background: #111;*/
/*  color: #fff;*/
/*  font-weight: bold;*/
/*}*/

/*.trackpagination button:disabled {*/
/*  cursor: not-allowed;*/
/*  opacity: 0.4;*/
/*}*/


.slider {
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: scroll;
  scrollbar-width: none; 
  -ms-overflow-style: none;
}

.slider::-webkit-scrollbar {
  display: none; 
}

.footer-img-scroll-container{
  margin: 100px 0 100px 5px;
}

.footer-img-scroll {
  display: flex;
  height: 300px;
  align-items: center;
  /* gap: 20px; */
  animation: scrollX 50s linear infinite;
}

.footer-img-scroll:hover {
  animation-play-state: paused;
}

.footer-img-scroll .image-slider:hover {
  height: 255px;
  filter: blur(1px);
  border-radius: 12px;
}
.image-slider {
  height: 240px;
  width: 200px;
  transition: height 0.6s;
  padding: 0 3px;
  cursor: pointer;
  border-radius: 6px;
  object-fit: cover;
}
.view-more em{
  color: #838383;
}

footer {
  background-color: #0b0d0b;
  padding: 40px 3.5%;
  margin-top: 16%;
}
.footer {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-bottom: 5%;
  gap: 2px;
  position: relative;
  animation: fadeIn 1.1s ease-in-out forwards;
}
.footer h2{
  margin-bottom: 10px;
}
footer img {
  width: 250px;
}
footer a{
  color: #fff;
  font-weight: 200;
  font-size: 15px;
  margin: 5px 0;
  line-height: 1.6;
  transition: .5s;
}

.socials {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
}

.socials div{
  display: flex;
  gap: 10px;
  margin-top: 8px;
  font-size: 32px;
}

.socials h2{
  font-size: 40px;
  font-weight: 400;
}

.socials div i{
  background-color: #171a17;
  padding: 3px;
  font-size: 28px;
  border-radius: 7px;
  transition: .5s;
}
.socials div i:hover {
  background-color: #171a17a9;
  transform: scale(1.2);
}


@keyframes scrollX {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(-200%);
  }
}

@keyframes slide-In {
  0% { 
    transform: translateX(0); 
  }
  100% { 
    transform: translateX(100px);
    /* transform: rotate(12100deg);  */
  }
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes spin {
  0% { 
    transform: rotate(0deg); 
  }
  100% { 
    transform: rotate(360deg);
    /* transform: rotate(12100deg);  */
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0.1;
    filter: blur(5px);
  }
  100% {
    opacity: 1;
  }
}



@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}