body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    /* background-color: #0d0d0d; */
    background-color: #121212;
    color: white;
  }

h1  {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
}

h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
  }

a {
  text-decoration: none;
  color: inherit;
}

  /* Universal Main Wrapper */
.main-wrapper {
  margin-bottom: 72px;
  padding-left: 24px;
  padding-right: 24px;
  min-width: 290px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.secondary-wrapper {
  margin: 0 auto;
  display: block;
  max-width: 768px;
}

.footer-wrapper, .header-wrapper {
  position: fixed;
  z-index: 100;
  width: 100%;
}

.header-wrapper {
  top: 0;
  height: 80px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-wrapper {
  bottom: 0;
  width: 100%;
  /* height: 60px; */
  height: 50px;
  padding-bottom: 10px;
  border-top: 1px solid rgba(31, 31, 31, 0.8);
  background-color: #121212;
}

/* Header */
.header-container {
  display: flex;
  height: 100%;
  min-width: 290px;
  max-width: 1200px;
  align-items: center;
  margin: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.header-container img {
  height: 40px;
}

/* Hero */
.hero-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

/* Modal Template */
.modal-backdrop {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* optional dim effect */
  z-index: 999; /* behind modal content */
  padding: 8px;
}

.modal-overlay {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* min-width: 274px; */
  width: 100%;
  max-width: 416px; /* toggle to block when active */
  z-index: 1000;
  background-color: #1F1F1F;
  padding: 24px 32px;
  border-radius: 16px;
}

/* .modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

.modal-content {
  /* content styling here (padding, bg, etc.) */
}

.test {
  background-color: red;
  height: 100px;
  width: 100px;
}

/* Sign-in Form Wrapper */
.sign-in-wrapper {
  max-width: 420px;
  margin-top: 36px;
  margin-left: auto;
  margin-right: auto;
}

.close-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;  
}

.sign-in-close-icon {
  display: inline-block;
  width: fit-content;
}

.sign-in-close-icon img {
  width: 16px;
  height: 16px;
  margin-left: auto;
  display: block;
}

/* Sign-in Header Text */
.sign-in-title {
  font-weight: 400;
  font-size: 18px;
  text-align: left;
  margin-bottom: 1rem; /* optional for spacing below */
}

/* Sign-in Form Input Fields */
.sign-in-input {
  display: block;
  width: 100%;
  height: 40px;
  margin-top: 16px;
  font-size: 16px;
  color: #fff; /* or whatever you prefer for input text */
  background: transparent;
  border: none;
  border-bottom: 1px solid #BDBDBD;
  padding: 0;
}

.sign-in-input::placeholder {
  color: #B5B5B5;
}

.sign-in-input:focus {
  outline: none;
  border-bottom: 1px solid #B026FF;
}

/* Password Reminder Text */
.password-reminder {
  margin-top: 12px;
  font-size: 12px;
  color: #D4D4D4;
  text-align: left;
}

/* Sign In Buttons */
.sign-in-button, .button-secondary, .feedback-request-button {
  display: block;
  width: 100%;
  height: 50px;
  font-weight: 600; /* Slightly bold for button */
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
}

.sign-in-button, .button-secondary {
  margin-top: 32px;
  font-size: 16px;
}

.sign-in-button, .button-secondary:hover, .feedback-request-button {
  background-color: #B026FF;
  color: white;
}

.sign-in-button:hover, .feedback-request-button:hover {
  background-color: #9f1ee5; /* Optional slightly darker on hover */
}

.button-secondary {
  background: transparent;
  color: #B026FF;
  border: 1px solid #B026FF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.feedback-request-button  {
  margin-top: 16px;
  font-size: 18px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Sign-in Divider */
.sign-in-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.sign-in-divider-line {
  flex: 1;
  height: 1px;
  background-color: #ccc;
}

.sign-in-divider-text {
  margin: 0 10px;
  font-size: 12px;
  white-space: nowrap;
}

.forgot-password-link {
  display: block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 200;
  color: #fff;
  text-decoration: underline;
  text-align: center;

}

.sign-up-text {
  margin-top: 24px;
  text-align: center;
}

.sign-up-link {
  color: #B026FF;
}

.sign-in-logo {
  display: block;
  margin-top: 32px;
  text-align: center;
}

.sign-in-logo img {
  width: 191px;
  height: 60px;
  object-fit: contain;
}

.sign-in-error {
  color: #FF4D4F;
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
}

.sign-in-error a {
  text-decoration: underline;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #121212 inset;
  -webkit-box-shadow: 0 0 0 1000px #121212 inset;
  -webkit-text-fill-color: white;
  transition: background-color 9999s ease-in-out 0s;
}

.artist-cover-wrapper {
  width: 100%;
  height: 125px;
  overflow: hidden;
  position: relative;
}

.artist-cover-wrapper img {
  width: 100%;
  height: 100%;
  /* max-height: 125px; */
  object-fit: cover;
  object-position: center;
  display: block;
}

.header-ctas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  padding: 0 12px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1080px;
  min-width: 290px;
  margin: 0 auto;
  box-sizing: border-box;
}

.favorite-wrapper {
  width: 36px;
  height: 36px;
  background-color: rgba(31, 31, 31, 0.8);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
}

.favorite-icon {
  width: 18px !important;
  height: 18px !important;
  display: block;
}

.artist-info-wrapper {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

.profile-pic-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Align children (like status) to the right */
  position: relative;
  width: 110px;
  margin-top: -24px;
  margin-right: 8px;
}


.profile-pic-container {
  background-color: #121212;
  border-radius: 50%;
  padding: 3px;
}

.profile-pic {
  width: 106px;
  height: 106px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 2px solid #1F1F1F;
}

.status-indicator {
  width: 18px;
  height: 18px;
  border: 6px solid #121212;
  border-radius: 50%;
  margin-top: -32px;
  margin-right: 10px;
  z-index: 2;
}

.artist-name-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.artist-name {
  font-size: 24px;
  font-weight: 600;
}

.verification-icon {
  height: 16px;
  width: 16px;
}

.artist-location {
  font-size: 14px;
  font-weight: 200;
  opacity: 0.6;
  margin-top: 4px;
}

.artist-rating-row, .browse-artist-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.no-review-notice {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rating-icon {
  height: 16px;
  width: 16px;
}

.artist-rating {
  font-size: 14px;
  font-weight: 200;
}

.artist-rating-row {
  font-size: 14px;
}

/* .genres-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  max-height: 36px;
  overflow: hidden;
} */

.genres-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-top: 12px;
  scrollbar-width: none;
}

.genres-wrapper::-webkit-scrollbar {
  display: none;
}

.genres-wrapper > * {
  flex: 0 0 auto; /* Prevent shrinking and wrapping */
}

.genre-pill {
  padding: 8px 13px;
  font-size: 12px;
  background-color: #1f1f1f;
  border-radius: 20px;
  cursor: pointer;
}

.genre-pill:hover{
  background-color: #B026FF
}

.song-feedback-wrapper {
  margin-top: 16px;
}

.song-feedback-title {
  font-size: 20px;
  font-weight: 600;
}

.song-feedback-description {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 400;
}

.tab-wrapper {
  margin-top: 16px;
}

.tab-menu {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.tab-item {
  padding: 12px 20px;
  font-size: 18px;
  /* font-weight: 600; */
  opacity: 0.4;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tab-item.active {
  border-bottom: 2px solid #B224FF;
  opacity: 1;
}

.tab-content {
  display: none;
  /* padding-top: 24px; */
}

.tab-content.active {
  display: block;
}

.profile-bio-wrapper  {
  font-size: 16px;
  font-weight: 300;
}

.footer-menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  max-width: 480px;
  min-width: 290px;
  height: 100%;
  margin: 0 auto;
}

.footer-item-wrapper {
  width: 72px;
  height: 100%;
  /* border: 1px solid white; */
}

.footer-icon-wrapper, .footer-text-wrapper {
  width: 100%;
  text-align: center;
}

.footer-icon-wrapper, .footer-icon-wrapper a {
  /* height: 36px; */
  height: 32px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
}

.footer-icon, .footer-user-wrapper {
  /* width: 24px; */
  /* height: 24px; */
  height: 20px;
  display: inline-block;
} 

.footer-text-wrapper {
  /* background-color: blue; */
}

.footer-label {
  font-size: 10px;
  color: #fff;
}

.footer-label:hover {
  color: #B224FF;
}

.footer-user-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1f1f1f;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-bottom: -2px;
}

.footer-user-icon {
  width: 10px;
  height: 10px;
}

.footer-user-profile-pic {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: -2px;
  border: 2px solid #1f1f1f;
}

.footer-user-profile-pic:hover {
  border: 2px solid #B026FF;
}

a.feedback-menu:hover{
  color: #B026FF
}

.profile-bio-wrapper  {
  padding: 12px 0;
}

p.bio  {
  margin-top: 0px;
  margin-bottom: 20px;
}

span.daw {
  opacity: 0.85;
}

.social-icon-img  {
  width: 20px;
  margin-right: 7px;
}

.social-icon-img:hover  {
  opacity: 0.7;
}

/* Browse Artists */
.genres-wrapper.browse {
  margin-bottom: 12px;
}

.browse-featured-wrapper, .browse-main-wrapper {
  display: flex;
  flex-wrap: wrap; /* allows wrapping to new lines on smaller screens */

}

.browse-featured-wrapper {
  margin-top: 16px;
  gap: 24px;
}

.browse-main-wrapper {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.featured-artist-container  {
  display: block;
}

.browse-artist  {
  width: 100%;
}

.browse-artist-image-wrapper {
  width: 100%;
  aspect-ratio: 5 / 3;
  border: 2px solid rgba(31, 31, 31, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.browse-artist-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* display: block; */
}

.browse-artist-name {
  font-size: 16px;
  text-align: left;
  font-weight: 600;
}

.browse-artist-name.featured {
  font-size: 18px;
}

.hide-on-mobile {
  display: none;
}

.browse-artist-meta {
  font-size: 14px;
  opacity: .9;
}

.browse-artist-meta.featured {
  font-size: 16px;
}

.browse-artist-genres {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.artist-genre-link {
  text-decoration: none;
  color: inherit;
}

.artist-genre-link:hover {
  color: #B026FF;
}

.artist-browse-link:hover .browse-artist-name {
  color: #B026FF;
}

/* Responsive */
@media (min-width: 601px) {
  .hide-on-mobile {
    display: block;
  }
  
  .browse-artist.featured {
    width: calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .browse-main-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

/* @media (max-width: 720px) {
  .browse-main-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  }
} /* 



/*
@media (max-width: 290px) {
  .browse-artist {
    min-width: 120px;
  }
  .browse-main-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
} */