@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
a:focus-visible {
  outline: 3px solid royalblue;
  outline-offset: 2px;
  color: white;
}

button:focus-visible {
  outline: 3px solid royalblue;
  outline-offset: 2px;
  color: white !important;
}

:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
.row {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.button {
  font-family: "Roboto", sans-serif;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  background-color: #F5F5F7;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}
.button:hover {
  background-color: #FDA121;
}

.album-score {
  background-color: #FDA121;
  color: #0B0B0D;
  border: 1px solid #FDA121;
  border-radius: 12px;
  aspect-ratio: 1/1;
  display: flex;
  padding: 8px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
}

.album-score:hover {
  background-color: #FDA121;
  color: black;
}

.track-actions {
  margin-top: auto;
  display: flex;
  padding: 8px;
  justify-content: flex-end;
}

/* Button Styling */
.track-actions a {
  color: white;
  text-decoration: none;
  padding: 8px;
  border-radius: 1px;
  border: 1px solid #FDA121;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Button Styling for forms */
.track-actions form button {
  display: flex;
  justify-content: flex-end;
  background-color: white; /* Same as link */
  color: black;
  text-decoration: none;
  padding: 6px 12px;
  font-size: 14px;
  border: 1px solid black;
  border-radius: 1px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Add hover effect to the buttons */
.track-actions a:hover {
  background-color: #FDA121;
  border-color: transparent;
  color: black;
}

.track-actions form button:hover {
  background-color: #000000;
  border-color: #ffffff;
  color: white;
}

.track-actions button {
  background-color: #0B0B0D;
  color: #F5F5F7;
  text-decoration: none;
  padding: 6px 12px;
  font-size: 14px;
  border: 1px solid #FDA121;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.track-actions button:hover {
  background-color: #FDA121;
  border-color: #FDA121;
  color: #1E1E1E;
}

.track-actions .close-modal {
  background-color: #0B0B0D;
  color: #F5F5F7;
  border: 1px solid #FDA121;
  margin-left: auto;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.track-actions .close-modal:hover {
  background-color: #FDA121;
  color: #1E1E1E;
}

.link-button {
  background: none; /* remove background */
  border: none; /* remove border */
  color: #F5F5F7; /* hyperlink color */
  cursor: pointer; /* show pointer on hover */
  font: inherit; /* inherit font styles from parent */
  padding: 0; /* remove default padding */
}

.link-button:hover {
  color: #FDA121; /* optional hover effect */
}

.year-filter .years button {
  all: unset; /* reset all browser default styles */
  cursor: pointer; /* show pointer on hover like links */
  color: #F5F5F7; /* typical link color, adjust if needed */
  margin-right: 0.5rem; /* spacing between years */
  font-size: 1rem;
}

/* Optional: hover effect */
.year-filter .years button:hover {
  color: #FDA121; /* darker link color on hover */
}

.genre-link {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 48px;
  text-decoration: none;
  color: rgb(0, 0, 0);
  background-color: transparent;
  font-size: 16px;
  transition: all 0.3s ease;
}

.genre-link:hover, .genre-link:focus-visible {
  background-color: black;
  color: white;
  border-color: black;
  text-decoration: none;
}

.genre-link-white {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #F5F5F7;
  border-radius: 48px;
  text-decoration: none;
  color: #F5F5F7;
  background-color: transparent;
  font-size: 16px;
  transition: all 0.3s ease;
}

.genre-link-white:hover, .genre-link:focus-visible {
  background-color: #6BA3B0;
  color: #1A1A1A;
  border-color: black;
  text-decoration: none;
}

.genre-link-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.dsp-icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  gap: 12px;
}

.dsp-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.dsp-icon img {
  width: 100%;
  height: 100%;
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.icon img {
  width: 100%;
  height: 100%;
}

.report {
  margin-top: auto;
  text-align: right;
}

.report button {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #F5F5F7;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  box-shadow: none !important;
  outline: none !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.report button:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  color: white;
  font-size: 16px;
  display: inline-block;
  border: 1px solid #6BA3B0;
  padding: 2px 10px;
  white-space: nowrap;
  overflow: hidden;
  font-weight: bold;
}

.btn:hover, .btn:focus-visible {
  background-color: #E02D04;
  border: 1px solid #E02D04;
  color: white;
}

.btn a {
  font-weight: normal;
}

.btn a:hover {
  color: white;
  text-decoration: none;
}

.optional, .option:focus-within {
  display: inline-block;
  visibility: visible;
}

.dropdwn {
  display: none;
}

.no-style {
  background-color: transparent;
  color: white;
  border: none;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .optional {
    display: none;
  }
  .dropdwn {
    display: inline-block;
  }
}
@media (max-width: 468px) {
  .optional {
    display: none;
  }
  .dropdwn {
    display: inline-block;
  }
}
.dropdown {
  position: absolute;
  right: 0;
  left: auto;
  width: 250px;
  margin-top: 0.3rem;
  background: #6BA3B0;
  transform: translateY(0.5rem);
  visibility: hidden;
  opacity: 0;
}

.show {
  transform: translateY(0rem);
  visibility: visible;
  opacity: 1;
}

.arrow {
  transform: rotate(180deg);
  transition: 0.2s ease;
}

.dropdown.show.open-left {
  transform: translate(-100%, 0rem);
}

.dropdown a {
  display: flex;
  align-items: center;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  padding: 0.8rem 1rem;
  text-decoration: none;
  color: black;
}

.dropdown a:hover {
  background-color: #FDA121;
  color: black;
}

.dropdown button {
  display: flex;
  border: none;
  justify-content: flex-start;
  background-color: #6BA3B0;
  width: 100%;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  padding: 0.8rem 1rem;
  text-decoration: none;
  color: black;
}

.dropdown button:hover {
  background-color: #FDA121;
  color: black;
}

#collection-dropdown {
  max-height: 400px;
  overflow-y: auto;
}

.submenu {
  position: absolute;
  left: 250px;
  top: 0;
  display: none;
  min-width: 200px;
  background: #6BA3B0;
  color: black;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}

.submenu.open-left {
  left: auto;
  right: 100%;
}

.submenu-item {
  display: flex;
  border: none;
  justify-content: flex-start;
  background-color: #6BA3B0;
  width: 100%;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  padding: 0.8rem 1rem;
  text-decoration: none;
  color: black;
}

.submenu-item:hover, .submenu-item:focus-visible {
  background-color: #FDA121;
  color: black;
}

#add-to-collection {
  position: relative;
}

#add-to-collection:hover .submenu {
  display: block;
}

.blue-button {
  background-color: transparent;
  color: #F5F5F7;
  align-self: end;
  border: 1px solid #6BA3B0;
  border-radius: 4px;
  padding: 8px;
  transition: all 0.3s ease;
}

.blue-button:hover, .blue-button:focus-visible {
  background-color: #6BA3B0;
  color: #0B0B0D;
  border: 1px solid #6BA3B0;
  text-decoration: none;
}

.blue-button a:hover {
  color: black;
  text-decoration: none;
}

.red-button {
  background-color: transparent;
  color: #F5F5F7;
  border: 1px solid #E02D04;
  border-radius: 4px;
  padding: 8px;
  transition: all 0.3s ease;
}

.red-button:hover, .red-button:focus-visible {
  background-color: #E02D04;
  color: white;
  border: 1px solid #E02D04;
  text-decoration: none;
}

.yellow-button, .yellow-button:focus-visible {
  background-color: transparent;
  color: #F5F5F7;
  border: 1px solid #FDA121;
  border-radius: 4px;
  padding: 8px;
  transition: all 0.3s ease;
}

.yellow-button:hover {
  background-color: #FDA121;
  color: #0B0B0D;
  border: 1px solid #1E1E1E;
  text-decoration: none;
}

.square {
  width: 40px;
  aspect-ratio: 1/1;
}

.confirmation {
  color: #6BA3B0;
  text-align: center;
}

.cookie-button {
  background-color: #0B0B0D;
  color: #F5F5F7;
  border: 1px solid #0B0B0D;
  border-radius: 4px;
  padding: 8px;
  transition: all 0.3s ease;
}

.cookie-button:hover {
  background-color: black;
  color: white;
  border: 1px solid black;
  text-decoration: underline;
}

@media (orientation: portrait) {
  .submenu {
    position: absolute;
    left: auto;
    right: 250px;
    top: 0;
    display: none;
    min-width: 200px;
    background: #6BA3B0;
    color: black;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
  }
}
@media (max-width: 480px) {
  .dropdown {
    width: 150px;
  }
  .submenu {
    right: 150px;
  }
  #collection-dropdown {
    max-height: 200px;
  }
  .genre-link, .genre-link-white {
    padding: 2px 10px;
    font-size: 12px;
    border: 1px solid black;
  }
  .genre-link-white {
    padding: 2px 10px;
    font-size: 12px;
    border: 1px solid #F5F5F7;
  }
  .track-actions a {
    padding: 3px;
    font-size: 12px;
    /* border-radius: 5px;  */
    display: inline-block;
    transition: all 0.3s ease;
  }
  .track-actions button {
    width: 24px;
    aspect-ratio: 1/1;
    padding: 3px;
    font-size: 12px;
  }
  .dsp-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
  }
  .yellow-button, .blue-button, .red-button {
    font-size: 12px;
  }
  .square {
    width: 32px;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .genre-link {
    padding: 8px;
    font-size: 12px;
  }
}
:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
.carousel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-width: 10px;
  border-color: #ff0000;
}

.media-body {
  display: flex;
  width: 100%;
}

.carousel-posts-container {
  display: flex;
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
  padding: 10px 0;
  width: 100%;
  box-sizing: border-box;
  contain: layout;
}

.carousel-track {
  width: -moz-max-content;
  width: max-content;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.content-section {
  background-color: #0B0B0D;
  color: #F5F5F7;
}
.content-section .content-section {
  background-color: #1A1A1A;
}
.content-section a {
  color: #F5F5F7;
  text-decoration: none;
}
.content-section a:hover {
  color: #FDA121;
}
.content-section {
  flex: 0 0 250px; /* Ensures each item has a fixed size and doesn't grow/shrink */
  width: 250px; /* Controls how many posts fit per row */
  height: auto; /* Add this */
  min-height: 0; /* Add this */
  display: flex;
  flex-direction: column;
  color: #F5F5F7;
  border: 2px solid #1A1A1A;
  border-color: #1A1A1A;
  padding: 8px;
  transition: transform 0.2s ease-in-out;
  scroll-snap-align: start; /* Snap the items into position as they scroll */
  font-size: 1rem;
}

.content-section:nth-child(3n+1):hover {
  border-color: #E02D04;
}

.content-section:nth-child(3n+2):hover {
  border-color: #FDA121;
}

.content-section:nth-child(3n):hover {
  border-color: #6BA3B0;
}

.content-section[data-theme=discovery] {
  background-color: rgb(36, 100, 240);
  color: #ffffff;
}
.content-section[data-theme=discovery] .content-section {
  background-color: rgb(36, 100, 240);
}
.content-section[data-theme=discovery] a {
  color: #ffffff;
  text-decoration: none;
}
.content-section[data-theme=discovery] a:hover {
  color: #ffbb00;
}

.carousel-slide {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  min-height: 0;
}

.carousel-details {
  display: flex;
  flex-direction: column;
  text-align: center;
  flex: 0 0 auto;
  max-width: 100%;
  height: 100%;
  word-wrap: break-word;
}

.carousel-card {
  position: relative;
  display: inline-block;
}

.carousel-card img {
  display: block;
  width: 100%;
  height: auto;
}

.carousel-card .badge {
  position: absolute;
  top: 8px;
  right: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: normal;
  border-radius: 0px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-card .badge a:hover {
  background-color: #000000;
  border-color: #ffffff;
  color: white;
}

.bottom-row {
  height: 48px;
}

.carousel-card img,
.article-img {
  display: block;
  width: 100% !important;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.genre-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: auto;
  padding: 10px 0 0 0;
  justify-content: flex-end;
  gap: 4px;
}

.carousel-genre {
  display: inline-block;
  align-self: center;
  border: 1px solid white;
  border-radius: 20px;
  padding: 2px 10px;
  margin-top: auto;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.875rem;
}

.carousel-genre:hover, .carousel-genre:focus-visible {
  background-color: #6BA3B0;
  border-color: #6BA3B0;
  color: black;
}

.carousel-genre a:hover, .carousel-genre:focus-visible {
  background-color: #6BA3B0;
  border-color: #6BA3B0;
  color: black;
}

@media (max-width: 768px) {
  .content-section {
    width: 170px !important;
    flex: 0 0 170px !important;
    min-width: 170px;
    max-width: 170px;
    height: auto !important;
    font-size: 0.75rem;
  }
  .carousel-card {
    width: 100% !important;
    max-width: 170px !important;
  }
  .carousel-card img,
  .article-img {
    width: 170px !important;
    height: 170px !important;
    max-width: 100% !important;
    max-height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .bottom-row {
    height: 8px;
  }
  .carousel-genre {
    font-size: 0.75rem;
  }
  .carousel-card .badge {
    top: 0;
    right: 0;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .content-section {
    width: 250px;
    flex-basis: 250px;
    height: auto !important;
    font-size: 0.875rem;
  }
}
main {
  flex: 1;
  padding-top: var(--header-height);
  width: 100%;
}

.main-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.genre-container {
  margin-top: 100px;
  width: 100%;
}

.landing-container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.policy-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  justify-content: center;
  width: 80%;
  height: 90%;
  margin: 60px auto;
  border-radius: 24px;
  background-color: #F5F5F7;
  color: #0B0B0D;
}

.policy-content {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding: 1rem;
}

.page {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100vh;
}

.header {
  position: sticky;
  z-index: 10;
  width: 100%;
}

.content {
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: 100vw;
  overflow: auto;
}

.content-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.container {
  display: flex;
  flex-direction: column; /* stack items vertically */
  align-items: center; /* center horizontally */
  justify-content: center; /* center vertically (if container has height) */
}

.section-container {
  width: 100%;
  margin-top: 32px;
  margin-bottom: 32px;
}

.profile-width {
  max-width: 768px;
  margin: 0 auto;
}

.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.genre-chron-container {
  display: grid;
  margin-top: 100px;
  margin-bottom: 40px;
  grid-template-columns: 300px 1fr;
  overflow-y: auto;
  height: calc(100vh - 100px);
  width: 100%;
}

.genre-chron-main {
  position: relative;
  overflow-y: auto;
  height: 100%;
  border-left: 2px solid white;
}

.genre-chron-sidebar {
  position: relative;
  overflow-y: auto;
  height: 100%;
  scroll-snap-type: y mandatory;
  text-align: center;
  font-size: 16px;
}

.genre-year a {
  transition: transform 0.2s ease;
}

.genre-year a:hover {
  color: #FDA121;
  font-size: 22px;
  transform: translateX(5px);
  text-decoration: none;
}

.genre-header {
  position: sticky;
  top: 0;
  background: #0B0B0D;
  z-index: 10;
  text-align: center;
  font-size: 2rem;
}

.genre-details {
  width: 70%;
  max-width: 716px;
  margin: 40px auto;
  padding: 16px;
}

.landing-details {
  width: 90%;
  border-radius: 24px;
  font-size: 1.25rem;
}

.landing-cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
  gap: 12px;
}

.main-thing {
  display: flex;
}

.end-row {
  margin-top: auto;
  display: flex;
  padding: 8px 0px;
  gap: 8px;
  justify-content: flex-end;
}

@media (max-width: 480px) {
  .genre-details, .landing-details {
    width: 95%;
    margin: 0px auto;
    padding: 20px;
    font-size: 12px;
  }
  .genre-chron-container {
    display: grid;
    margin-top: 100px;
    grid-template-columns: 60px 1fr;
    overflow-y: auto;
    height: calc(100vh - 100px);
    width: 100%;
  }
  .profile-width {
    width: 95%;
  }
  .landing-cta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .genre-details, .landing-details {
    width: 70%;
    margin: 0px auto;
    padding: 20px;
    font-size: 12px;
  }
  .genre-chron-container {
    display: grid;
    margin-top: 100px;
    grid-template-columns: 60px 1fr;
    overflow-y: auto;
    height: calc(100vh - 100px);
    width: 100%;
  }
  .profile-width {
    width: 80%;
    max-width: 480px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .genre-chron-container {
    display: grid;
    margin-top: 130px;
    grid-template-columns: 80px 1fr;
    overflow-y: auto;
    height: calc(100vh - 100px);
    width: 100%;
  }
  .profile-width {
    width: 80%;
    max-width: 768px;
  }
  .landing-details {
    width: 60%;
    margin: 0px auto;
    padding: 20px;
  }
}
@media (min-width: 1025px) {
  .genre-details, .landing-details {
    width: 60%;
    margin: 0px auto;
    padding: 20px;
  }
  .genre-chron-container {
    display: grid;
    margin-top: 110px;
    grid-template-columns: 120px 1fr;
    overflow-y: auto;
    height: calc(100vh - 100px);
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .header {
    margin-top: 45px;
  }
}
.site-footer {
  margin-top: auto;
  background-color: #6BA3B0;
  color: black;
  padding: 40px 15px;
  width: 100%;
  box-sizing: border-box;
}

.site-footer .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  justify-content: space-between;
  justify-items: center;
  width: 90%;
  max-width: 1200px;
  flex-wrap: nowrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column a {
  color: black;
}

.footer-column a:hover {
  color: black;
}

.site-footer .navbar-brand {
  color: #000000;
  margin: 0;
  flex-shrink: 0;
}

.site-footer .nav-link {
  color: #000000;
  margin: 0;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .site-footer .container-fluid > .d-flex {
    font-size: 12px;
  }
  .footer-container {
    flex-direction: column;
    justify-content: flex-start;
    justify-items: center;
  }
  .footer-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 16px;
    gap: 0 8px;
    width: 100%;
  }
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 250px);
  justify-content: center;
  gap: 20px;
  padding: 10px;
  width: 100%;
  font-size: 12px;
}

.grid-album-content {
  padding: 8px;
}

.grid-content-section {
  background-color: #0B0B0D;
  color: #F5F5F7;
}
.grid-content-section .content-section {
  background-color: #1A1A1A;
}
.grid-content-section a {
  color: #F5F5F7;
  text-decoration: none;
}
.grid-content-section a:hover {
  color: #FDA121;
}
.grid-content-section {
  width: 100%;
  height: auto;
  min-height: 0;
  background: #1E1E1E;
  color: #F5F5F7;
  border: 2px solid #1A1A1A;
  border-color: #1A1A1A;
  padding: 8px;
  transition: transform 0.2s ease-in-out;
  scroll-snap-align: start;
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.grid-content-section:nth-child(3n+1):hover {
  border-color: #E02D04;
}

.grid-content-section:nth-child(3n+2):hover {
  border-color: #FDA121;
}

.grid-content-section:nth-child(3n):hover {
  border-color: #6BA3B0;
}

.grid-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.grid-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
}

.grid-card {
  position: relative;
}

.grid-card .badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 5px;
}

.grid-album-detail {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: repeat(auto-fill, 30%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    width: 100%;
    height: auto;
    min-height: 0;
    box-sizing: border-box;
    contain: layout;
  }
  .grid-album-content {
    padding: 5px;
  }
  .grid-card .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    padding: 3px;
    font-size: 12px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fill, 25%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    width: 100%;
    height: auto;
    min-height: 0;
    box-sizing: border-box;
    contain: layout;
  }
  .grid-card .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    padding: 3px;
    font-size: 12px;
  }
}
@media (min-width: 769) and (max-width: 1200px) {
  .grid {
    grid-template-columns: repeat(auto-fill, 20%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    width: 100%;
    height: auto;
    min-height: 0;
    box-sizing: border-box;
    contain: layout;
  }
}
@media (min-width: 1201px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 250px);
    text-align: center;
    gap: 20px;
    padding: 10px;
    width: 100%;
    font-size: 16px;
  }
}
:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
.header-container {
  background-color: #0B0B0D;
  color: #F5F5F7;
}
.header-container .content-section {
  background-color: #1A1A1A;
}
.header-container a {
  color: #F5F5F7;
  text-decoration: none;
}
.header-container a:hover {
  color: #FDA121;
}
.header-container {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.site-header {
  background-color: #0B0B0D;
  position: fixed;
  display: flex;
  align-items: center;
  padding: 1rem 5%;
  width: 100%;
  height: auto;
  justify-content: space-between;
  z-index: 1000;
}

.brand-title {
  color: #FDA121;
  font-family: "Montserrat", sans-serif;
  text-shadow: 0 4px 0 #E02D04;
  text-align: center;
  padding: 15px;
}

.brand-title a {
  color: #FDA121;
}

.brand-title a:hover {
  color: #E02D04;
  text-decoration: none;
}

.site-header .navbar-brand {
  color: var(--color);
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

.site-header .navbar-brand:hover {
  color: var(--color);
}

.site-header .navbar-nav .nav-link {
  color: var(--color);
}

.site-header .navbar-nav .nav-link:hover {
  color: #FDA121;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.navbar {
  background-color: #0B0B0D;
  color: #F5F5F7;
}
.navbar .content-section {
  background-color: #1A1A1A;
}
.navbar a {
  color: #F5F5F7;
  text-decoration: none;
}
.navbar a:hover {
  color: #FDA121;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
}

.navbar[data-theme=discovery] {
  background-color: rgb(36, 100, 240);
  color: #ffffff;
}
.navbar[data-theme=discovery] .content-section {
  background-color: rgb(36, 100, 240);
}
.navbar[data-theme=discovery] a {
  color: #ffffff;
  text-decoration: none;
}
.navbar[data-theme=discovery] a:hover {
  color: #ffbb00;
}

/* Center the search bar in the viewport */
.navbar .navbar-nav.mx-auto {
  background-color: #0B0B0D;
  color: #F5F5F7;
}
.navbar .navbar-nav.mx-auto .content-section {
  background-color: #1A1A1A;
}
.navbar .navbar-nav.mx-auto a {
  color: #F5F5F7;
  text-decoration: none;
}
.navbar .navbar-nav.mx-auto a:hover {
  color: #FDA121;
}
.navbar .navbar-nav.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.menu-toggle {
  display: block;
  position: absolute;
  color: #E02D04;
  top: 0.75rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  z-index: 999;
}

.menu-toggle:hover {
  color: #6BA3B0;
}

.header-profile-img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  z-index: 3;
}

.nav-links {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  display: flex;
  flex-direction: column;
  background: #FDA121;
  font-size: 2rem;
  color: black;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 998;
}

.nav-links.active {
  display: flex;
  transform: translateX(0);
}

.nav-items a span {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: left;
}

.nav-items a {
  display: block; /* full width */
  text-decoration: none;
  color: inherit;
}

.nav-items a:hover {
  background-color: #6BA3B0;
  color: black;
}

.nav-items form {
  width: 100%;
  margin: 0;
}

.nav-items button.logout {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: center;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.nav-items button.logout span {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-items button.logout:hover, .nav-items button.logout:focus-visible {
  background-color: #E02D04;
  color: white;
}

.nav-divider {
  height: 2px;
  background-color: black;
  margin: 0.5rem 1rem;
  width: 80%;
}

.nav-header {
  display: none;
}

.nav-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.nav-items a span {
  text-align: center;
}

.login-link {
  position: static;
  top: 100%;
  right: 1rem;
  flex-direction: column;
  padding: 0.5rem 0;
}

button.logout {
  -moz-appearance: none !important;
       appearance: none !important;
  -webkit-appearance: none !important;
  background: #FDA121;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

@media (max-width: 767px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    font-size: 12px;
  }
  .site-header .navbar-brand {
    font-size: 12px;
    font-weight: 400;
    text-align: center;
  }
  .nav-bar {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    color: #E02D04;
    top: 0.75rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
  }
  .menu-toggle:hover {
    color: #6BA3B0;
  }
  .login-link {
    position: static;
    top: 100%;
    right: 1rem;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .nav-links {
    width: 100%;
    font-size: 2rem;
    align-items: center;
  }
  .nav-divider {
    height: 2px;
    background-color: black;
    margin: 0.5rem 1rem;
    width: 80%;
  }
  .nav-links button.logout {
    align-items: center;
    text-align: center;
  }
  .nav-header {
    display: block;
    margin-top: 30px;
  }
  .nav-header a {
    color: black;
  }
  .nav-header a:hover {
    color: #E02D04;
    font-weight: bold;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    justify-content: flex-start;
  }
  .site-header .navbar-brand {
    font-size: 12px;
    font-weight: 400;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .nav-bar {
    padding-left: 15px;
    padding-right: 15px;
    position: relatve;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    color: #E02D04;
    top: 0.75rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
  }
  .menu-toggle:hover {
    color: #6BA3B0;
  }
  .login-link {
    position: static;
    top: 100%;
    right: 1rem;
    flex-direction: column;
    padding: 0.5rem 0;
  }
}
@media (min-width: 1024px) {
  .site-header .navbar-brand {
    font-size: 2rem;
    font-weight: 500;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    color: #E02D04;
    top: 0.75rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
  }
}
.article-img {
  width: 230px; /* Makes sure the image fills the container */
  height: 230px; /* Fixed height for the image */
  -o-object-fit: cover;
     object-fit: cover; /* Makes sure the image fits within the square shape */
}

.article-img-small {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 10px;
}

.review-img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 480px) {
  .article-img {
    width: 150px; /* Makes sure the image fills the container */
    height: 150px; /* Fixed height for the image */
    -o-object-fit: cover;
       object-fit: cover;
  }
  .article-img-small {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .review-img {
    width: 48px;
    height: 48px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contributors-grid {
    padding: 6px;
    margin-bottom: 0;
  }
  .contributor-item {
    width: 30px;
    height: 30px;
    display: flex; /* center image inside the cell if needed */
    justify-content: center;
    align-items: center;
  }
  .contributor-img {
    width: 30px;
    height: 30px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
  }
  .contributors-grid {
    display: flex;
  }
  .contributors-grid.offset {
    margin-left: 18px;
  }
}
@media (min-width: 481px) and (max-width: 1200px) {
  .article-img {
    width: 230px; /* Makes sure the image fills the container */
    height: 230px; /* Fixed height for the image */
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 768px) {
  .review-img {
    width: 160px;
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
}

/* ==== Modal Container (popup box) ==== */
.modal-box, .wide-modal-box {
  display: none;
  position: fixed;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px;
  background: #1E1E1E;
  border: 1px solid #000000;
  padding: 16px;
  border-radius: 24px;
  z-index: 1000;
  font-family: "Open Sans", sans-serif;
  height: 90vh;
  max-height: 90vh;
  overflow-y: auto; /* ensures scroll inside modal */
}

.wide-modal-box {
  max-width: 80%;
}

.central-modal-box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  height: auto;
  max-height: 90vh;
  background: #1E1E1E;
  border: 1px solid #000000;
  padding: 8px;
  border-radius: 24px;
  z-index: 1000;
  font-family: "Open Sans", sans-serif;
  overflow-y: auto;
}

.modal-container {
  position: relative;
  flex-shrink: 0;
  display: flex;
  height: 100%;
  justify-content: flex-end;
  padding: 8px;
}

.modal-content {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #1A1A1A;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.fade-modal-box {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fade-modal-box.show {
  display: block;
  opacity: 1;
}

.modal-album-details {
  display: flex;
}

.modal-album-image {
  flex: 1;
}

.modal-album-name {
  flex: 2;
}

.widget-comment textarea {
  width: 100%;
  min-height: 150px;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  min-width: 2.5rem;
  height: 2.5rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.modal-title {
  text-align: center;
}

.star-rating {
  display: inline-flex;
  gap: 5px;
  cursor: pointer;
  pointer-events: auto;
}

.star {
  font-size: 2rem;
  color: #1E1E1E;
  -webkit-text-stroke: 2px #6BA3B0;
  text-shadow: 0 0 2px #6BA3B0;
  transition: color 0.2s;
  cursor: pointer;
  pointer-events: auto;
}

.star.active {
  color: #FDA121;
  -webkit-text-stroke: 2px #FDA121;
  text-shadow: 2px #FDA121;
}

.star:hover,
.star.hover {
  color: #FDA121;
  -webkit-text-stroke: 2px #FDA121;
  text-shadow: 2px #FDA121;
}

@media (max-width: 600px) {
  .modal-box, .wide-modal-box {
    display: none;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    background: #1E1E1E;
    border: 1px solid #000000;
    padding: 8px;
    border-radius: 24px;
    z-index: 1000;
    font-family: "Open Sans", sans-serif;
    height: 100%;
    max-height: 90vh;
    overflow-y: auto; /* ensures scroll inside modal */
  }
  .star {
    font-size: 16px;
  }
  .star {
    -webkit-text-stroke: 1px #6BA3B0;
    text-shadow: 0 0 1px #6BA3B0;
  }
  .star.active {
    -webkit-text-stroke: 1px #FDA121;
    text-shadow: 1px #FDA121;
  }
  .star:hover,
  .star.hover {
    color: #FDA121;
    -webkit-text-stroke: 1px #FDA121;
    text-shadow: 1px #FDA121;
  }
}
@media (min-width: 601px) and (max-width: 1024px) {
  .modal-box, .wide-modal-box {
    display: none;
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    background: #1E1E1E;
    border: 1px solid #000000;
    padding: 16px;
    border-radius: 24px;
    z-index: 1000;
    font-family: "Open Sans", sans-serif;
    max-height: 80vh;
    overflow-y: auto; /* ensures scroll inside modal */
  }
}
@media (min-width: 1025px) {
  .modal-box, .wide-modal-box {
    display: none;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    background: #1E1E1E;
    border: 1px solid #000000;
    padding: 4px 16px;
    border-radius: 24px;
    z-index: 1000;
    font-family: "Open Sans", sans-serif;
    overflow-y: auto; /* ensures scroll inside modal */
  }
}
:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
.posts-container {
  display: flex;
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
  padding: 10px 0;
  width: 100%;
  height: auto;
  min-height: 0;
  box-sizing: border-box;
  contain: layout;
}

.post-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "image header" "contents contents";
  gap: 1rem;
  width: 100%;
}

.post-image {
  grid-area: image;
}

.post-headline {
  grid-area: header;
}

.post-body {
  grid-area: contents;
}

.review-header-columns {
  display: flex;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.review-column-auto {
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: hidden;
}

.review-column-details {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-column-img {
  min-width: 0;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: hidden;
  align-items: flex-start;
}

.review-column-fill {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.review-column-right {
  flex: 0 0 24px;
  text-align: right;
}

.user-post-and-comments {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 768px;
  gap: 3px;
}

.post-and-comments {
  display: grid;
  grid-template-columns: 1fr;
  padding: 20px;
  justify-items: center;
}

.user-post-column {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-weight: bold;
}

.user-content-section {
  background: #1A1A1A;
  color: var(--text-color);
  border: 2px solid #1A1A1A;
  border-color: #1A1A1A;
  padding: 10px;
  margin-bottom: 1rem;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
}

.user-content-section a {
  text-align: center;
}

.post-score {
  margin-top: auto;
  display: flex;
  padding: 8px 0;
  justify-content: flex-end;
}

.post-score button {
  background-color: #FDA121;
  color: black;
  text-decoration: none;
  padding: 6px 12px;
  font-size: 14px;
  border: 1px solid #FDA121;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.post-score button:hover {
  background-color: transparent;
  border-color: #FDA121;
  color: white;
}

.comment-inner {
  max-height: 70px;
  overflow: hidden;
  position: relative;
}

.comment-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(to bottom, transparent, #1A1A1A);
}

.comment-section {
  background: #1A1A1A;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.comment-box {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.comment-field {
  display: none;
}

.comment-field.open {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comment-textarea {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  background-color: #1A1A1A;
  color: white;
  border: 1px solid #6BA3B0;
  resize: vertical;
  box-sizing: border-box;
}
.comment-textarea:focus {
  outline: none;
  border-color: #666;
}
.comment-textarea::-moz-placeholder {
  color: #aaa;
}
.comment-textarea::placeholder {
  color: #aaa;
}

@media (max-width: 480px) {
  .posts-container {
    display: flex;
    flex: 1;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 5px;
    padding: 5px 0;
    width: 100%;
    height: auto;
    min-height: 0;
    box-sizing: border-box;
    contain: layout;
    font-size: 12px;
  }
  .post-grid {
    gap: 8px;
  }
  .user-content-section {
    font-size: 12px;
    font-weight: 400;
  }
  .user-content-section {
    padding: 5px 10px;
    margin-bottom: 20px;
    width: 100%;
  }
  .review-header-columns {
    gap: 0.5rem;
  }
  .post-score button {
    width: 24px;
    aspect-ratio: 1/1;
    padding: 3px;
    font-size: 12px;
  }
}
@media (min-width: 481px) and (max-width: 1200px) {
  .posts-container {
    display: flex;
    flex: 1;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 10px 0;
    width: 100%;
    height: auto;
    min-height: 0;
    box-sizing: border-box;
    contain: layout;
    font-size: 14px;
  }
  .user-content-section {
    font-size: 14px;
    font-weight: 400;
  }
}
@media (min-width: 768px) {
  .post-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "image header" "image contents";
    gap: 0.5rem;
    width: 100%;
  }
}
@media (min-width: 1201px) {
  .user-content-section {
    font-size: 14px;
    font-weight: 400;
  }
}
.search-form {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #F5F5F7;
}

.search-form input[type=text] {
  padding: 10px 15px;
  background-color: #1E1E1E;
  border: 2px solid #6BA3B0;
  color: #F5F5F7;
  outline: none;
  transition: border-color 0.3s ease;
  text-align: center;
  font-size: 1rem;
}

.search-form input[type=text]::-moz-placeholder {
  color: #F5F5F7;
  opacity: 1; /* prevents faded look */
}

.search-form input[type=text]::placeholder {
  color: #F5F5F7;
  opacity: 1; /* prevents faded look */
}

.results-box {
  position: absolute;
  top: 100%; /* Directly below the input */
  left: 0;
  right: 0;
  background-color: #1E1E1E;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.results-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.results-box li {
  padding: 10px;
  cursor: pointer;
}

.results-box li:last-child {
  border-bottom: none;
}

.results-box li:hover {
  background-color: #6BA3B0;
  color: black;
}

@media (max-width: 768px) {
  .search-form {
    width: 80%;
  }
  .search-form form {
    width: 100%;
  }
  .search-form input[type=text] {
    width: 100%;
    box-sizing: border-box;
  }
  .results-box {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .search-form {
    width: 400px;
  }
  .search-form form {
    width: 100%;
  }
  .search-form input[type=text] {
    width: 400px;
  }
  .results-box {
    width: 400px;
  }
}
@media (max-width: 1024px) {
  .search-form {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #F5F5F7;
    left: 0;
    transform: none;
  }
}
.highlight-section {
  display: flex;
  width: 100%;
  background-color: #FDA121;
  color: black;
  padding: 15px;
  border-radius: 0px;
  align-items: center;
  margin-top: 30px;
}

.highlight-container {
  display: flex;
  width: 90%;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  gap: 12px;
}

.highlight-text {
  flex: 1;
  max-width: 60%;
  min-width: 0;
  overflow-wrap: break-word;
  text-align: left;
  font-size: 30px;
}

.highlight-actions {
  text-align: right;
  flex-shrink: 0;
}

.highlight-actions a {
  background-color: #E02D04;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 18px;
}

.highlight-actions a:hover {
  background-color: black;
  color: white !important;
  text-decoration: none;
}

.central-box {
  margin: auto;
  text-align: center;
}

@media (max-width: 480px) {
  .highlight-container {
    width: 95%;
  }
  .highlight-section {
    padding: 4px;
    margin-top: 10px;
  }
  .highlight-text {
    font-size: 12px;
  }
  .highlight-actions a {
    padding: 5px 5px;
    font-size: 12px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .highlight-section {
    padding: 10px;
    margin-top: 20px;
  }
  .highlight-text {
    font-size: 16px;
  }
  .highlight-actions {
    padding: 10px 10px;
    font-size: 14px;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .highlight-text {
    max-width: 80%;
  }
  .highlight-container {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  .highlight-text {
    max-width: 80%;
  }
  .highlight-container {
    width: 80%;
  }
}
:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
.result {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1A1A1A;
}

.result img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.result.skeleton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1A1A1A;
  z-index: 1;
}

.result.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #1E1E1E, transparent);
  transform: translateX(-100%);
  animation: shimmer 1.5s infinite;
  z-index: 2; /* now paints above ::before */
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}
.top-100-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 80vh;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.top-100-panel {
  display: flex;
  flex-direction: row;
  width: 80%;
  max-width: 1024px;
  align-items: flex-start;
  justify-content: space-between;
}

.top-100-filter {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  height: auto;
  overflow: hidden;
}

.decade-filter {
  text-align: center;
}

.year-filter {
  text-align: center;
}

.filter-row {
  display: flex;
  overflow-x: auto;
  box-sizing: border-box;
  scroll-snap-type: x mandatory;
  width: 100%;
}

.filter-row > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.top-100-scroll {
  width: 100%;
  margin-top: 10px;
  flex: 1;
  overflow-y: auto;
  min-height: 0; /* important in flex layouts */
}

.top-100-album-item {
  display: grid;
  width: 100%;
  margin: 0 auto;
  gap: 10px;
  grid-template-columns: 120px 1fr;
  grid-template-areas: "image details" "reviews reviews";
  font-size: 12px;
}

.top-100-album {
  grid-area: image;
}

.top-100-album-details {
  grid-area: details;
}

.top-100-reviews {
  grid-area: reviews;
}

.top-100-album {
  align-items: center;
  margin: 0 15px 15px 15px;
}

.top-100-album img {
  width: 100%;
  height: auto;
  display: block;
}

.top-100-album-details {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px 20px 15px;
  align-self: start;
  font-size: 16px;
}

.top-100-reviews {
  font-size: 12px;
}

.top-100-review-section {
  background: #1A1A1A;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}

.filter-category {
  display: inline-block;
  color: white;
  font-size: 16px;
  display: inline-block;
  border: 1px solid #6BA3B0;
  background-color: black;
  padding: 2px 10px;
  white-space: nowrap;
  overflow: hidden;
}

.filter-category:hover {
  background-color: #E02D04;
  border: 1px solid #E02D04;
  color: white;
}

@media (max-width: 468px) {
  .filter-category {
    font-size: 12px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .albums-container {
    width: 80%;
    max-width: 1024px;
    margin: 0 auto;
  }
  .top-100-album-item {
    display: grid;
    width: 100%;
    margin: 0 auto;
    align-items: start;
    grid-template-columns: 240px 1fr;
    grid-template-areas: "image reviews" "details reviews";
    font-size: 14px;
  }
  .top-100-album {
    width: 100%;
    margin: 0 15px 15px 0;
  }
  .top-100-reviews {
    min-width: 0;
    font-size: 14px;
    min-width: 0;
  }
}
@media (min-width: 1201px) {
  .albums-container {
    width: 80%;
    max-width: 1024px;
    margin: 0 auto;
  }
  .top-100-album-item {
    display: grid;
    width: 100%;
    margin: 0 auto;
    align-items: start;
    grid-template-columns: 240px 1fr;
    grid-template-rows: 240px auto;
    grid-template-areas: "image reviews" "details reviews";
    font-size: 14px;
  }
  .top-100-album {
    width: 100%;
    margin: 0 15px 15px 0;
  }
  .top-100-reviews {
    min-width: 0;
    font-size: 14px;
    min-width: 0;
  }
}
:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
.settings-container {
  flex: 1;
  width: 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.settings-header {
  width: 100%;
  text-align: center;
}

.settings-page {
  display: flex;
  min-width: 0;
  gap: 15px;
  margin: 0 auto;
  padding: 15px;
  justify-content: flex-start;
}

.left-bar {
  flex: 1;
}

.user-settings {
  flex: 3;
}

.setting-row {
  display: grid;
  grid-template-columns: 150px 2fr 1fr;
  align-items: center;
  margin-bottom: 5px;
}

.setting-row label {
  font-weight: bold;
}

.side-menu {
  flex: 1;
  border-left: 2px solid;
  padding-left: 15px;
}

.side-menu a {
  display: block;
  margin-bottom: 8px;
}

.image-edit-link {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: white;
}

.edit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-edit-link:hover .edit-overlay {
  opacity: 1;
}

.helptext {
  display: none;
  color: red; /* optional */
}

/* Show help text only when input becomes invalid */
input:invalid + .helptext {
  display: inline;
}

@media (max-width: 468px) {
  .settings-container {
    padding-top: 50px;
    font-size: 12px;
  }
  .settings-page {
    padding: 8px;
  }
  .setting-row {
    display: grid;
    grid-template-columns: 80px 2fr 1fr;
    align-items: center;
    margin-bottom: 5px;
  }
  .side-menu {
    display: none;
  }
  .left-bar {
    display: none;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .settings-container {
    padding-top: 50px;
  }
  .left-bar {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .settings-container {
    padding-top: 50px;
    max-width: 90%;
  }
}
@media (min-width: 1025px) {
  .settings-container {
    max-width: 1140px;
  }
}
:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
.subscribe-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  background-color: #6BA3B0;
  color: black;
  padding: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 90vh;
}

.subscribe-container *::-moz-selection {
  background-color: #FDA121;
  color: black;
}

.subscribe-container *::selection {
  background-color: #FDA121;
  color: black;
}

.subscribe-pitch {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 50%;
  max-width: 560px;
}

.subscribe-pitch a:hover {
  color: black;
}

.subscribe-btn {
  margin-top: auto;
  display: flex;
  padding: 5px;
  justify-content: center;
  font-size: 2rem;
}

/* Button Styling */
.subscribe-btn a {
  color: white;
  text-decoration: none;
  padding: 5px;
  /* border-radius: 5px;  */
  border: 2px solid #E02D04;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Button Styling for forms */
.subscribe-btn form button {
  display: flex;
  justify-content: flex-end;
  background-color: white; /* Same as link */
  color: black;
  text-decoration: none;
  padding: 6px 12px;
  font-size: 2rem;
  border: 1px solid black;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Add hover effect to the buttons */
.subscribe-btn a:hover {
  background-color: black;
  border-color: transparent;
  color: white;
}

.subscribe-btn form button:hover {
  background-color: #000000;
  border-color: #ffffff;
  color: white;
}

.subscribe-btn button {
  background-color: #E02D04;
  color: #F5F5F7;
  text-decoration: none;
  padding: 6px 12px;
  font-size: 16px;
  border: 1px solid #E02D04;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn button:hover {
  background-color: #FDA121;
  border-color: #FDA121;
  color: black;
}

:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
.album-details {
  display: grid;
  width: 80%;
  max-width: 1024px;
  margin: 0 auto;
  gap: 20px;
  padding: 0 16px;
  background-color: #1A1A1A;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image top" "bottom";
}

.album-cover {
  grid-area: image;
}

.top {
  grid-area: top;
}

.bottom {
  grid-area: bottom;
}

.album-cover {
  position: relative;
}

.album-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.album-cover .album-badge {
  position: absolute;
  top: 5%;
  right: 5%;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  border-radius: 0px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.album-badge a:hover {
  background-color: #E02D04;
  border-color: #E02D04;
  color: white;
}

.album-score-big {
  background-color: #FDA121;
  color: black;
  border: 1px solid #FDA121;
  border-radius: 0.25rem;
  aspect-ratio: 1/1;
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
}

.album-score-big:hover {
  background-color: #0B0B0D;
  border-color: #FDA121;
  color: white;
  text-decoration: none;
}

.top {
  background-color: #1E1E1E;
  padding: 10px;
}

.bottom {
  background-color: #1E1E1E;
  padding: 10px;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 10px;
       column-gap: 10px;
  overflow: scroll;
  max-height: 300px;
}

.track-details-column {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  max-width: 100%;
  height: 100%;
  gap: 10px;
}

.album-genre-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.metadata-title {
  color: #FDA121;
}

.bottom ol {
  list-style: none; /* removes default numbers since you have track_number */
  padding: 0;
  margin: 0;
}

.bottom li {
  padding: 2px 0; /* controls spacing between tracks — adjust to taste */
  line-height: 1.4;
}

.rating-title {
  margin-top: 100px;
}

.contributors-grid {
  display: flex;
}

.contributors-grid.offset {
  margin-left: 18px;
}

.contributors-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.contributors-grid.offset {
  margin-left: 58px;
}

.contributor-item {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px;
}

.contributor-img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  border-radius: 50%;
}

.contributor-img:hover {
  opacity: 1;
}

.release-date a:hover {
  color: white;
}

@media (max-width: 768px) {
  .album-details {
    justify-content: center;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "image" "top" "bottom";
    width: 100%;
    background-color: #0B0B0D;
    font-size: 12px;
  }
  .album-cover {
    text-align: center;
  }
  .album-cover img {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .top {
    background-color: #1A1A1A;
  }
  .bottom {
    background-color: #1A1A1A;
    -moz-column-count: 1;
         column-count: 1;
  }
  .album-cover .album-badge {
    position: absolute;
    top: 4%;
    right: 27%;
  }
  .album-score-big {
    aspect-ratio: 1/1;
    display: flex;
    padding: 4px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 400;
  }
}
@media (min-width: 769px) {
  .album-details {
    display: grid;
    width: 80%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "image top" "bottom bottom";
    gap: 20px;
    padding: 20px;
  }
  .album-cover {
    text-align: center;
  }
  .album-cover img {
    width: 100%;
    height: 100%;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .top {
    background-color: #1E1E1E;
  }
  .bottom {
    background-color: #1E1E1E;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
  }
}
:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
.artist-details {
  background-color: #1A1A1A;
  margin: 40px auto;
  padding: 20px;
}

.artist-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  width: 100%;
  margin: 80px auto;
  padding: 20px;
  align-items: start;
}

.artist-meta-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.artist-albums {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 100%;
}

.featured-columns {
  display: grid;
  grid-template-columns: 2fr 3fr;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  gap: 20px;
  align-content: space-between;
}

.featured-post {
  height: 50%;
}

.arist-album-title {
  position: sticky;
  top: 0;
  background: #0B0B0D;
  z-index: 10;
  text-align: center;
  font-size: 2rem;
}

.artist-album-cover {
  width: 40%;
  margin-bottom: 20px;
}

.featured-columns img {
  width: 100%;
  height: auto;
  display: block;
}

.data-title {
  font-size: 2rem;
  margin-top: 5px;
}

.mobile-title {
  display: hidden;
}

.data-title:nth-of-type(3n+1) {
  color: #6BA3B0;
}

.data-title:nth-of-type(3n+2) {
  color: #FDA121;
}

.data-title:nth-of-type(3n+3) {
  color: #E02D04;
}

.artist-all-albums {
  position: relative;
  width: 100%;
  background: #0B0B0D;
  z-index: 99;
}

@media (orientation: portrait) {
  .artist-data {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    line-height: 1.5;
    align-self: start;
    font-size: 14px;
    width: 50%;
  }
  .band-members {
    display: none;
  }
  .artist-data div {
    text-align: center;
  }
  .artist-data div a {
    display: inline;
  }
  .data-title {
    display: none;
    font-size: 12px;
    margin-top: 5px;
    align-items: center;
  }
  .artist-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 120px 0 0;
    align-items: center;
    justify-items: center;
  }
  .popular-albums {
    display: relative;
    align-items: center;
    text-align: center;
    font-size: 1.5rem;
    color: #FDA121;
  }
  .current-members {
    display: flex;
    flex-direction: column;
  }
}
@media (orientation: landscape) {
  .artist-data {
    position: static;
    top: auto;
    background-color: #1A1A1A;
    padding: 10px;
    line-height: 2;
    align-self: start;
  }
  .artist-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    width: 100%;
    margin: 80px auto;
    padding: 20px;
    align-items: start;
  }
  .data-title {
    font-size: 2rem;
    margin-top: 5px;
  }
  .popular-albums {
    display: none;
    font-size: 2rem;
    color: #FDA121;
  }
  .current-members {
    display: flex;
    flex-direction: column;
  }
  .artist-albums-wrapper {
    background-color: #0B0B0D;
  }
}
@media (max-width: 468px) {
  .artist-details {
    width: 95%;
    font-size: 12px;
    margin: 100px auto 0;
  }
  .artist-albums-wrapper {
    margin-top: 20px;
    width: 100%;
    max-width: 375px;
  }
  .artist-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 100px 0 0;
    padding: 0px;
    align-items: center;
    justify-items: center;
  }
  .featured-columns {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    gap: 20px;
    align-content: space-between;
  }
  .artist-meta-data {
    margin-top: 100px;
  }
  .popular-albums {
    display: relative;
    align-items: center;
    text-align: center;
    font-size: 1.5rem;
  }
  .artist-album-cover {
    width: 80%;
    margin-bottom: 20px;
  }
  .artist-album-title {
    font-size: 1.5rem;
  }
  .current-members {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .artist-data {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    line-height: 1.5;
    align-self: start;
    font-size: 14px;
    width: 50%;
  }
  .band-members {
    display: none;
  }
  .artist-data div {
    text-align: center;
  }
  .artist-data div a {
    display: inline;
  }
  .data-title {
    display: none;
    font-size: 12px;
    margin-top: 5px;
    align-items: center;
  }
  .artist-grid {
    padding: 20px;
    margin: 70px;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 70px 0 0;
    align-items: center;
    justify-items: center;
  }
  .featured-columns {
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
    padding: 20px;
    gap: 20px;
    align-content: space-between;
  }
  .artist-meta-data {
    margin-top: 100px;
  }
  .artist-details {
    width: 70%;
    font-size: 12px;
    margin: 100px auto 0;
  }
  .artist-albums-wrapper {
    width: 100%;
    overflow-y: auto;
    z-index: 10;
  }
  .artist-album-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .artist-details {
    width: 90%;
    align-items: center;
    margin: 130px auto 0;
  }
  .artist-albums-wrapper {
    width: 100%;
    max-width: 800px;
    overflow-y: auto;
    z-index: 10;
  }
  .featured-columns {
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
    padding: 20px;
    gap: 20px;
    align-content: space-between;
  }
  .artist-meta-data {
    margin-top: 130px;
  }
  .artist-data {
    line-height: 2;
    align-self: start;
  }
  .artist-albums-wrapper {
    overflow-y: auto;
    z-index: 10;
  }
  .popular-albums {
    display: none;
    font-size: 2rem;
    color: #FDA121;
  }
  .artist-grid {
    padding: 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .artist-details {
    width: 70%;
    align-items: center;
    margin: 130px auto 0;
  }
  .artist-albums-wrapper {
    overflow-y: auto;
    z-index: 10;
  }
  .popular-albums {
    display: none;
    font-size: 2rem;
    color: #FDA121;
  }
}
@media (min-width: 1201px) {
  .artist-details {
    width: 70%;
    align-items: center;
    margin: 130px auto 0;
  }
  .artist-albums-wrapper {
    height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 10;
  }
}
:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
.collection-container {
  width: 80%;
  margin-bottom: 400px;
}

.collection-grid {
  display: flex;
  gap: 1rem;
  min-width: 0;
  background-color: #1A1A1A;
  width: 60%;
  padding: 20px;
  margin: 50px auto 0;
}

.collection-details {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}

.collection-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

h2 {
  margin: 0;
}

.collection-details form {
  display: flex;
  flex-direction: column;
}

.collection-edit {
  position: absolute;
  top: 0;
  right: 0;
}

.update-collection-details {
  display: grid;
  width: 80%;
  margin: 0 auto;
  gap: 20px;
  padding: 20px;
  font-size: 14px;
  background-color: #1A1A1A;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image top" "image bottom";
}

.collection-cover {
  grid-area: image;
}

.collection-main-form {
  grid-area: form;
}

.collection-upload {
  grid-area: upload;
}

.collection-buttons {
  grid-area: delete;
  justify-self: end;
}

.collection-cover {
  display: flex;
  width: 150px;
  aspect-ratio: 1/1;
  border: 2px solid #6BA3B0;
  align-self: start;
  align-items: center;
  justify-content: center;
}

.collection-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.collection-cover:hover {
  background-color: #6BA3B0;
}

.collection-top {
  background-color: #1E1E1E;
  padding: 10px;
}

.collection-bottom {
  background-color: #1E1E1E;
  padding: 10px;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.collection-bottom ol {
  list-style: none; /* removes default numbers since you have track_number */
  padding: 0;
  margin: 0;
}

.collection-bottom li {
  padding: 2px 0; /* controls spacing between tracks — adjust to taste */
  line-height: 1.4;
}

.new-collection-form {
  display: grid;
  grid-template-columns: 150px 400px;
  align-items: center;
  margin-bottom: 5px;
}

.collection-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.field-input {
  border: none;
  background-color: #434343;
  color: white;
}
.field-input input,
.field-input select,
.field-input textarea {
  background-color: #434343;
  border: none;
  width: 100%;
  color: white;
}

.update-collection-search {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
  padding: 15px;
}

.search-row {
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.complete-button {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  height: 38px;
  padding: 6px 12px;
  border: 2px solid #FDA121;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

/* Button Styling */
.complete-button a {
  color: white;
  text-decoration: none;
  /* border-radius: 5px;  */
  border: 2px solid #FDA121;
  display: inline-block;
  transition: all 0.3s ease;
}

.toggle-collection-button {
  background-color: #0B0B0D;
  color: #F5F5F7;
  border: 1px solid #E02D04;
  width: 20px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.toggle-collection-button:hover {
  background-color: #E02D04;
  color: white;
  border: 1px solid #E02D04;
}

@media (max-width: 600px) {
  .collection-container {
    width: 100%;
  }
  .collection-grid {
    width: 90%;
    padding: 5px;
  }
  .update-collection-details {
    display: grid;
    width: 90%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "image image" "form form" "upload upload" "delete delete";
    gap: 10px;
    padding: 10px;
    font-size: 12px;
  }
  .collection-cover img {
    width: 100%;
    height: 100%;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .collection-title {
    font-size: 16px;
  }
  .collection-text {
    font-size: 14px;
  }
  .collection-top {
    background-color: #1E1E1E;
  }
  .collection-bottom {
    background-color: #1E1E1E;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
  }
  .new-collection-form {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    margin-bottom: 5px;
  }
  .complete-button {
    font-size: 12px;
  }
  .collection-cover {
    justify-self: center;
  }
}
@media (min-width: 601px) and (max-width: 1024px) {
  .collection-container {
    width: 100%;
  }
  .collection-grid {
    margin-bottom: 10px;
  }
  .update-collection-details {
    display: grid;
    width: 80%;
    grid-template-columns: 150px 2fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "image form" "image upload" "delete delete";
    gap: 20px;
    padding: 20px;
    font-size: 12px;
  }
  .collection-cover {
    text-align: center;
  }
  .collection-cover img {
    width: 100%;
    height: 100%;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .collection-top {
    background-color: #1E1E1E;
  }
  .collection-bottom {
    background-color: #1E1E1E;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
  }
  .complete-button {
    font-size: 12px;
  }
  .update-collection-search {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
  }
  .new-collection-form, .collection-upload {
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: center;
    margin-bottom: 5px;
  }
}
@media (min-width: 1025px) {
  .collection-container {
    width: 80%;
  }
  .update-collection-details {
    display: grid;
    width: 60%;
    grid-template-columns: 150px 2fr;
    grid-template-rows: auto auto;
    grid-template-areas: "image form" "image upload";
    gap: 20px;
    padding: 20px;
    font-size: 12px;
  }
  .collection-cover {
    text-align: center;
  }
  .collection-cover img {
    width: 100%;
    height: 100%;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .collection-top {
    background-color: #1E1E1E;
  }
  .collection-bottom {
    background-color: #1E1E1E;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
  }
  .complete-button {
    font-size: 12px;
  }
  .update-collection-search {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
  }
  .new-collection-form, .collection-upload {
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: center;
    margin-bottom: 5px;
  }
}
:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
.review-container {
  height: 100%;
  flex: 1;
  overflow-y: auto;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: start;
  gap: 16px;
}

.review-grid img {
  width: 100%;
  aspect-ratio: 1/1;
}

.review-details {
  display: grid;
  width: 100%;
  border: none;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image top" "bottom";
  font-size: 1rem;
}

.review-details form {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 5px;
}

.review-cover {
  grid-area: image;
}

.review-main-form {
  grid-area: form;
}

.review-upload {
  grid-area: upload;
}

.review-buttons {
  grid-area: delete;
  justify-self: end;
}

.review-cover {
  height: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  border: 2px solid #6BA3B0;
  align-self: start;
  align-items: center;
  justify-content: center;
}

.review-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.review-top {
  background-color: #1E1E1E;
  padding: 10px;
}

.review-bottom {
  background-color: #1E1E1E;
  padding: 10px;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.review-bottom ol {
  list-style: none; /* removes default numbers since you have track_number */
  padding: 0;
  margin: 0;
}

.review-bottom li {
  padding: 2px 0; /* controls spacing between tracks — adjust to taste */
  line-height: 1.4;
}

.review-main-form {
  width: 100%;
  align-items: center;
}

.new-review-form {
  display: grid;
  grid-template-columns: 150px 400px;
  align-items: center;
  margin-bottom: 5px;
}

.review-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.review-field-input {
  border: 2px solid white;
  background-color: #1E1E1E;
  color: white;
  height: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.review-field-input input, .review-field-input select, .review-field-input textarea {
  background-color: #1E1E1E;
  border: none;
  width: 100%;
  color: white;
}
.review-field-input textarea {
  flex: 1;
  resize: none;
  min-height: 250px;
}

.update-review-search {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
  padding: 15px;
}

.search-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.complete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 6px 12px;
  border: 2px solid #FDA121;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

/* Button Styling */
.toggle-review-button {
  background-color: #0B0B0D;
  color: #F5F5F7;
  border: 1px solid #E02D04;
  width: 20px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.toggle-review-button:hover {
  background-color: #E02D04;
  color: white;
  border: 1px solid #E02D04;
}

@media (max-width: 600px) {
  .review-container {
    margin-top: 30px;
  }
}
@media (max-width: 468px) {
  .review-container {
    width: 100%;
  }
  .review-details {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "image" "form";
    gap: 20px;
    padding: 5px;
    justify-items: center;
  }
  .review-cover {
    width: 20%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .review-cover img {
    width: 100%;
    height: 100%;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .review-top {
    background-color: #1E1E1E;
  }
  .review-bottom {
    background-color: #1E1E1E;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
  }
  .complete-button {
    font-size: 12px;
  }
  .update-review-search {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
  }
  .new-review-form, .review-upload {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 5px;
  }
  .review-field-input textarea {
    height: 300px;
    resize: vertical;
  }
}
@media (min-width: 469px) and (max-width: 600px) {
  .review-container {
    width: 100%;
  }
  .review-details {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "image" "form";
    gap: 20px;
    justify-items: center;
  }
  .review-cover {
    width: 30%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .review-cover img {
    width: 100%;
    height: 100%;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .review-top {
    background-color: #1E1E1E;
  }
  .review-bottom {
    background-color: #1E1E1E;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
  }
  .complete-button {
    font-size: 12px;
  }
  .update-review-search {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
  }
  .new-review-form, .review-upload {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 5px;
  }
  .review-field-input textarea {
    height: 170px;
    resize: vertical;
  }
}
@media (min-width: 601px) and (max-width: 768px) {
  .review-container {
    width: 100%;
  }
  .review-details {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "image" "form";
    gap: 20px;
    padding: 20px;
    justify-items: center;
  }
  .review-cover {
    width: 20%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .review-cover img {
    width: 100%;
    height: 100%;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .review-top {
    background-color: #1E1E1E;
  }
  .review-bottom {
    background-color: #1E1E1E;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
  }
  .complete-button {
    font-size: 12px;
  }
  .update-review-search {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
  }
  .new-review-form, .review-upload {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 5px;
  }
  .review-field-input textarea {
    height: 200px;
    resize: vertical;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .review-container {
    width: 100%;
  }
  .review-details {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "image" "form";
    gap: 20px;
    padding: 20px;
    justify-items: center;
  }
  .review-cover {
    width: 20%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .review-cover img {
    width: 100%;
    height: 100%;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .review-top {
    background-color: #1E1E1E;
  }
  .review-bottom {
    background-color: #1E1E1E;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
  }
  .complete-button {
    font-size: 12px;
  }
  .update-review-search {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
  }
  .new-review-form, .review-upload {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 5px;
  }
  .review-field-input textarea {
    height: 280px;
    resize: vertical;
  }
}
@media (min-width: 1025px) {
  .review-container {
    width: 100%;
  }
  .review-details {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "image" "form";
    justify-items: center;
  }
  .review-cover {
    width: 20%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .review-cover img {
    width: 100%;
    height: 100%;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .review-top {
    background-color: #1E1E1E;
  }
  .review-bottom {
    background-color: #1E1E1E;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
  }
  .complete-button {
    font-size: 12px;
  }
  .update-review-search {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
  }
  .new-review-form, .review-upload {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
  }
}
:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
.login-page {
  margin: 0 auto 50px auto;
}

.login-container {
  background-color: #1E1E1E;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
}

.terms-underlined {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .login-page {
    margin: 45px auto;
    width: 95%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .login-page {
    margin: 100px auto;
    width: 95%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .login-page {
    margin: 120px auto;
  }
}
@media (min-width: 1025px) {
  .login-page {
    margin: 0 auto;
  }
}
:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
.contact-container {
  width: 100%;
  background-color: #1E1E1E;
  border: 0;
}

.contact-details {
  display: grid;
  width: 100%;
  margin: 40px auto;
  border: none;
  gap: 20px;
  padding: 20px;
  background-color: #1A1A1A;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image top" "bottom";
}

.contact-details form {
  display: flex;
  flex-direction: column;
}

.contact-cover {
  grid-area: image;
}

.contact-main-form {
  grid-area: form;
}

.contact-upload {
  grid-area: upload;
}

.contact-buttons {
  grid-area: delete;
  justify-self: end;
}

.contact-cover {
  height: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  border: 2px solid #6BA3B0;
  align-self: start;
  align-items: center;
  justify-content: center;
}

.contact-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-top {
  background-color: #1E1E1E;
  padding: 10px;
}

.contact-bottom {
  background-color: #1E1E1E;
  padding: 10px;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.contact-bottom ol {
  list-style: none; /* removes default numbers since you have track_number */
  padding: 0;
  margin: 0;
}

.contact-bottom li {
  padding: 2px 0; /* controls spacing between tracks — adjust to taste */
  line-height: 1.4;
}

.contact-main-form {
  width: 95%;
  max-width: 768px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.new-contact-form {
  display: grid;
  grid-template-columns: 150px 400px;
  align-items: center;
  margin-bottom: 5px;
}

.contact-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.contact-field-input {
  border: 2px solid white;
  background-color: #1E1E1E;
  color: white;
  height: 100%;
}
.contact-field-input input,
.contact-field-input select,
.contact-field-input textarea {
  background-color: #1E1E1E;
  border: none;
  width: 100%;
  color: white;
}

.update-contact-search {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
  padding: 15px;
}

.search-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.complete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 6px 12px;
  border: 1px solid #FDA121;
  border-radius: 4px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: transparent;
  cursor: pointer;
}

/* Button Styling */
.complete-button a {
  color: black;
  background-color: transparent;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #FDA121;
  display: inline-block;
  transition: all 0.3s ease;
}

.complete-button a:hover {
  background-color: #FDA121;
}

.toggle-contact-button {
  background-color: #0B0B0D;
  color: #F5F5F7;
  border: 1px solid #E02D04;
  border-radius: 4px;
  width: 20px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.toggle-contact-button:hover {
  background-color: #E02D04;
  color: white;
  border: 1px solid #E02D04;
}

@media (max-width: 468px) {
  .contact-container {
    width: 90%;
    margin-top: 10%;
    padding: 20px;
  }
  .contact-details {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "image" "form";
    gap: 20px;
    padding: 20px;
    justify-items: center;
    font-size: 12px;
  }
  .contact-cover {
    width: 20%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .contact-cover img {
    width: 100%;
    height: 100%;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .contact-top {
    background-color: #1E1E1E;
  }
  .contact-bottom {
    background-color: #1E1E1E;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
  }
  .complete-button {
    font-size: 12px;
  }
  .update-contact-search {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
  }
  .new-contact-form, .contact-upload {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 5px;
  }
  .contact-field-input textarea {
    height: 150px;
    resize: vertical;
  }
}
@media (min-width: 469px) and (max-width: 600px) {
  .contact-container {
    width: 90%;
    margin-top: 10%;
    padding: 20px;
  }
  .contact-details {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "image" "form";
    gap: 20px;
    justify-items: center;
    font-size: 12px;
  }
  .contact-cover {
    width: 30%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .contact-cover img {
    width: 100%;
    height: 100%;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .contact-top {
    background-color: #1E1E1E;
  }
  .contact-bottom {
    background-color: #1E1E1E;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
  }
  .complete-button {
    font-size: 12px;
  }
  .update-contact-search {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
  }
  .new-contact-form, .contact-upload {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 5px;
  }
  .contact-field-input textarea {
    height: 170px;
    resize: vertical;
  }
}
@media (min-width: 601px) and (max-width: 768px) {
  .contact-container {
    width: 70%;
    margin-top: 15%;
    padding: 20px;
  }
  .contact-details {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "image" "form";
    gap: 20px;
    padding: 20px;
    justify-items: center;
    font-size: 12px;
  }
  .contact-cover {
    width: 20%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .contact-cover img {
    width: 100%;
    height: 100%;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .contact-top {
    background-color: #1E1E1E;
  }
  .contact-bottom {
    background-color: #1E1E1E;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
  }
  .complete-button {
    font-size: 12px;
  }
  .update-contact-search {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
  }
  .new-contact-form, .contact-upload {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 5px;
  }
  .contact-field-input textarea {
    height: 200px;
    resize: vertical;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-container {
    width: 60%;
    margin-top: 20%;
    padding: 20px;
  }
  .contact-details {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "image" "form";
    gap: 20px;
    padding: 20px;
    justify-items: center;
    font-size: 12px;
  }
  .contact-cover {
    width: 20%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .contact-cover img {
    width: 100%;
    height: 100%;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .contact-top {
    background-color: #1E1E1E;
  }
  .contact-bottom {
    background-color: #1E1E1E;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
  }
  .complete-button {
    font-size: 12px;
  }
  .update-contact-search {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
  }
  .new-contact-form, .contact-upload {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 5px;
  }
  .contact-field-input textarea {
    height: 280px;
    resize: vertical;
  }
}
@media (min-width: 1025px) {
  .contact-container {
    width: 60%;
    padding: 20px;
  }
  .contact-details {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "image" "form";
    gap: 20px;
    padding: 20px;
    justify-items: center;
    font-size: 12px;
  }
  .contact-cover {
    width: 20%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .contact-cover img {
    width: 100%;
    height: 100%;
    justify-content: center;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .contact-top {
    background-color: #1E1E1E;
  }
  .contact-bottom {
    background-color: #1E1E1E;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
  }
  .complete-button {
    font-size: 12px;
  }
  .update-contact-search {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 15px;
  }
  .new-contact-form, .contact-upload {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
  }
  .contact-field-input textarea {
    height: 150px;
    resize: vertical;
  }
}
:root {
  --header-height: 80px;
}

@media (max-width: 480px) {
  :root {
    --header-height: 128px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  :root {
    --header-height: 60px;
  }
}
@media (min-width: 1201px) {
  :root {
    --header-height: 100px;
  }
}
.profile-container {
  flex: 1;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.profile-dashboard {
  display: grid;
  grid-template-columns: auto 1fr;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.profile-dashboard > .col,
.profile-dashboard > [class*=col-] {
  padding-left: 15px;
  padding-right: 15px;
}

.profile-img {
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 10px;
  border-radius: 50%;
}

.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.profile-name {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.profile-name h2 {
  display: block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.profile-action {
  flex: 0 0 auto;
  flex-shrink: 0;
}

.profile-action a {
  white-space: nowrap;
}

.profile-data {
  font-size: 14px;
  margin-left: 5px;
}

.profile-stats-box {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 auto;
}

.profile-stats {
  flex: 0 1 auto;
  width: auto;
  text-align: center;
  font-size: 1rem;
}

@media (max-width: 468px) {
  .profile-img {
    width: 80px;
    height: 80px;
    -o-object-fit: cover;
       object-fit: cover;
    padding: 10px;
    border-radius: 50%;
  }
  .profile-stats {
    flex: 0 1 auto;
    width: auto;
    font-size: 0.75rem;
  }
  .profile-data {
    font-size: 8px;
  }
}
@media (min-width: 469px) and (max-width: 768px) {
  .profile-data {
    font-size: 12px;
  }
  .profile-img {
    width: 80px;
    height: 80px;
    -o-object-fit: cover;
       object-fit: cover;
    padding: 10px;
    border-radius: 50%;
  }
  .profile-stats {
    flex: 0 1 auto;
    width: auto;
    font-size: 0.75rem;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .profile-container {
    max-width: 720px;
  }
  .profile-data {
    font-size: 12px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .profile-container {
    max-width: 720px;
  }
}
@media (min-width: 1025px) {
  .profile-container {
    max-width: 720px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: #0B0B0D;
  color: #F5F5F7;
}
body .content-section {
  background-color: #1A1A1A;
}
body a {
  color: #F5F5F7;
  text-decoration: none;
}
body a:hover {
  color: #FDA121;
}
body {
  color: #F5F5F7;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 5rem;
  font-family: "Dm Sans", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body[data-theme=discovery] {
  background-color: rgb(36, 100, 240);
  color: #ffffff;
}
body[data-theme=discovery] .content-section {
  background-color: rgb(36, 100, 240);
}
body[data-theme=discovery] a {
  color: #ffffff;
  text-decoration: none;
}
body[data-theme=discovery] a:hover {
  color: #ffbb00;
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
}

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

a:hover,
a:focus {
  color: #000000;
}

/* Width of scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px; /* horizontal scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
  background: none;
  border-radius: 999px;
}

/* Thumb (draggable part) */
::-webkit-scrollbar-thumb {
  background: none;
  border-radius: 999px;
}

/* Hover state */
::-webkit-scrollbar-thumb:hover {
  background: #6BA3B0;
}

.header-and-form {
  padding-top: 10px;
  justify-content: center;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  padding: 16px;
  color: #F5F5F7;
  grid-column: 2;
}

.landing-title {
  color: #F5F5F7;
  text-align: center;
  font-size: 2rem;
}

.section-title a:hover {
  text-decoration: none;
}

.dsp-links {
  position: sticky;
  top: 0;
}

.section-title-black {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  padding: 15px;
  color: black;
}

.section-title-white {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  padding: 15px;
  color: rgb(255, 255, 255);
}

.page-title {
  position: fixed;
  background-color: #0B0B0D;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin: 0px auto 5px auto;
  color: #F5F5F7;
  z-index: 997;
}

.view-all {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: white;
  margin-left: auto !important;
  font-size: 14px;
  justify-content: right;
  justify-self: flex-end;
  text-align: right;
  white-space: nowrap;
}

.about-us {
  width: 60%;
  max-width: 680px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: left;
  color: "Montserrat", sans-serif;
  white-space: pre-line;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6rem;
}

.page {
  width: 100%;
  margin-top: 10px;
}

.page-ohne-title {
  width: 100%;
  margin-top: 10px;
}

::-moz-selection {
  background: #FDA121;
  color: black;
}

::selection {
  background: #FDA121;
  color: black;
}

@keyframes spinner-line-fade-default {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #E02D04;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  visibility: visible;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #6BA3B0;
  color: black;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
    font-weight: 500;
    padding: 5px;
  }
  .section-title-white {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    margin-top: 5px;
  }
  .page-title {
    font-size: 14px;
    font-weight: 500;
    color: #F5F5F7;
    margin: 50px auto 0 auto;
  }
  .page {
    margin-top: 100px;
  }
  .page-ohne-title {
    margin-top: 8px;
  }
  .view-all {
    margin-left: 80%;
    font-size: 12px;
  }
  .about-us {
    width: 90%;
    font-size: 16px;
  }
  .cookie-banner {
    display: flex;
    flex-direction: column;
    justify-items: flex-end;
    align-items: center;
    z-index: 9999;
  }
  .landing-title {
    color: #1A1A1A;
    text-align: center;
    font-size: 1.25rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
    font-weight: 500;
    padding: 10px;
  }
  .page-title {
    font-size: 14px;
    font-weight: 500;
    margin: 30px auto 5px auto;
  }
  .view-all {
    font-size: 12px;
  }
  .page {
    margin-top: 100px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section-title {
    font-size: 2rem;
    font-weight: 500;
    padding: 15px;
  }
  .page-ohne-title {
    width: 100%;
    margin-top: 50px;
  }
  .page {
    margin-top: 120px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .section-title {
    font-family: "Montserrat", sans-serif;
    margin-top: 10px;
    text-align: center;
    padding: 15px;
    color: #F5F5F7;
  }
  .section-title-white {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    margin-top: 10px;
    padding: 15px;
    color: rgb(255, 255, 255);
  }
  .page-title {
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    margin: 30px auto 10px auto;
  }
  .about-us {
    font-size: 16px;
    max-width: 468px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .section-title {
    font-family: "Montserrat", sans-serif;
    margin-top: 0;
    text-align: center;
    padding: 15px;
    color: #F5F5F7;
  }
  .section-title-white {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    margin-top: 0;
    padding: 15px;
    color: rgb(255, 255, 255);
  }
  .page-title {
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
  }
  .about-us {
    width: 60%;
    font-size: 16px;
  }
  .page {
    margin-top: 130px;
  }
}
@media (min-width: 1201px) {
  .page {
    margin-top: 130px;
  }
}/*# sourceMappingURL=main.css.map */