/* ==========================================================================
  CSS Variables
   ========================================================================== */

:root {
  --black: #050505;
  --white: #f4f1ec;
  --cream: #ebe7df;
  --accent: #c9ff00;
  --accent-dark: #83a500;

  --text-dark: #050505;

  --font-main: "Rajdhani", sans-serif;
  --font-display: "Oswald", sans-serif;

  --header-height: 92px;
  --side-width: 86px;
}

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-main);
  overflow-x: hidden;
}

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

button {
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  width: 100%;
  min-height: 100vh;
  background: var(--black);
}

/* HERO */

.hero {
  position: relative;
  width: 100%;
  min-height: 845px;
  height: 100vh;
  overflow: hidden;
  color: var(--text-dark);
  isolation: isolate;
  background: var(--cream);
}

/* hero 1862x845 */

/* DARK */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(244, 241, 235, 0.02) 0%,
      rgba(244, 241, 235, 0.02) 45%,
      rgba(17, 17, 17, 0.24) 74%,
      rgba(0, 0, 0, 0.88) 100%);
}

/* noise */
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("../assets/img/noise.png");
  background-size: 280px 280px;
  mix-blend-mode: multiply;
}

/* HEADER */

.header {
  position: relative;
  z-index: 50;
  height: var(--header-height);
  padding: 0 31px;
  display: grid;
  grid-template-columns: 330px 1fr 270px;
  align-items: center;
}

.logo {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo__symbol {
  position: relative;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.logo__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;

  /* WHITE LOGO / DARK LOGO */
  filter: brightness(0);
}

.logo__copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__copy strong {
  font-size: 30px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 9px;
}

.logo__copy small {
  margin-top: 8px;
  padding-left: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 33px;
}

.nav__link {
  position: relative;
  padding: 24px 0;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #090909;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 9px;
  width: 0;
  height: 1px;
  background: #090909;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.header__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 25px;
}

.language-btn {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #080808;
  font-size: 18px;
}

.join-link {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: #080808;
}

.menu-btn {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(5, 5, 5, 0.55);
  border-radius: 50%;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.menu-btn span {
  position: absolute;
  width: 16px;
  height: 1px;
  background: #050505;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.menu-btn span:first-child {
  transform: translateY(-3px);
}

.menu-btn span:last-child {
  transform: translateY(3px);
}

.menu-btn:hover {
  transform: rotate(90deg);
  border-color: var(--accent-dark);
}

.menu-btn.is-active span:first-child {
  transform: rotate(45deg);
}

.menu-btn.is-active span:last-child {
  transform: rotate(-45deg);
}

/* MOBILE MENU */

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 24px;
  z-index: 80;
  width: 240px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(5, 5, 5, 0.92);
  border: 1px solid rgba(201, 255, 0, 0.22);
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  backdrop-filter: blur(18px);
}

.mobile-menu a {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* SOCIAL BAR */

.social-bar {
  position: absolute;
  left: 0;
  top: var(--header-height);
  z-index: 30;
  width: var(--side-width);
  height: calc(100% - var(--header-height) - 95px);
  padding-top: 113px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.social-bar::before {
  content: "";
  position: absolute;
  top: 82px;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(5, 5, 5, 0.18);
}

.social-bar a {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: #080808;
  font-size: 18px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.social-bar a:hover {
  color: var(--accent-dark);
  transform: translateX(5px);
}

/* HERO CONTENT */

.hero__content-wrap {
  position: relative;
  z-index: 20;
  min-height: calc(100% - var(--header-height));
  padding: 70px 105px 120px;
  display: grid;
  grid-template-columns: minmax(420px, 720px) 1fr 220px;
  align-items: start;
  gap: 38px;
}

.hero__content {
  position: relative;
  z-index: 30;
  padding-top: 38px;
  animation: heroTextIn 0.9s ease both;
}

.hero__eyebrow {
  margin-left: 3px;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 13px;
  text-transform: uppercase;
}

.hero__title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(115px, 12.2vw, 226px);
  line-height: 0.84;
  font-weight: 700;
  letter-spacing: -8px;
  color: #050505;
  white-space: nowrap;
  transform: scaleX(0.88);
  transform-origin: left center;
  overflow: visible;
}

.hero__title span {
  position: relative;
  display: inline-block;
  overflow: visible;
  isolation: isolate;
}

.hero__title span::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 55%;
  z-index: 6;
  width: 58px;
  height: 58px;
  background: var(--accent);
  clip-path: polygon(50% 0%,
      58% 42%,
      100% 50%,
      58% 58%,
      50% 100%,
      42% 58%,
      0% 50%,
      42% 42%);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 18px rgba(201, 255, 0, 0.7));
  pointer-events: none;
}

.hero__title span::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 55%;
  z-index: 5;
  width: 62px;
  height: 2px;
  background: linear-gradient(90deg,
      var(--accent) 0%,
      rgba(201, 255, 0, 0.9) 45%,
      rgba(201, 255, 0, 0) 100%);
  transform: translate(-5px, -30%);
  transform-origin: left center;
  border-radius: 20px;
  filter: drop-shadow(0 0 10px rgba(201, 255, 0, 0.8));
  pointer-events: none;
}

.hero__subtitle {
  margin-top: 25px;
  margin-left: 4px;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 18px;
  text-transform: uppercase;
  color: #080808;
}

.hero__text {
  margin-top: 38px;
  margin-left: 4px;
  max-width: 430px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  color: #151515;
}

.hero__actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sound-btn {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(5, 5, 5, 0.35);
  border-radius: 50%;
  color: #090909;
  font-size: 17px;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sound-btn:hover,
.sound-btn.is-playing {
  color: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: scale(1.06);
  box-shadow: 0 0 25px rgba(201, 255, 0, 0.22);
}

.sound-btn.is-playing i {
  animation: soundPulse 0.7s ease-in-out infinite;
}

.primary-btn {
  height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-radius: 11px;
  background: var(--accent);
  color: #090909;
  box-shadow: 0 0 30px rgba(201, 255, 0, 0.25);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.primary-btn:hover {
  background: #d7ff28;
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(201, 255, 0, 0.38);
}

.primary-btn i {
  font-size: 13px;
  transition: transform 0.35s ease;
}

.primary-btn:hover i {
  transform: translateX(5px);
}

/* HERO STATS */

.hero__stats {
  position: relative;
  z-index: 30;
  grid-column: 3;
  justify-self: end;
  width: 180px;
  padding-top: 59px;
  animation: statsIn 0.95s ease both;
}

.hero__stats-title {
  margin-bottom: 26px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: #111;
}

.hero__stat {
  padding-bottom: 19px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.16);
}

.hero__stat span {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: #555;
}

.hero__stat strong {
  display: block;
  font-size: 38px;
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -1px;
  color: #060606;
}

.hero__stat small {
  display: block;
  margin-top: 8px;
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #555;
}

.hero__stats-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  color: #526800;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero__stats-link i {
  transition: transform 0.3s ease;
}

.hero__stats-link:hover i {
  transform: translateX(5px);
}

/* SCROLL HINT */

.scroll-hint {
  position: absolute;
  right: 71px;
  bottom: 53px;
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.scroll-hint__mouse {
  width: 18px;
  height: 30px;
  padding-top: 6px;
  display: flex;
  justify-content: center;
  border: 1px solid rgba(201, 255, 0, 0.7);
  border-radius: 20px;
}

.scroll-hint__mouse span {
  width: 3px;
  height: 6px;
  border-radius: 4px;
  background: var(--accent);
  animation: mouseMove 1.5s ease-in-out infinite;
}

.scroll-hint p {
  padding: 6px 8px;
  border-radius: 2px;
  color: #fff;
  background: #080808;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

/* ANIMATIONS */

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statsIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes mouseMove {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  70% {
    opacity: 0.2;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soundPulse {

  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(1.3);
  }
}

/* OUR ARTISTS */

.artist-card {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 185px 1fr;
  border: 1px solid rgba(244, 241, 236, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease,
    box-shadow 0.45s ease;
}

.artist-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 255, 0, 0.4);
  background: rgba(201, 255, 0, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

/* RESPONSIVE */

@media (max-width: 1440px) {
  .header {
    grid-template-columns: 300px 1fr 240px;
  }

  .nav {
    gap: 24px;
  }

  .hero__content-wrap {
    padding-left: 95px;
    padding-right: 70px;
    grid-template-columns: minmax(380px, 650px) 1fr 190px;
  }

  .hero__title {
    font-size: clamp(100px, 11vw, 178px);
  }

  .hero__subtitle {
    font-size: 19px;
    letter-spacing: 14px;
  }
}

@media (max-width: 1180px) {
  .header {
    grid-template-columns: 280px 1fr 210px;
  }

  .logo__copy strong {
    font-size: 25px;
    letter-spacing: 7px;
  }

  .logo__copy small {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .nav {
    gap: 18px;
  }

  .nav__link {
    font-size: 11px;
  }

  .hero__content-wrap {
    padding-left: 90px;
    padding-right: 48px;
    grid-template-columns: minmax(360px, 590px) 1fr 170px;
  }

  .hero__title {
    font-size: clamp(92px, 10.6vw, 145px);
  }

  .hero__subtitle {
    font-size: 17px;
    letter-spacing: 11px;
  }

  .hero__stat strong {
    font-size: 34px;
  }
}

@media (min-width: 1025px) and (max-width: 1100px) {
  .header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .header__right {
    gap: 18px;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 780px;
  }

  .header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .header__right {
    gap: 18px;
  }

  .hero__content-wrap {
    grid-template-columns: 1fr;
    padding: 62px 46px 120px 90px;
  }

  .hero__stats {
    display: none;
  }

  .hero__image {
    background-position: center top;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 78px;
    --side-width: 56px;
  }

  .hero {
    min-height: 720px;
  }

  .header {
    padding: 0 20px;
  }

  .logo {
    gap: 12px;
  }

  .logo__symbol {
    width: 44px;
    height: 44px;
  }

  .logo__copy strong {
    font-size: 20px;
    letter-spacing: 5px;
  }

  .logo__copy small {
    font-size: 8px;
    letter-spacing: 2.5px;
  }

  .language-btn,
  .join-link {
    display: none;
  }

  .menu-btn {
    width: 42px;
    height: 42px;
  }

  .social-bar {
    display: none;
  }

  .mobile-menu {
    right: 20px;
    width: calc(100% - 40px);
  }

  .hero__content-wrap {
    padding: 54px 22px 120px;
  }

  .hero__content {
    padding-top: 20px;
  }

  .hero__eyebrow {
    font-size: 13px;
    letter-spacing: 9px;
  }

  .hero__title {
    font-size: clamp(74px, 23vw, 124px);
    letter-spacing: -4px;
  }

  .hero__title span::after {
    width: 34px;
    height: 34px;
    transform: translate(-50%, -50%);
  }

  .hero__title span::before {
    left: 10%;
    width: 38px;
    height: 1.5px;
    transform: translate(-3px, -30%);
  }

  .hero__subtitle {
    margin-top: 18px;
    font-size: 14px;
    letter-spacing: 7px;
  }

  .hero__text {
    margin-top: 28px;
    font-size: 15px;
  }

  .hero__actions {
    margin-top: 34px;
  }

  .sound-btn {
    width: 50px;
    height: 50px;
  }

  .primary-btn {
    height: 44px;
    padding: 0 18px;
    gap: 14px;
    font-size: 11px;
  }

  .hero__image {
    background-position: center top;
  }

  .scroll-hint {
    right: 22px;
    bottom: 35px;
  }

  .scroll-hint p {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 700px;
  }

  .logo__copy strong {
    font-size: 17px;
    letter-spacing: 4px;
  }

  .logo__copy small {
    display: none;
  }

  .hero__eyebrow {
    letter-spacing: 7px;
  }

  .hero__title {
    font-size: clamp(62px, 22vw, 92px);
  }

  .hero__subtitle {
    max-width: 300px;
    line-height: 1.4;
    letter-spacing: 5px;
  }

  .hero__text {
    max-width: 300px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .scroll-hint {
    display: none;
  }
}

/* =========================
   OUR ARTISTS
========================= */

.artists {
  position: relative;
  z-index: 15;
  width: 100%;
  height: clamp(320px, 31.25vw, 560px);
  min-height: clamp(320px, 31.25vw, 560px);
  padding: 0 clamp(30px, 2.93vw, 56px) clamp(14px, 1.37vw, 26px) clamp(24px, 2.34vw, 45px);
  display: grid;
  grid-template-columns: clamp(136px, 13.28vw, 245px) minmax(0, 1fr);
  gap: clamp(10px, 1.1vw, 22px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 3% 10%, rgba(201, 255, 0, 0.16), transparent 7%),
    linear-gradient(180deg, #050505 0%, #060606 100%);
}

.artists::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 8;
  height: clamp(10px, 0.9vw, 16px);
  pointer-events: none;
  opacity: 0.95;

  background-image: url("data:image/svg+xml,%3Csvg width='1000' height='18' viewBox='0 0 1000 18' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 1 H150 L185 17 H815 L850 1 H1000' fill='none' stroke='%23f4f1ec' stroke-opacity='0.17' stroke-width='1' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center top;
}

.artists::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  z-index: 2;
  height: clamp(62px, 6vw, 110px);
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.28) 45%,
      transparent 100%);
}

/* BORDER */

/* BACKGROUND BUTTON */

.artists__nav {
  margin-top: clamp(20px, 1.95vw, 36px);
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.36vw, 25px);
}

.artists__btn {
  width: clamp(33px, 3.22vw, 58px);
  height: clamp(33px, 3.22vw, 58px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 241, 236, 0.38);
  border-radius: 50%;
  color: rgba(244, 241, 236, 0.86);
  font-size: clamp(11px, 1.07vw, 19px);
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.artists__btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.artists__progress {
  width: clamp(142px, 13.86vw, 255px);
  display: flex;
  align-items: center;
}

.artists__progress span {
  width: clamp(6px, 0.58vw, 11px);
  height: clamp(6px, 0.58vw, 11px);
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(244, 241, 236, 0.38);
}

.artists__progress span.is-active {
  width: clamp(10px, 0.97vw, 18px);
  height: clamp(10px, 0.97vw, 18px);
  background: var(--white);
}

.artists__progress i {
  width: clamp(47px, 4.58vw, 84px);
  height: 1px;
  background: rgba(244, 241, 236, 0.25);
}

.artists__stage {
  position: relative;
  z-index: 4;
  height: clamp(320px, 31.25vw, 560px);
  min-width: 0;
}

.artists__track {
  position: relative;
  z-index: 1;
  height: clamp(320px, 31.25vw, 560px);
  min-width: 0;
  padding-top: clamp(28px, 2.7vw, 52px);
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 1vw, 18px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.artists__track::-webkit-scrollbar {
  display: none;
}

.artists__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.artists__track.is-dragging .artist-card,
.artists__track.is-dragging .artist-card * {
  pointer-events: none;
}

.artists .artist-card {
  position: relative;
  flex: 0 0 clamp(196px, 19.14vw, 355px);
  height: clamp(252px, 24.6vw, 445px);
  overflow: visible;
  opacity: 0.56;
  background: transparent;
  border: 0;
  transform: none;
  transition:
    opacity 0.45s ease,
    filter 0.45s ease;
}

.artists .artist-card.is-center {
  z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
  .artists .artist-card:hover {
    z-index: 12;
    opacity: 1;
    filter:
      drop-shadow(0 0 22px rgba(226, 181, 92, 0.11))
      drop-shadow(0 24px 58px rgba(0, 0, 0, 0.56));
  }

  .artists .artist-card:hover .artist-card__media::before {
    opacity: 0.04;
  }

  .artists .artist-card:hover .artist-card__media img {
    transform: scale(1.075);
    filter: grayscale(0.18) contrast(1.12) brightness(1.08);
  }
}

.artist-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #050505;
  clip-path: polygon(10% 0,
      100% 0,
      100% 90%,
      90% 100%,
      0 100%,
      0 10%);
  transition:
    background 0.35s ease,
    filter 0.35s ease;
}

.artist-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.38);
  clip-path: polygon(10% 0,
      100% 0,
      100% 90%,
      90% 100%,
      0 100%,
      0 10%);
  transition: opacity 0.45s ease;
}

.artist-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  clip-path: polygon(10% 0,
      100% 0,
      100% 90%,
      90% 100%,
      0 100%,
      0 10%);
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.03) 0%,
      rgba(0, 0, 0, 0.12) 34%,
      rgba(0, 0, 0, 0.86) 100%),
    radial-gradient(circle at 42% 24%,
      rgba(226, 181, 92, 0.14),
      rgba(183, 128, 39, 0.055) 18%,
      transparent 34%);
}

.artist-card__media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  clip-path: polygon(10% 0,
      100% 0,
      100% 90%,
      90% 100%,
      0 100%,
      0 10%);
  filter: grayscale(1) contrast(1.08);
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
  will-change: transform, filter;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.artist-card__info {
  position: absolute;
  left: clamp(13px, 1.26vw, 23px);
  right: clamp(13px, 1.26vw, 23px);
  bottom: clamp(17px, 1.65vw, 30px);
  z-index: 4;
}

.artist-card__info h3 {
  margin-bottom: clamp(6px, 0.58vw, 10px);
  color: var(--white);
  font-size: clamp(18px, 1.75vw, 32px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.artist-card__country {
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.48vw, 9px);
  color: rgba(244, 241, 236, 0.72);
  font-size: clamp(8px, 0.78vw, 14px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.artist-card__country img {
  width: clamp(10px, 0.97vw, 18px);
  height: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.artist-card__genre {
  margin-top: clamp(18px, 1.75vw, 32px);
  color: rgba(244, 241, 236, 0.54);
  font-size: clamp(9px, 0.87vw, 16px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.artist-card__socials {
  margin-top: clamp(16px, 1.56vw, 28px);
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.75vw, 31px);
}

.artist-card__socials a {
  color: rgba(244, 241, 236, 0.84);
  font-size: clamp(12px, 1.17vw, 21px);
  line-height: 1;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.artist-card__socials a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.artists__side--prev {
  left: clamp(-34px, -3.32vw, -18px);
}

.artists__side--next {
  right: clamp(-18px, -1.75vw, -10px);
}

/* OUR ARTISTS MOBILE */

@media (max-width: 760px) {
  .artists {
    height: auto;
    min-height: auto;
    padding: 38px 22px 42px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .artists__nav {
    margin-top: 22px;
  }

  .artists__stage {
    height: auto;
  }

  .artists__track {
    height: auto;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .artists .artist-card {
    flex-basis: 210px;
    height: 248px;
    opacity: 0.72;
  }
}

/* =========================
   DASHBOARD SECTION
========================= */

.dashboard-section {
  position: relative;
  z-index: 14;
  width: 100%;
  padding: 18px 22px 18px;
  overflow: hidden;
  background: #050505;
  color: var(--white);
}


.dashboard-section__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.releases-panel,
.now-playing-panel,
.playlists-panel {
  width: 100%;
  height: 420px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 236, 0.06);
  border-radius: 4px;
  background: #080808;
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.026),
    0 18px 60px rgba(0, 0, 0, 0.45);
}

/* =========================
   LATEST RELEASES
========================= */

.releases-panel {
  --release-x: 18px;
  --release-head: 40px;

  position: relative;
  padding: 24px var(--release-x) 18px;
  background:
    radial-gradient(circle at 15% 12%, rgba(201, 255, 0, 0.055), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #080808;
}

.releases-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 40%);
}

.releases-panel__head {
  position: relative;
  z-index: 2;
  height: var(--release-head);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.releases-panel__head h2 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.releases-panel__head a {
  margin-top: 3px;
  color: rgba(244, 241, 236, 0.72);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.releases-panel__list {
  position: relative;
  z-index: 2;
  height: calc(100% - var(--release-head));
  margin-inline: calc(var(--release-x) * -1);
}

.release-item {
  position: relative;
  height: 20%;
  padding-inline: var(--release-x);

  display: grid;
  grid-template-columns: 38px 48px minmax(0, 1fr) 24px minmax(70px, 105px) 42px;
  align-items: center;
  column-gap: 10px;

  border-top: 0;
  color: rgba(244, 241, 236, 0.48);
}

.release-item::before {
  content: "";
  position: absolute;
  left: var(--release-x);
  right: var(--release-x);
  top: 0;
  height: 1px;
  background: rgba(244, 241, 236, 0.065);
  pointer-events: none;
}

.release-item:first-child::before {
  display: none;
}

.release-item.is-active {
  background:
    linear-gradient(90deg,
      rgba(201, 255, 0, 0.22) 0%,
      rgba(201, 255, 0, 0.08) 52%,
      rgba(201, 255, 0, 0.025) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(201, 255, 0, 0.55),
    inset 0 0 22px rgba(201, 255, 0, 0.055);
}

.release-item.is-active::before {
  display: none;
}

.release-item__num {
  color: rgba(244, 241, 236, 0.34);
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.7px;
}

.release-item.is-active .release-item__num {
  color: var(--accent);
}

.release-item__cover {
  width: 44px;
  height: 44px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
}

.release-item__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(0.62);
}

.release-item.is-active .release-item__cover img {
  filter: grayscale(0.2) contrast(1.15) brightness(0.82) saturate(1.15);
}

.release-item__text {
  min-width: 0;
}

.release-item__text h3 {
  margin: 0 0 5px;
  color: rgba(244, 241, 236, 0.94);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.release-item__text p {
  margin: 0;
  color: rgba(244, 241, 236, 0.72);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.release-item__play {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 241, 236, 0.24);
  border-radius: 50%;
  color: rgba(244, 241, 236, 0.68);
  background: rgba(255, 255, 255, 0.01);
  font-size: 7px;
}

.release-item__play i {
  margin-left: 1px;
}

.release-item.is-active .release-item__play {
  color: var(--accent);
  border-color: rgba(201, 255, 0, 0.85);
  background: rgba(201, 255, 0, 0.08);
  box-shadow: 0 0 12px rgba(201, 255, 0, 0.2);
}

.release-item__wave {
  position: relative;
  overflow: hidden;
  opacity: 0.7;
}

.release-item__wave::before {
  content: "";
  position: absolute;
  inset: 0;
  color: rgba(244, 241, 236, 0.18);
  background-image: repeating-linear-gradient(90deg,
      currentColor 0 1px,
      transparent 1px 5px);
  clip-path: polygon(0 52%,
      4% 38%,
      8% 58%,
      12% 30%,
      16% 66%,
      20% 44%,
      24% 60%,
      28% 22%,
      32% 78%,
      36% 35%,
      40% 64%,
      44% 48%,
      48% 70%,
      52% 28%,
      56% 74%,
      60% 40%,
      64% 62%,
      68% 24%,
      72% 80%,
      76% 42%,
      80% 58%,
      84% 36%,
      88% 66%,
      92% 44%,
      96% 60%,
      100% 48%,
      100% 100%,
      0 100%);
}

.release-item.is-active .release-item__wave::before {
  color: rgba(201, 255, 0, 0.82);
}

.release-item__time {
  justify-self: end;
  color: rgba(244, 241, 236, 0.48);
  font-size: 10.5px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.25px;
}

.release-item.is-active .release-item__time {
  color: var(--accent);
}

/* =========================
   NOW PLAYING PANEL 380 x 420
========================= */

.now-playing-panel {
  position: relative;
  width: 380px;
  height: 420px;
  min-width: 380px;
  max-width: 380px;
  padding: 0;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 236, 0.06);
  border-radius: 4px;
  background: #050505;
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.026),
    0 18px 60px rgba(0, 0, 0, 0.45);
}

.now-playing-panel__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 250px;
  z-index: 1;
  overflow: hidden;
}

.now-playing-panel__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 8%, rgba(201, 255, 0, 0.78) 0%, rgba(201, 255, 0, 0.28) 18%, transparent 39%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, transparent 50%, rgba(0, 0, 0, 0.16) 100%);
}

.now-playing-panel__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(0.5) contrast(1.2) brightness(0.74) saturate(1.16);
  transform: scale(1.06);
}

.now-playing-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 225px;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.88) 23%, #050505 54%, #050505 100%);
}

.now-playing-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.82;
  background:
    linear-gradient(132deg,
      transparent 0%,
      transparent 36%,
      rgba(201, 255, 0, 0.34) 37%,
      rgba(201, 255, 0, 0.08) 48%,
      transparent 49%,
      transparent 100%);
  mix-blend-mode: screen;
}

.now-playing-panel__top {
  position: relative;
  z-index: 6;
  height: 41px;
  padding: 13px 14px 0;
  display: grid;
  grid-template-columns: 22px 1fr 22px;
  align-items: start;
}

.now-playing-panel__icon {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 241, 236, 0.5);
  border-radius: 50%;
  color: rgba(244, 241, 236, 0.92);
  background: rgba(0, 0, 0, 0.28);
  font-size: 8px;
}

.now-playing-panel__top p {
  justify-self: center;
  margin: 2px 0 0;
  color: rgba(244, 241, 236, 0.86);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.now-playing-panel__content {
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 14px;
  z-index: 6;
}

.now-playing-panel__song {
  margin-bottom: 9px;
}

.now-playing-panel__song h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 25px;
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.now-playing-panel__song p {
  margin: 0;
  color: rgba(244, 241, 236, 0.64);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.now-playing-panel__wave {
  position: relative;
  display: block;
  overflow: hidden;
}

.now-playing-panel__wave span {
  display: none;
}

.now-playing-panel__wave::before,
.now-playing-panel__wave::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(90deg,
      currentColor 0 1px,
      transparent 1px 4px);
  clip-path: polygon(0% 72%,
      2% 34%,
      4% 68%,
      6% 42%,
      8% 76%,
      10% 30%,
      12% 66%,
      14% 45%,
      16% 80%,
      18% 38%,
      20% 70%,
      22% 26%,
      24% 82%,
      26% 44%,
      28% 74%,
      30% 34%,
      32% 90%,
      34% 42%,
      36% 76%,
      38% 22%,
      40% 88%,
      42% 48%,
      44% 78%,
      46% 30%,
      48% 92%,
      50% 40%,
      52% 74%,
      54% 24%,
      56% 84%,
      58% 45%,
      60% 72%,
      62% 34%,
      64% 82%,
      66% 46%,
      68% 76%,
      70% 28%,
      72% 88%,
      74% 44%,
      76% 70%,
      78% 38%,
      80% 78%,
      82% 48%,
      84% 70%,
      86% 32%,
      88% 80%,
      90% 44%,
      92% 74%,
      94% 36%,
      96% 68%,
      98% 50%,
      100% 76%,
      100% 100%,
      0 100%);
}

.now-playing-panel__wave::before {
  left: 0;
  width: 58%;
  color: var(--accent);
  filter: drop-shadow(0 0 7px rgba(201, 255, 0, 0.42));
}

.now-playing-panel__wave::after {
  left: 58%;
  right: 0;
  color: rgba(244, 241, 236, 0.18);
}

.now-playing-panel__progress {
  position: relative;
  height: 3px;
  margin-top: 7px;
  overflow: visible;
  background: rgba(244, 241, 236, 0.2);
}

.now-playing-panel__progress div {
  position: relative;
  width: 0;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(201, 255, 0, 0.62);
}

.now-playing-panel__progress div::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(201, 255, 0, 0.85);
}

.now-playing-panel__time {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  color: rgba(244, 241, 236, 0.74);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.25px;
}

.now-playing-panel__controls {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 24px 1fr 42px 1fr 24px;
  align-items: center;
  gap: 0;
}

.now-playing-panel__controls button {
  justify-self: center;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: rgba(244, 241, 236, 0.88);
  font-size: 10px;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.now-playing-panel__controls button:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.now-playing-panel__controls .is-main {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #050505;
  background: var(--accent);
  font-size: 13px;
  box-shadow:
    0 0 16px rgba(201, 255, 0, 0.82),
    0 0 32px rgba(201, 255, 0, 0.36);
}

.now-playing-panel__controls .is-main:hover {
  color: #050505;
  transform: scale(1.04);
}

/* =========================
   PLAYLISTS PANEL
========================= */

.playlists-panel {
  --playlist-x: 18px;
  --playlist-head: 40px;

  position: relative;
  padding: 24px var(--playlist-x) 18px;
  background:
    radial-gradient(circle at 88% 14%, rgba(201, 255, 0, 0.055), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #080808;
}

.playlists-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(270deg, rgba(0, 0, 0, 0.36), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), transparent 38%);
}

.playlists-panel__head {
  position: relative;
  z-index: 2;
  height: var(--playlist-head);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.playlists-panel__head h2 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.playlists-panel__head a {
  margin-top: 3px;
  color: rgba(244, 241, 236, 0.72);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.playlists-panel__list {
  position: relative;
  z-index: 2;
  height: calc(100% - var(--playlist-head));
  margin-inline: calc(var(--playlist-x) * -1);
  display: flex;
  flex-direction: column;
}

.playlist-item {
  position: relative;
  height: 20%;
  padding-inline: var(--playlist-x);

  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 34px;
  align-items: center;
  column-gap: 13px;

  border-top: 0;
  color: rgba(244, 241, 236, 0.48);

  transition:
    background 0.28s ease,
    border-color 0.28s ease;
}

.playlist-item::before {
  content: "";
  position: absolute;
  left: var(--playlist-x);
  right: var(--playlist-x);
  top: 0;
  height: 1px;
  background: rgba(244, 241, 236, 0.065);
  pointer-events: none;
}

.playlist-item:first-child::before {
  display: none;
}

.playlist-item:hover {
  background:
    linear-gradient(90deg,
      rgba(201, 255, 0, 0.08) 0%,
      rgba(201, 255, 0, 0.025) 52%,
      transparent 100%);
}

.playlist-item__cover {
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
}

.playlist-item__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.12) brightness(0.7) saturate(1.1);
}

.playlist-item:hover .playlist-item__cover img {
  filter: grayscale(0.1) contrast(1.14) brightness(0.86) saturate(1.22);
}

.playlist-item__text {
  min-width: 0;
}

.playlist-item__text h3 {
  margin: 0 0 5px;
  color: rgba(244, 241, 236, 0.94);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.playlist-item__text p,
.playlist-item__text span {
  display: block;
  margin: 0;
  color: rgba(244, 241, 236, 0.42);
  font-size: 12px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.playlist-item__text span {
  margin-top: 3px;
  color: rgba(244, 241, 236, 0.34);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .dashboard-section,
  .world-stats {
    padding-left: 18px;
    padding-right: 18px;
  }

  .dashboard-section__grid {
    grid-template-columns: 1fr;
  }

  .releases-panel,
  .playlists-panel {
    width: 100%;
    height: 420px;
    max-width: none;
  }

  .now-playing-panel {
    width: 380px;
    height: 420px;
    min-width: 380px;
    max-width: 380px;
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .release-item {
    grid-template-columns: 34px 40px minmax(90px, 1fr) 24px 42px;
  }

  .release-item__wave {
    display: none;
  }

  .now-playing-panel {
    width: 100%;
    min-width: 0;
    max-width: 380px;
  }
}

/* =========================
   YOUTUBE PLAYER CONNECT
========================= */

.syncrew-yt-holder {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 0;
  width: 220px;
  height: 220px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.release-item {
  cursor: pointer;
}

.release-item__play {
  pointer-events: none;
}

.release-item.is-active .release-item__play i {
  margin-left: 0;
}

.now-playing-panel__progress {
  cursor: pointer;
  touch-action: none;
}

.now-playing-panel__progress.is-seeking {
  background: rgba(244, 241, 236, 0.28);
}

.now-playing-panel__progress div::after {
  pointer-events: none;
}

.now-playing-panel__controls .is-main i.fa-play {
  margin-left: 2px;
}

/* =========================
   NOW PLAYING VOLUME
========================= */

.now-playing-volume {
  position: relative;
  z-index: 50;
  width: 22px;
  height: 22px;
}

.now-playing-volume__btn {
  position: relative;
  z-index: 3;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(244, 241, 236, 0.92);
  background: rgba(5, 5, 5, 0.5);
  font-size: 10px;
}

.now-playing-volume.is-open .now-playing-volume__btn {
  color: var(--accent);
  border-color: rgba(201, 255, 0, 0.9);
  background: rgba(201, 255, 0, 0.1);
}

.now-playing-volume__slider {
  position: absolute;
  left: 50%;
  top: 30px;

  width: 34px;
  height: 102px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(201, 255, 0, 0.24);
  border-radius: 5px;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(12px);

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.45),
    0 0 16px rgba(201, 255, 0, 0.12);

  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-5px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.now-playing-volume.is-open .now-playing-volume__slider {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.now-playing-volume__input {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 72px;
  height: 4px;

  cursor: pointer;
  accent-color: var(--accent);

  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center center;

  -webkit-appearance: none;
  appearance: none;
}

.now-playing-volume__input::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(244, 241, 236, 0.24);
}

.now-playing-volume__input::-webkit-slider-thumb {
  width: 11px;
  height: 11px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(201, 255, 0, 0.7);
  -webkit-appearance: none;
}

.now-playing-volume__input::-moz-range-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(244, 241, 236, 0.24);
}

.now-playing-volume__input::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(201, 255, 0, 0.7);
}

/* =========================
   SOUNDCLOUD STYLE WAVE
========================= */

.release-item__wave,
.now-playing-panel__wave {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 2px;
  overflow: hidden;
  opacity: 1;
}

.release-item__wave {
  height: 24px;
}

.now-playing-panel__wave {
  height: 46px;
  margin-top: 12px;
}

.release-item__wave::before,
.release-item__wave::after,
.now-playing-panel__wave::before,
.now-playing-panel__wave::after {
  display: none !important;
}

.release-item__wave span,
.now-playing-panel__wave span {
  display: block !important;
  position: relative;
  flex: 0 0 2px;
  width: 2px;
  min-width: 2px;
  height: var(--h, 48%);
  border-radius: 999px;
  background: rgba(244, 241, 236, 0.18);
  box-shadow: none;
  transform-origin: center center;
}

.release-item:not(.is-active) .release-item__wave span {
  background: rgba(244, 241, 236, 0.14);
  opacity: 0.8;
}

.release-item.is-active .release-item__wave span,
.now-playing-panel__wave span {
  background: rgba(244, 241, 236, 0.22);
  opacity: 1;
}

.release-item.is-active .release-item__wave span.is-played,
.now-playing-panel__wave span.is-played {
  background: var(--accent);
  box-shadow:
    0 0 6px rgba(201, 255, 0, 0.45),
    0 0 14px rgba(201, 255, 0, 0.16);
}

.release-item.is-active .release-item__wave span.is-current,
.now-playing-panel__wave span.is-current {
  background: #f4f1ec;
  box-shadow:
    0 0 7px rgba(244, 241, 236, 0.5),
    0 0 14px rgba(201, 255, 0, 0.22);
}

.release-item__wave span:nth-child(3n),
.now-playing-panel__wave span:nth-child(3n) {
  opacity: 0.82;
}

.release-item__wave span:nth-child(4n),
.now-playing-panel__wave span:nth-child(4n) {
  opacity: 0.94;
}

.release-item.is-active .release-item__wave span:nth-child(3n),
.release-item.is-active .release-item__wave span:nth-child(4n),
.now-playing-panel__wave span:nth-child(3n),
.now-playing-panel__wave span:nth-child(4n) {
  opacity: 1;
}

.release-item__wave span,
.now-playing-panel__wave span {
  transition:
    background 0.18s linear,
    box-shadow 0.18s linear,
    opacity 0.18s linear,
    transform 0.18s linear;
}

.release-item__wave span.is-current,
.now-playing-panel__wave span.is-current {
  transform: scaleY(1.12);
}

.release-item.is-active .release-item__wave span.is-played,
.now-playing-panel__wave span.is-played {
  transition-duration: 0.12s;
}

/* =========================
   WORLD STATS / GLOBAL DATA
========================= */

.world-stats {
  position: relative;
  z-index: 12;
  display: block;
  clear: both;
  width: 100%;
  padding: 0 22px clamp(34px, 3vw, 58px);
  color: var(--white);
}

.world-card {
  position: relative;
  min-width: 0;
  max-width: 100%;
  min-height: 352px;
  padding: clamp(22px, 1.65vw, 32px);
  overflow: hidden;
  isolation: isolate;

  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.world-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.026), transparent 38%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.1));
  opacity: 0.58;
}

.world-card+.world-card::after {
  content: "";
  position: absolute;
  left: -9px;
  top: 0;
  bottom: 0;
  z-index: 18;
  width: 18px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg%20width='18'%20height='1000'%20viewBox='0%200%2018%201000'%20preserveAspectRatio='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M9%200%20V150%20L1%20185%20V815%20L9%20850%20V1000'%20fill='none'%20stroke='#f4f1ec'%20stroke-opacity='.16'%20stroke-width='1'%20vector-effect='non-scaling-stroke'/%3E%3Cpath%20d='M9%20155%20L1%20185%20V815%20L9%20845'%20fill='none'%20stroke='#c9ff00'%20stroke-opacity='.26'%20stroke-width='1'%20vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  filter: none;
}

.world-card>* {
  position: relative;
  z-index: 2;
}

.world-card__head {
  position: relative;
  z-index: 8;
}

.world-card__head h2,
.streams-head h2 {
  color: var(--white);
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.streams-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

/* map */

.world-card--map {
  min-height: 365px;
  padding-bottom: 72px;
  overflow: visible;
}

.world-map {
  --map-ratio: 1009.6727 / 665.963;

  position: relative;
  z-index: 2;
  width: min(86%, 360px);
  aspect-ratio: var(--map-ratio);
  height: auto;
  margin: 22px auto 0;
  overflow: visible;
  isolation: isolate;
}

.world-map__canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: scale(1.6);
  transform-origin: center center;
  filter:
    drop-shadow(0 0 9px rgba(0, 128, 128, 0.10))
    drop-shadow(0 12px 22px rgba(0, 0, 0, 0.30));
}

.world-map__canvas > svg,
.world-map__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.world-map__country {
  fill: rgba(0, 128, 128, 0.025);
  stroke: rgba(0, 128, 128, 0.34);
  stroke-width: 0.9;
  vector-effect: non-scaling-stroke;
  cursor: default;
  transition:
    fill 0.3s ease,
    stroke 0.3s ease,
    filter 0.3s ease;
}

.world-map__country.has-artists {
  fill: rgba(0, 128, 128, 0.075);
  stroke: rgba(0, 128, 128, 0.48);
  filter: drop-shadow(0 0 2px rgba(0, 128, 128, 0.16));
  cursor: default;
}

@media (hover: hover) and (pointer: fine) {
  .world-map__country:hover,
  .world-map__country.is-hovered {
    fill: rgba(0, 128, 128, 0.16);
    stroke: rgba(25, 190, 180, 0.82);
    filter:
      drop-shadow(0 0 3px rgba(0, 128, 128, 0.34))
      drop-shadow(0 0 9px rgba(0, 128, 128, 0.18));
  }
}

.world-map__artists {
  pointer-events: none;
}

.world-map__artist-dot {
  pointer-events: none;
  cursor: default;
  outline: none;
}

/* ARTISTS DOT */
.world-map__artist-halo {
  fill: rgba(201, 255, 0, 0.16);
  filter: blur(0.45px);
  transform-box: fill-box;
  transform-origin: center;
  animation: artistMapPulse 3.6s ease-in-out infinite;
}

.world-map__artist-ring {
  fill: rgba(201, 255, 0, 0.18);
  stroke: none;
  filter: blur(0.18px);
}

.world-map__artist-core {
  fill: #c9ff00;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.88))
    drop-shadow(0 0 3px rgba(201, 255, 0, 0.95))
    drop-shadow(0 0 7px rgba(201, 255, 0, 0.48));
  transition: transform 0.24s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.world-map__tooltip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 12;
  min-width: 116px;
  max-width: 190px;
  padding: 8px 10px;
  border: 1px solid rgba(112, 242, 197, 0.34);
  background: rgba(8, 9, 8, 0.94);
  color: rgba(244, 241, 236, 0.92);
  font-size: 9px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 10px));
  transition: opacity 0.18s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}

.world-map__tooltip.is-visible {
  opacity: 1;
}

.world-map__tooltip strong {
  display: block;
  margin-bottom: 4px;
  color: #88ffd5;
  font-size: 10px;
}

.world-map__tooltip span {
  display: block;
  color: rgba(244, 241, 236, 0.72);
  font-size: 8px;
  letter-spacing: 0.65px;
}

.world-map__loading,
.world-map__error {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(244, 241, 236, 0.44);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

@keyframes artistMapPulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.72);
  }

  50% {
    opacity: 0.62;
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .world-map__artist-halo {
    animation: none;
  }
}

.world-card__link {
  position: absolute;
  left: clamp(22px, 1.65vw, 32px);
  bottom: clamp(19px, 1.35vw, 26px);
  z-index: 8;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--accent);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.world-card__link span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 255, 0, 0.55);
  border-radius: 50%;
  font-size: 10px;
}

/* countries */

.country-row {
  display: grid;
  grid-template-columns: minmax(140px, 170px) 24px minmax(82px, 108px);
  align-items: center;
  justify-content: start;
  column-gap: 8px;
}

.country-row strong {
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.country-row strong {
  color: rgba(244, 241, 236, 0.66);
  text-align: right;
}

/* streams */

.streams-head p,
.streams-growth span {
  margin-top: 5px;
  color: rgba(244, 241, 236, 0.45);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.streams-growth {
  text-align: right;
}

.streams-growth strong {
  display: block;
  color: var(--accent);
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: 1;
  font-weight: 800;
}

.streams-number {
  margin-top: clamp(22px, 1.65vw, 32px);
  max-width: 100%;
  overflow: hidden;
  color: var(--accent);
  font-size: clamp(25px, 2vw, 38px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.streams-chart {
  position: relative;
  height: clamp(116px, 7.4vw, 146px);
  margin-top: clamp(18px, 1.35vw, 26px);
  padding-left: 34px;
  padding-bottom: 18px;
}

.streams-chart svg {
  position: absolute;
  left: 34px;
  right: 0;
  top: 0;
  bottom: 18px;
  width: calc(100% - 34px);
  height: calc(100% - 18px);
  overflow: visible;
}

.streams-chart__fill {
  fill: url(#streamsFill);
}

.streams-chart__line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(201, 255, 0, 0.42));
}

.streams-chart__y {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.streams-chart__y span,
.streams-chart__months span {
  color: rgba(244, 241, 236, 0.42);
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.streams-chart__months {
  position: absolute;
  left: 34px;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1100px) {

  .world-card {
    min-height: 330px;
  }

  .world-card+.world-card::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg%20width='1000'%20height='18'%20viewBox='0%200%201000%2018'%20preserveAspectRatio='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M0%201%20H150%20L185%2017%20H815%20L850%201%20H1000'%20fill='none'%20stroke='#f4f1ec'%20stroke-opacity='.16'%20stroke-width='1'%20vector-effect='non-scaling-stroke'/%3E%3Cpath%20d='M150%201%20L185%2017%20H815%20L850%201'%20fill='none'%20stroke='#c9ff00'%20stroke-opacity='.24'%20stroke-width='1'%20vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    filter: none;
  }

  .world-card--map {
    min-height: 380px;
  }

  .world-map {
    width: min(82%, 380px);
  }
}

@media (max-width: 560px) {

  .world-card {
    min-height: 300px;
  }

  .world-card--map {
    min-height: 330px;
  }

  .world-card+.world-card::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg%20width='1000'%20height='18'%20viewBox='0%200%201000%2018'%20preserveAspectRatio='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M0%201%20H150%20L185%2017%20H815%20L850%201%20H1000'%20fill='none'%20stroke='#f4f1ec'%20stroke-opacity='.16'%20stroke-width='1'%20vector-effect='non-scaling-stroke'/%3E%3Cpath%20d='M150%201%20L185%2017%20H815%20L850%201'%20fill='none'%20stroke='#c9ff00'%20stroke-opacity='.24'%20stroke-width='1'%20vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    filter: none;
  }

  .world-map {
    width: min(96%, 320px);
    margin-top: 20px;
  }

  .country-row {
    grid-template-columns: minmax(132px, 150px) 22px 78px;
    column-gap: 7px;
  }

  .streams-number {
    font-size: 27px;
  }

  .streams-chart__months span:nth-child(even) {
    display: none;
  }
}

/* WORLD STATS */
@media (max-width: 900px) {
  .world-stats {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 560px) {
  .world-stats {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* =========================
   YELLOW BANNER / TICKER
========================= */

.yellow-banner {
  position: relative;
  z-index: 14;
  width: 100%;
  height: clamp(54px, 4.1vw, 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--accent);
  color: #050505;
  border-top: 1px solid rgba(5, 5, 5, 0.18);
  border-bottom: 1px solid rgba(5, 5, 5, 0.28);
}

.yellow-banner__barcode {
  --barcode-left-space: clamp(18px, 1.8vw, 34px);
  --barcode-right-space: clamp(22px, 2.2vw, 42px);
  --barcode-mask-space: clamp(20px, 2.3vw, 44px);

  position: relative;
  z-index: 5;
  width: clamp(74px, 7vw, 125px);
  height: clamp(28px, 2.4vw, 44px);
  margin-left: var(--barcode-left-space);
  margin-right: var(--barcode-right-space);
  flex-shrink: 0;
  background-color: var(--accent);
  background-image:
    repeating-linear-gradient(90deg,
      #050505 0 2px,
      transparent 2px 4px,
      #050505 4px 5px,
      transparent 5px 8px,
      #050505 8px 11px,
      transparent 11px 14px);
  box-shadow: 0 0 0 var(--barcode-mask-space) var(--accent);
}

.yellow-banner__barcode::before {
  content: none;
}

.yellow-banner__barcode::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 50%;
  width: 13px;
  height: 13px;
  background: #050505;
  transform: translateY(-50%);
  clip-path: polygon(50% 0%,
      58% 42%,
      100% 50%,
      58% 58%,
      50% 100%,
      42% 58%,
      0% 50%,
      42% 42%);
}

.yellow-banner__track {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: yellowBannerMove 24s linear infinite;
}

.yellow-banner__row {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.8vw, 54px);
  padding-right: clamp(24px, 2.8vw, 54px);
}

.yellow-banner__row span {
  font-size: clamp(12px, 0.95vw, 18px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: clamp(1.2px, 0.16vw, 3px);
  text-transform: uppercase;
}

.yellow-banner__row i {
  width: clamp(13px, 1vw, 19px);
  height: clamp(13px, 1vw, 19px);
  flex-shrink: 0;
  background: #050505;
  clip-path: polygon(50% 0%,
      58% 42%,
      100% 50%,
      58% 58%,
      50% 100%,
      42% 58%,
      0% 50%,
      42% 42%);
}

@keyframes yellowBannerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.yellow-banner:hover .yellow-banner__track {
  animation-play-state: paused;
}

@media (max-width: 560px) {
  .yellow-banner {
    height: 56px;
  }

  .yellow-banner__barcode {
    --barcode-left-space: 14px;
    --barcode-right-space: 28px;
    width: 64px;
  }

  .yellow-banner__row {
    gap: 24px;
  }
}

/* =========================
   FOOTER
========================= */

.site-footer {
  position: relative;
  z-index: 12;
  width: 100%;
  padding: clamp(34px, 3.4vw, 64px) 22px clamp(28px, 2.8vw, 54px);
  background:
    radial-gradient(circle at 8% 12%, rgba(201, 255, 0, 0.08), transparent 18%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
  color: var(--white);
  overflow: hidden;
}

.site-footer__inner {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 0.9fr 1.05fr;
  gap: clamp(26px, 3vw, 64px);
  align-items: start;
}

.site-footer__inner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(244, 241, 236, 0.16),
      transparent);
  pointer-events: none;
}

.site-footer__brand,
.site-footer__navigation,
.site-footer__socials,
.site-footer__legal {
  position: relative;
  min-width: 0;
}

.site-footer__brand::after,
.site-footer__navigation::after,
.site-footer__socials::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(clamp(13px, 1.5vw, 32px) * -1);
  width: 1px;
  height: clamp(86px, 7vw, 132px);
  background: rgba(244, 241, 236, 0.12);
}

/* LOGO */

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  min-height: 80px;
}

.site-footer__logo-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.site-footer__logo>span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.site-footer__logo strong {
  display: block;
  color: var(--white);
  font-size: 30px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 9px;
}

.site-footer__logo small {
  display: block;
  margin-top: 8px;
  padding-left: 0;
  color: rgba(244, 241, 236, 0.62);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 4px;
}

.site-footer__brand p {
  margin-top: clamp(22px, 1.7vw, 34px);
  padding-left: 18px;
  max-width: 380px;
  color: rgba(244, 241, 236, 0.48);
  font-size: clamp(12px, 0.86vw, 15px);
  line-height: 1.55;
  font-weight: 500;
}

/* HEADINGS */

.site-footer h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(12px, 0.86vw, 16px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-footer__navigation {
  padding-left: clamp(18px, 1.6vw, 34px);
}

.site-footer__navigation h3 {
  margin-bottom: clamp(22px, 1.7vw, 32px);
}

.site-footer__navigation nav {
  width: min(100%, 310px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(22px, 2vw, 38px);
  row-gap: clamp(12px, 0.9vw, 17px);
}

.site-footer__navigation a {
  position: relative;
  width: fit-content;
  padding-left: 17px;
  color: rgba(244, 241, 236, 0.58);
  font-size: clamp(10px, 0.72vw, 13px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.78px;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.site-footer__navigation a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 1px;
  background: rgba(201, 255, 0, 0.46);
  transform: translateY(-50%);
  box-shadow: 0 0 7px rgba(201, 255, 0, 0.12);
  transition:
    width 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.site-footer__navigation a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.site-footer__navigation a:hover::before {
  width: 11px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(201, 255, 0, 0.28);
}

/* SOCIALS */

.site-footer__socials {
  text-align: left;
}

.site-footer__socials h3 {
  text-align: left;
}

.site-footer__icons {
  width: 100%;
  margin-top: clamp(28px, 2.1vw, 42px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 2.35vw, 46px);
}

.site-footer__icons a {
  color: rgba(244, 241, 236, 0.52);
  font-size: clamp(19px, 1.45vw, 27px);
  line-height: 1;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    filter 0.3s ease;
}

.site-footer__icons a:hover {
  color: var(--accent);
  transform: translateY(-3px);
  filter: drop-shadow(0 0 10px rgba(201, 255, 0, 0.38));
}

/* INFORMATION / LEGAL LINKS */

.site-footer__legal {
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding-left: clamp(4px, 0.6vw, 12px);
  text-align: left;
}

.site-footer__legal h3 {
  margin-bottom: clamp(22px, 1.7vw, 32px);
}

.site-footer__legal nav {
  display: grid;
  justify-items: start;
  gap: clamp(12px, 0.9vw, 17px);
  width: 100%;
}

.site-footer__legal a {
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding-left: 17px;
  color: rgba(244, 241, 236, 0.58);
  font-size: clamp(10px, 0.72vw, 13px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.78px;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.site-footer__legal a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 1px;
  background: rgba(201, 255, 0, 0.46);
  transform: translateY(-50%);
  box-shadow: 0 0 7px rgba(201, 255, 0, 0.12);
  transition:
    width 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.site-footer__legal a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.site-footer__legal a:hover::before {
  width: 11px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(201, 255, 0, 0.28);
}

/* COPYRIGHT BAR */

.site-footer__bottom {
  position: relative;
  width: 100%;
  margin-top: clamp(34px, 3vw, 58px);
  padding-top: clamp(18px, 1.45vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(244, 241, 236, 0.12);
}

.site-footer__bottom::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: clamp(42px, 4vw, 78px);
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(201, 255, 0, 0.22);
}

.site-footer__bottom p,
.site-footer__bottom span {
  margin: 0;
  color: rgba(244, 241, 236, 0.42);
  font-size: clamp(9px, 0.66vw, 12px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.site-footer__bottom span {
  color: rgba(244, 241, 236, 0.28);
  text-align: right;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand::after,
  .site-footer__navigation::after,
  .site-footer__socials::after {
    display: none;
  }

  .site-footer__legal {
    justify-self: start;
    align-items: flex-start;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__brand p {
    padding-left: 0;
  }

  .site-footer__navigation {
    padding-left: 0;
  }

  .site-footer__navigation nav {
    width: min(100%, 320px);
  }

  .site-footer__icons {
    width: 100%;
    margin-top: clamp(26px, 6vw, 34px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
  }

  .site-footer__legal {
    justify-self: start;
    align-items: flex-start;
    padding-left: 0;
  }

  .site-footer__bottom {
    margin-top: 38px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-footer__bottom span {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* =========================================================
   WORLD STATS
========================================================= */

@media (min-width: 1101px) {

  .world-card + .world-card::after {
    content: none;
    display: none;
  }
}

@media (max-width: 1100px) {

  .world-card + .world-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    z-index: 40;
    display: block;
    width: auto;
    height: 18px;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg%20width='1000'%20height='18'%20viewBox='0%200%201000%2018'%20preserveAspectRatio='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M470%201L500%2017L530%201Z'%20fill='%23080808'/%3E%3Cpath%20d='M0%201H470M530%201H1000'%20fill='none'%20stroke='%23f4f1ec'%20stroke-opacity='.18'%20stroke-width='1'%20vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 18px;
    filter: none;
  }
}

/* =========================
   THE NETWORK
========================= */

.network-section {
  position: relative;
  width: 100%;
  min-height: clamp(620px, 42vw, 760px);
  isolation: isolate;
  color: var(--white);
}

.network-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(244, 241, 236, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(244, 241, 236, 0.018) 1px, transparent 1px);
  background-size: 108px 108px;
  opacity: 0.18;
  mask-image: linear-gradient(90deg, transparent 0%, #000 39%, #000 100%);
}

.network-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.04;
  mix-blend-mode: screen;
}

.network-section__intro {
  position: relative;
  z-index: 8;
  min-height: inherit;
  padding: clamp(72px, 6.5vw, 118px) clamp(30px, 3.2vw, 60px) clamp(68px, 5.5vw, 100px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.network-section__intro::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
}

.network-section__title {
  max-width: 390px;
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(44px, 4vw, 74px);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: clamp(3px, 0.38vw, 7px);
  text-transform: uppercase;
}

.network-section__title span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 241, 236, 0.58);
  text-shadow: 0 0 26px rgba(201, 255, 0, 0.055);
}

.network-section__visual {
  position: relative;
  min-width: 0;
  min-height: inherit;
  overflow: hidden;
}

.network-section__visual::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  width: min(52vw, 790px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(201, 255, 0, 0.065) 0%,
      rgba(201, 255, 0, 0.022) 34%,
      transparent 67%);
  transform: translate(-50%, -50%);
  filter: blur(8px);
  pointer-events: none;
}

.network-section__visual::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  width: min(40vw, 610px);
  aspect-ratio: 1.65;
  border: 1px solid rgba(244, 241, 236, 0.045);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  box-shadow: 0 0 0 48px rgba(244, 241, 236, 0.008);
  pointer-events: none;
}

.network-section__lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.network-section__connection {
  fill: none;
  stroke: rgba(244, 241, 236, 0.14);
  stroke-width: 0.85;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  opacity: 0.7;
  transition: stroke 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

.network-section__connection.is-active {
  stroke: rgba(201, 255, 0, 0.72);
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(201, 255, 0, 0.36));
}

.network-section__visual.has-focus .network-section__connection:not(.is-active) {
  opacity: 0.14;
}

.network-section__sparks {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.network-section__spark {
  position: absolute;
  width: var(--spark-size, 2px);
  height: var(--spark-size, 2px);
  border-radius: 50%;
  background: var(--spark-color, rgba(244, 241, 236, 0.65));
  box-shadow: 0 0 7px currentColor;
  opacity: var(--spark-opacity, 0.35);
  animation: networkSpark var(--spark-duration, 4s) ease-in-out infinite;
  animation-delay: var(--spark-delay, 0s);
}

@keyframes networkSpark {
  0%, 100% { opacity: calc(var(--spark-opacity, 0.35) * 0.32); transform: scale(0.72); }
  50% { opacity: var(--spark-opacity, 0.35); transform: scale(1.12); }
}

.network-section__hub,
.network-section__node {
  position: absolute;
  z-index: 6;
  left: var(--node-x);
  top: var(--node-y);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.network-section__hub {
  --node-x: 52%;
  --node-y: 50%;
  width: clamp(145px, 11vw, 190px);
  height: clamp(145px, 11vw, 190px);
  display: grid;
  place-items: center;
}

.network-section__hub-orbit,
.network-section__hub-orbit::before,
.network-section__hub-orbit::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 255, 0, 0.28);
  box-shadow: inset 0 0 28px rgba(201, 255, 0, 0.055), 0 0 38px rgba(201, 255, 0, 0.09);
}

.network-section__hub-orbit { animation: networkOrbit 20s linear infinite; }
.network-section__hub-orbit::before,
.network-section__hub-orbit::after { content: ""; }
.network-section__hub-orbit::before { inset: 10%; border-color: rgba(244, 241, 236, 0.18); }
.network-section__hub-orbit::after { inset: -9%; border-style: dashed; border-color: rgba(201, 255, 0, 0.1); }

@keyframes networkOrbit { to { transform: rotate(360deg); } }

.network-section__hub-core {
  position: relative;
  z-index: 3;
  width: 64%;
  height: 64%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(244, 241, 236, 0.3);
  background: radial-gradient(circle at 50% 40%, rgba(201, 255, 0, 0.2), transparent 46%), #070807;
  box-shadow: 0 0 0 6px rgba(201, 255, 0, 0.028), 0 0 42px rgba(201, 255, 0, 0.16), inset 0 0 30px rgba(244, 241, 236, 0.03);
}

.network-section__hub-core img {
  width: 67%;
  height: 67%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.network-section__hub-label {
  position: absolute;
  left: 50%;
  top: calc(100% + 13px);
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
  transform: translateX(-50%);
}

.network-section__hub-label strong {
  color: var(--white);
  font-size: clamp(12px, 0.9vw, 16px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 2.8px;
}

.network-section__hub-label small {
  margin-top: 5px;
  color: var(--accent);
  font-size: 8px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.network-section__nodes {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.network-section__node {
  width: clamp(40px, 3.8vw, 64px);
  height: clamp(40px, 3.8vw, 64px);
  pointer-events: auto;
  cursor: default;
}

.network-section__node::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 255, 0, 0.09), transparent 70%);
  opacity: 0.45;
  transition: opacity 0.35s ease;
}

.network-section__node-orb {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 4px;
  display: block;
  border: 1px solid rgba(244, 241, 236, 0.23);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.82);
  box-shadow: 0 0 0 3px rgba(244, 241, 236, 0.02), 0 0 13px rgba(201, 255, 0, 0.055);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.network-section__node-orb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.72) contrast(1.08) brightness(0.7);
  transition: filter 0.4s ease;
}

.network-section__node-orb::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 31%, transparent 35%, rgba(0, 0, 0, 0.66) 100%);
  pointer-events: none;
}

.network-section__node-label {
  position: absolute;
  left: 50%;
  top: calc(100% + 7px);
  min-width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.network-section__node-label strong {
  color: rgba(244, 241, 236, 0.8);
  font-size: clamp(7px, 0.58vw, 10px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.network-section__node-label small {
  margin-top: 3px;
  color: rgba(201, 255, 0, 0.48);
  font-size: 6.5px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.network-section__node:hover,
.network-section__node.is-connected {
  z-index: 9;
  transform: translate(-50%, -50%) scale(1.1);
}

.network-section__node:hover::before,
.network-section__node.is-connected::before { opacity: 1; }

.network-section__node:hover .network-section__node-orb,
.network-section__node.is-connected .network-section__node-orb {
  border-color: rgba(201, 255, 0, 0.8);
  box-shadow: 0 0 0 4px rgba(201, 255, 0, 0.045), 0 0 20px rgba(201, 255, 0, 0.22);
  transform: rotate(2deg);
}

.network-section__node:hover .network-section__node-orb img,
.network-section__node.is-connected .network-section__node-orb img {
  filter: grayscale(0.12) contrast(1.08) brightness(0.94);
}

.network-section__visual.has-focus .network-section__node.is-muted,
.network-section__visual.has-focus .network-section__hub.is-muted {
  opacity: 0.25;
  filter: grayscale(1);
}

.network-section__hub.is-connected { transform: translate(-50%, -50%) scale(1.035); }

@media (max-width: 1100px) {
  .network-section { min-height: 700px; }
  .network-section__intro { padding-right: 32px; }
  .network-section__node-label { min-width: 88px; }
}

@media (max-width: 820px) {
  .network-section { min-height: auto; }
  .network-section__intro { min-height: auto; padding: 66px 0 34px; }
  .network-section__intro::after {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 255, 0, 0.22), rgba(244, 241, 236, 0.09), transparent);
  }
  .network-section__visual { min-height: 560px; }
  .network-section::before { mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%); }
}

@media (max-width: 560px) {
  .network-section__intro { padding-top: 52px; }
  .network-section__title { font-size: 45px; }
  .network-section__visual { min-height: 490px; margin: 0 -8px; }
  .network-section__hub {
    --node-x: 50%;
    --node-y: 49%;
    width: 124px;
    height: 124px;
  }
  .network-section__node { width: 43px; height: 43px; }
  .network-section__node-label { min-width: 76px; }
  .network-section__node-label small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .network-section__hub-orbit,
  .network-section__spark { animation: none !important; }
}

/* =========================
   WORLD STATS → THE NETWORK — SIGNAL BRIDGE
========================= */

/*
 STATS
 */
.world-stats {
  padding-bottom: clamp(70px, 6vw, 104px);
  overflow: visible;
  background:
    radial-gradient(circle at 50% 100%, rgba(201, 255, 0, 0.035), transparent 24%),
    radial-gradient(circle at 67% 100%, rgba(201, 255, 0, 0.02), transparent 30%),
    #050505;
}

.network-section {
  z-index: 12;
  margin-top: 0;
  padding: 0 22px clamp(34px, 3vw, 58px);
  overflow: visible;
  background: #050505;
}

.network-section::before,
.network-section::after {
  left: 22px;
  right: 22px;
  border-radius: 8px;
}

.network-section__intro {
  padding-left: clamp(22px, 2.4vw, 44px);
}

.network-section__intro::after {
  top: 10%;
  bottom: 10%;
  background: linear-gradient(180deg,
      transparent,
      rgba(244, 241, 236, 0.09) 16%,
      rgba(201, 255, 0, 0.18) 50%,
      rgba(244, 241, 236, 0.09) 84%,
      transparent);
}

.network-section__visual {
  padding-right: clamp(8px, 1.4vw, 26px);
}

@media (max-width: 900px) {
  .network-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .network-section::before,
  .network-section::after {
    left: 18px;
    right: 18px;
  }
}

@media (max-width: 820px) {
  .world-stats {
    padding-bottom: 72px;
  }

  .network-section__intro {
    padding-left: clamp(20px, 5vw, 34px);
    padding-right: clamp(20px, 5vw, 34px);
  }

  .network-section__visual {
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .world-stats {
    padding-bottom: 62px;
  }

  .network-section {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 28px;
  }

  .network-section::before,
  .network-section::after {
    left: 14px;
    right: 14px;
  }

  .network-section__intro {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  background-image: url("../assets/img/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

/* =========================================================
   TOP COUNTRIES — GLOBE / COMPACT VERTICAL ARROW
========================================================= */

/* =========================================================
   SHARED SOCIAL RAIL
========================================================= */
.social-bar--on-dark::before {
  background: rgba(244, 241, 236, 0.22);
}

.social-bar--on-dark a {
  color: rgba(244, 241, 236, 0.92);
}

.about-page-body .social-bar--on-dark a:hover { color: var(--about-accent); }
.artist-profile-page-body .social-bar--on-dark a:hover { color: var(--artist-profile-accent); }
.artists-page-body .social-bar--on-dark a:hover { color: var(--artists-accent); }
.downloads-body .social-bar--on-dark a:hover { color: var(--downloads-accent); }
.playlists-page-body .social-bar--on-dark a:hover { color: var(--playlists-accent); }
.releases-page-body .social-bar--on-dark a:hover { color: var(--releases-accent); }
.stats-page-body .social-bar--on-dark a:hover { color: var(--stats-accent); }

@media (max-width: 820px) {
  .social-bar {
    display: none;
  }
}

a.is-unconfigured-link,
a[aria-disabled="true"] {
  cursor: not-allowed;
}

/* ARTIST PROFILE LINK */
.artist-card__profile-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
}

.artist-card__profile-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.artist-card__socials {
  position: relative;
  z-index: 6;
}

/* DISABLED LANGUAGE CONTROL */
.language-btn:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.artists--reference,
.dashboard-section--reference {
  --home-edge: clamp(24px, 3.87vw, 72px);
  --artists-gap: clamp(12px, 0.97vw, 18px);
  --latest-gap: clamp(20px, 1.93vw, 36px);
  --overview-gap: clamp(12px, 0.75vw, 14px);
}

/* --------------------------------------------------------------------------
   OUR ARTISTS
   -------------------------------------------------------------------------- */
.artists.artists--reference {
  height: auto;
  min-height: 0;
  padding: 28px var(--home-edge) 34px;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(201, 255, 0, 0.045), transparent 23%),
    linear-gradient(180deg, #050505 0%, #070707 100%);
}

.artists.artists--reference::before {
  display: block;
}

.artists.artists--reference::after {
  display: block;
  height: 68px;
}

.artists--reference .artists__inner {
  width: min(100%, 1650px);
  margin: 0 auto 0 0;
}

.artists--reference .artists__header {
  height: 52px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 0;
}

.artists--reference .artists__title-group {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.artists--reference .artists__title-group h2 {
  padding-bottom: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(25px, 1.72vw, 32px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.artists--reference .artists__nav {
  margin: 0 0 10px;
  display: flex;
  gap: 12px;
}

.artists--reference .artists__btn {
  width: 38px;
  height: 38px;
  border-color: rgba(244, 241, 236, 0.3);
  font-size: 12px;
}

.artists--reference .artists__stage,
.artists--reference .artists__track {
  height: clamp(350px, 22.35vw, 416px);
  min-height: 0;
}

.artists--reference .artists__track {
  padding: 0;
  gap: var(--artists-gap);
  align-items: stretch;
  scroll-snap-type: none;
  scroll-padding-inline: 0;
  will-change: scroll-position;
}

.artists--reference .artist-card {
  flex: 0 0 calc((100% - (var(--artists-gap) * 4)) / 5);
  height: 100%;
  min-width: 0;
  opacity: 1;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 236, 0.11);
  border-radius: 0;
  background: #090909;
  scroll-snap-align: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.artists--reference .artist-card:hover,
.artists--reference .artist-card.is-center {
  z-index: 2;
  opacity: 1;
  border-color: rgba(201, 255, 0, 0.92);
  box-shadow:
    0 0 0 1px rgba(201, 255, 0, 0.12),
    0 0 24px rgba(201, 255, 0, 0.08);
  transform: none;
  filter: none;
}

.artists--reference .artist-card__media,
.artists--reference .artist-card__media::before,
.artists--reference .artist-card__media::after,
.artists--reference .artist-card__media img {
  clip-path: none;
}

.artists--reference .artist-card__media {
  inset: 0;
  background: #080808;
}

.artists--reference .artist-card__media::before {
  z-index: 2;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 54%, rgba(0, 0, 0, 0.96) 100%),
    radial-gradient(circle at 54% 16%, rgba(201, 255, 0, 0.04), transparent 34%);
}

.artists--reference .artist-card__media::after {
  z-index: 3;
  opacity: 0.62;
  background: linear-gradient(120deg, transparent 45%, rgba(201, 255, 0, 0.035) 52%, transparent 59%);
}

.artists--reference .artist-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.86) contrast(1.08) brightness(0.72);
}

.artists--reference .artist-card:hover .artist-card__media img,
.artists--reference .artist-card.is-center .artist-card__media img {
  transform: scale(1.025);
  filter: grayscale(0.55) contrast(1.12) brightness(0.84);
}

.artists--reference .artist-card__info {
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.artists--reference .artist-card__info h3 {
  margin-bottom: 9px;
  font-family: var(--font-display);
  font-size: clamp(24px, 1.72vw, 33px);
  font-weight: 500;
  letter-spacing: 0.65px;
}

.artists--reference .artist-card__country {
  gap: 9px;
  color: rgba(244, 241, 236, 0.68);
  font-size: 11px;
}

.artists--reference .artist-card__genre {
  margin-top: 8px;
  color: rgba(244, 241, 236, 0.54);
  font-size: 12px;
  letter-spacing: 1.05px;
}

/* --------------------------------------------------------------------------
   TWO HOME SECTIONS
   -------------------------------------------------------------------------- */
.dashboard-section.dashboard-section--reference {
  padding: 18px var(--home-edge) 24px;
  overflow: visible;
  background: #050505;
}

.dashboard-section--reference .dashboard-section__grid {
  width: min(100%, 1650px);
  margin: 0 auto 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.latest-release-block,
.home-overview-block {
  min-width: 0;
}

.dashboard-heading {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.dashboard-heading h2 {
  flex: 0 0 auto;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(22px, 1.5vw, 28px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dashboard-heading span {
  height: 1px;
  flex: 1 1 auto;
  background: linear-gradient(90deg, rgba(244, 241, 236, 0.22), rgba(244, 241, 236, 0.04));
}

.latest-release-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(0, 1fr);
  gap: var(--latest-gap);
  align-items: stretch;
}

.dashboard-section--reference .now-playing-panel,
.dashboard-section--reference .releases-panel {
  --release-square: clamp(360px, 23.42vw, 436px);
  height: var(--release-square);
  border-radius: 0;
}

/* Player panel */
.dashboard-section--reference .now-playing-panel {
  width: 100%;
  min-width: 0;
  max-width: none;
  justify-self: stretch;
  display: grid;
  grid-template-columns: var(--release-square) minmax(0, 1fr);
  grid-template-rows: 56px 1fr;
  overflow: hidden;
}

.dashboard-section--reference .now-playing-panel::before,
.dashboard-section--reference .now-playing-panel::after {
  content: none;
  display: none;
}

.dashboard-section--reference .now-playing-panel__bg {
  position: relative;
  inset: auto;
  grid-column: 1;
  grid-row: 1 / 3;
  width: var(--release-square);
  height: var(--release-square);
  aspect-ratio: 1 / 1;
  border-right: 1px solid rgba(244, 241, 236, 0.08);
}

.dashboard-section--reference .now-playing-panel__bg::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(105deg, transparent 38%, rgba(201, 255, 0, 0.18) 49%, transparent 60%);
}

.dashboard-section--reference .now-playing-panel__bg img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.34) contrast(1.12) brightness(0.82);
  transform: none;
}

.dashboard-section--reference .now-playing-panel__top {
  grid-column: 2;
  grid-row: 1;
  height: auto;
  padding: 20px 24px 0;
  display: flex;
  align-items: flex-start;
}

.dashboard-section--reference .now-playing-panel__top p {
  order: -1;
  margin: 2px 0 0;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 1.5px;
}

.dashboard-section--reference .now-playing-panel__content {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
  padding: 14px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dashboard-section--reference .now-playing-panel__song h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 2.62vw, 49px);
  letter-spacing: 0.4px;
}

.dashboard-section--reference .now-playing-panel__song p {
  margin-top: 8px;
  font-size: 14px;
}

.dashboard-section--reference .now-playing-panel__wave {
  width: 100%;
  height: 48px;
  margin-top: 18px;
}

.dashboard-section--reference .now-playing-panel__progress {
  margin-top: 8px;
}

.dashboard-section--reference .now-playing-panel__controls {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
  gap: clamp(18px, 1.55vw, 29px);
}

.dashboard-section--reference .now-playing-panel__controls .is-main {
  width: 54px;
  height: 54px;
  color: #050505;
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 24px rgba(201, 255, 0, 0.22);
}

/* Track list */
.dashboard-section--reference .releases-panel {
  --release-x: clamp(16px, 1.29vw, 24px);
  padding: 0;
  border-color: rgba(244, 241, 236, 0.08);
}

.dashboard-section--reference .releases-panel__head {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.dashboard-section--reference .releases-panel__list {
  margin: 0;
}

.dashboard-section--reference .release-item {
  column-gap: 12px;
  padding-inline: var(--release-x);
}

.dashboard-section--reference .release-item__cover,
.dashboard-section--reference .release-item__wave {
  display: none !important;
}

.dashboard-section--reference .release-item__play {
  font-size: 6px;
}

.dashboard-section--reference .release-item__time {
  font-size: 10px;
}

.dashboard-section--reference .release-item__num {
  font-size: 18px;
}

.dashboard-section--reference .release-item__text h3 {
  font-size: clamp(12px, 0.8vw, 15px);
}

/* Playlist */
.home-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(0, 1fr);
  gap: var(--overview-gap);
  align-items: stretch;
}

.dashboard-section--reference .playlists-panel,
.dashboard-section--reference .stats-overview-panel {
  width: 100%;
  min-height: 365px;
  border: 1px solid rgba(244, 241, 236, 0.08);
  border-radius: 0;
  background: #070707;
  box-shadow: none;
}

.dashboard-section--reference .playlists-panel {
  --playlist-x: clamp(20px, 1.72vw, 32px);
  --playlist-head: 48px;
  height: 365px;
  padding: 18px var(--playlist-x) 18px;
}

.dashboard-section--reference .playlists-panel__head {
  height: var(--playlist-head);
  align-items: flex-start;
  border-bottom: 1px solid rgba(244, 241, 236, 0.08);
}

.dashboard-section--reference .playlists-panel__head h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}

.dashboard-section--reference .playlists-panel__head a {
  color: var(--accent);
}

.dashboard-section--reference .playlists-panel__list {
  height: calc(100% - var(--playlist-head));
  margin: 0;
  padding-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.61vw, 30px);
}

.dashboard-section--reference .playlist-item {
  height: auto;
  min-width: 0;
  padding: 0;
  display: block;
  background: transparent;
}

.dashboard-section--reference .playlist-item::before {
  content: none;
  display: none;
}

.dashboard-section--reference .playlist-item__cover {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 236, 0.06);
}

.dashboard-section--reference .playlist-item__cover img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.dashboard-section--reference .playlist-item__text {
  padding-top: 10px;
}

.dashboard-section--reference .playlist-item__text h3 {
  margin-bottom: 6px;
  font-size: clamp(11px, 0.72vw, 14px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-section--reference .playlist-item__text p,
.dashboard-section--reference .playlist-item__text span {
  font-size: 9px;
}

.dashboard-section--reference .playlist-item__text span {
  display: none;
}

.dashboard-section--reference .stats-overview-panel {
  height: auto;
}

/* --------------------------------------------------------------------------
   MAP
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .artists--reference .artist-card {
    flex-basis: calc((100% - (var(--artists-gap) * 3)) / 4);
    min-width: 220px;
  }

  .latest-release-layout,
  .home-overview-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-section--reference .releases-panel {
    height: 390px;
  }

  .dashboard-section--reference .playlists-panel {
    height: auto;
    min-height: 365px;
  }
}

@media (max-width: 820px) {
  .artists.artists--reference {
    padding-left: 20px;
    padding-right: 20px;
  }

  .artists--reference .artist-card {
    flex-basis: calc((100% - 12px) / 2.35);
    min-width: 210px;
  }

  .dashboard-section.dashboard-section--reference {
    padding-left: 18px;
    padding-right: 18px;
  }

  .dashboard-section--reference .now-playing-panel {
    --release-square: clamp(300px, 46vw, 360px);
  }

  .dashboard-section--reference .playlists-panel__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .artists--reference .artists__header {
    align-items: flex-end;
  }

  .artists--reference .artists__title-group {
    display: block;
  }

  .artists--reference .artist-card {
    flex-basis: 76vw;
    min-width: 230px;
  }

  .dashboard-section--reference .now-playing-panel {
    --release-square: min(100%, 360px);
    height: auto;
    min-height: 650px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 50px 1fr;
  }

  .dashboard-section--reference .now-playing-panel__bg {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 241, 236, 0.08);
  }

  .dashboard-section--reference .now-playing-panel__top {
    grid-column: 1;
    grid-row: 2;
    padding: 16px 20px 0;
  }

  .dashboard-section--reference .now-playing-panel__content {
    grid-column: 1;
    grid-row: 3;
    padding: 14px 20px 24px;
  }

  .dashboard-section--reference .release-item {
    grid-template-columns: 30px minmax(0, 1fr) 42px 20px;
    column-gap: 8px;
  }

  .dashboard-section--reference .playlists-panel__list {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   ARTIST SOCIAL MEDIA
   -------------------------------------------------------------------------- */
.artists--reference .artist-card__socials {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
}

.artists--reference .artist-card__socials a:hover,
.artists--reference .artist-card__socials a:focus-visible {
  border-color: rgba(201, 255, 0, 0.7);
}

/* ========================================================================== 
   COUNTRY FLAG ALIGNMENT + TRACK-LIST EQUALIZER
   ========================================================================== */

.artists--reference .artist-card__country {
  display: inline-flex;
  align-items: center;
  min-height: 14px;
  line-height: 14px;
}

.artists--reference .artist-card__country img {
  width: 16px;
  height: 11px;
  flex: 0 0 16px;
  object-fit: cover;
  object-position: center;
  align-self: center;
  transform: translateY(-0.5px);
}

.artists--reference .artist-card__country span {
  display: block;
  line-height: 14px;
}

.dashboard-section--reference .release-item__play {
  color: inherit;
}

.dashboard-section--reference .release-item.is-active .release-item__play {
  border: 0;
  color: var(--accent);
  background: transparent;
  box-shadow: none;
}

.release-item__equalizer {
  gap: 2px;
}

.release-item__equalizer i {
  width: 2px;
  height: 5px;
  display: block;
  border-radius: 999px;
  background: rgba(244, 241, 236, 0.34);
  transform-origin: center bottom;
  animation: none;
}

.release-item__equalizer i:nth-child(2) {
  height: 9px;
}

.release-item__equalizer i:nth-child(3) {
  height: 13px;
}

.release-item__equalizer i:nth-child(4) {
  height: 7px;
}
/* ========================================================================== 
   CONTINUOUS TRACK EQUALIZER + LARGER BORDERLESS ARTIST SOCIALS
   ========================================================================== */

.artists--reference .artist-card__socials {
  margin-top: 15px;
  gap: 13px;
}

.artists--reference .artist-card__socials a {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(244, 241, 236, 0.82);
  font-size: 19px;
  line-height: 1;
  transition:
    color 0.22s ease,
    transform 0.22s ease,
    filter 0.22s ease;
}

.artists--reference .artist-card__socials a:hover,
.artists--reference .artist-card__socials a:focus-visible {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--accent);
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 0 7px rgba(201, 255, 0, 0.35));
}

.artists--reference .artist-card__socials a:focus-visible {
  outline: 1px solid rgba(201, 255, 0, 0.7);
  outline-offset: 3px;
}

.release-item__equalizer {
  width: 22px;
  height: 19px;
  display: grid;
  grid-template-columns: repeat(4, 3px);
  align-items: end;
  justify-content: center;
  column-gap: 2.5px;
  overflow: visible;
}

.release-item__equalizer i,
.release-item__equalizer i:nth-child(2),
.release-item__equalizer i:nth-child(3),
.release-item__equalizer i:nth-child(4) {
  width: 3px;
  height: 18px;
  display: block;
  border-radius: 1px 1px 0 0;
  background: rgba(244, 241, 236, 0.32);
  box-shadow: none;
  transform-origin: 50% 100%;
  transform: scaleY(0.25);
  will-change: transform, opacity;
  animation: none;
}

.release-item__equalizer i:nth-child(2) { transform: scaleY(0.52); }
.release-item__equalizer i:nth-child(3) { transform: scaleY(0.78); }
.release-item__equalizer i:nth-child(4) { transform: scaleY(0.38); }

.release-item.is-active .release-item__equalizer i {
  background: linear-gradient(180deg, #e9ff87 0%, var(--accent) 48%, #8fb800 100%);
  box-shadow: 0 0 6px rgba(201, 255, 0, 0.32);
}

.release-item.is-active.is-playing .release-item__equalizer i {
  animation: syncrewMeterOne 0.56s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.release-item.is-active.is-playing .release-item__equalizer i:nth-child(2) {
  animation-name: syncrewMeterTwo;
  animation-duration: 0.43s;
  animation-delay: -0.24s;
}

.release-item.is-active.is-playing .release-item__equalizer i:nth-child(3) {
  animation-name: syncrewMeterThree;
  animation-duration: 0.62s;
  animation-delay: -0.41s;
}

.release-item.is-active.is-playing .release-item__equalizer i:nth-child(4) {
  animation-name: syncrewMeterFour;
  animation-duration: 0.48s;
  animation-delay: -0.13s;
}

@keyframes syncrewMeterOne {
  0%   { transform: scaleY(0.22); opacity: 0.72; }
  34%  { transform: scaleY(0.86); opacity: 1; }
  68%  { transform: scaleY(0.46); opacity: 0.86; }
  100% { transform: scaleY(1); opacity: 1; }
}

@keyframes syncrewMeterTwo {
  0%   { transform: scaleY(0.72); opacity: 0.9; }
  28%  { transform: scaleY(0.3); opacity: 0.75; }
  62%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.5); opacity: 0.86; }
}

@keyframes syncrewMeterThree {
  0%   { transform: scaleY(0.38); opacity: 0.78; }
  42%  { transform: scaleY(1); opacity: 1; }
  73%  { transform: scaleY(0.26); opacity: 0.72; }
  100% { transform: scaleY(0.82); opacity: 0.96; }
}

@keyframes syncrewMeterFour {
  0%   { transform: scaleY(0.92); opacity: 1; }
  36%  { transform: scaleY(0.4); opacity: 0.8; }
  70%  { transform: scaleY(0.72); opacity: 0.92; }
  100% { transform: scaleY(0.2); opacity: 0.7; }
}

@media (max-width: 760px) {
  .artists--reference .artist-card__socials {
    margin-top: 13px;
    gap: 11px;
  }

  .artists--reference .artist-card__socials a {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
    font-size: 17px;
  }
}

.artists.artists--reference,
.dashboard-section.dashboard-section--reference,
.artists--reference .artist-card,
.artists--reference .artist-card__media,
.dashboard-section--reference .now-playing-panel,
.dashboard-section--reference .releases-panel,
.dashboard-section--reference .playlists-panel,
.dashboard-section--reference .stats-overview-panel {
  background: #111211;
}

.dashboard-section--reference .release-item {
  grid-template-columns: 40px minmax(0, 1fr) auto;
}

.dashboard-section--reference .release-item__meta {
  grid-column: 3;
  grid-row: 1;
  min-width: 86px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  align-self: center;
  line-height: 1;
}

.dashboard-section--reference .release-item__time {
  grid-column: auto;
  grid-row: auto;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  line-height: 1;
}

.dashboard-section--reference .release-item__play {
  grid-column: auto;
  grid-row: auto;
  width: 22px;
  height: 18px;
  min-width: 22px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex: 0 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.dashboard-section--reference .release-item__equalizer,
.dashboard-section--reference .release-item.is-active .release-item__equalizer,
.dashboard-section--reference .release-item:not(.is-active) .release-item__equalizer {
  width: 22px;
  height: 12px;
  min-height: 12px;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 3px);
  column-gap: 2.5px;
  align-items: end;
  justify-content: center;
  align-self: center;
  transform: none;
  overflow: visible;
}

.dashboard-section--reference .release-item.is-active .release-item__equalizer i,
.dashboard-section--reference .release-item.is-active .release-item__equalizer i:nth-child(2),
.dashboard-section--reference .release-item.is-active .release-item__equalizer i:nth-child(3),
.dashboard-section--reference .release-item.is-active .release-item__equalizer i:nth-child(4) {
  width: 3px;
  height: 12px;
  align-self: end;
  transform-origin: 50% 100%;
}

.dashboard-section--reference .release-item:not(.is-active) .release-item__equalizer i,
.dashboard-section--reference .release-item:not(.is-active) .release-item__equalizer i:nth-child(2),
.dashboard-section--reference .release-item:not(.is-active) .release-item__equalizer i:nth-child(3),
.dashboard-section--reference .release-item:not(.is-active) .release-item__equalizer i:nth-child(4) {
  width: 4px;
  height: 4px;
  align-self: end;
  border-radius: 1px;
  background: rgba(244, 241, 236, 0.28);
  transform: none;
  animation: none;
  box-shadow: none;
}

.dashboard-section--reference .release-item__equalizer,
.dashboard-section--reference .release-item.is-active .release-item__equalizer,
.dashboard-section--reference .release-item:not(.is-active) .release-item__equalizer {
  position: relative;
  top: -4px;
}

.dashboard-section--reference .latest-release-block > .dashboard-heading {
  width: 56.5%;
}

.dashboard-section--reference .latest-release-block > .dashboard-heading span {
  background: rgba(244, 241, 236, 0.18);
}

.dashboard-section--reference .now-playing-panel {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.dashboard-section--reference .now-playing-panel__bg {
  box-sizing: border-box;
  border: 1px solid rgba(244, 241, 236, 0.10);
}

.dashboard-section--reference .now-playing-panel__progress {
  display: none;
}

.dashboard-section--reference .now-playing-panel__time {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  color: rgba(244, 241, 236, 0.62);
  font-size: 10px;
  line-height: 1;
}

.dashboard-section--reference .now-playing-panel__time span:first-child::after {
  content: " /";
}

.dashboard-section--reference .releases-panel {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.dashboard-section--reference .releases-panel::before {
  content: none;
  display: none;
}

.dashboard-section--reference .release-item {
  height: 20%;
  border: 0;
  box-shadow: none;
}

.dashboard-section--reference .release-item::before {
  left: 0;
  right: 0;
  background: rgba(244, 241, 236, 0.075);
}

.dashboard-section--reference .release-item.is-active {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.dashboard-section--reference .release-item.is-active .release-item__text h3 {
  color: var(--accent);
}

.dashboard-section--reference .release-item.is-active .release-item__num {
  color: rgba(244, 241, 236, 0.48);
}

.dashboard-section--reference .release-item.is-active .release-item__time {
  color: rgba(244, 241, 236, 0.72);
}

.dashboard-section--reference .releases-panel__view-all {
  padding-left: var(--release-x);
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-section--reference .releases-panel__view-all i {
  transition: transform 0.25s ease;
}

.dashboard-section--reference .releases-panel__view-all:hover i,
.dashboard-section--reference .releases-panel__view-all:focus-visible i {
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .dashboard-section--reference .latest-release-block > .dashboard-heading {
    width: 100%;
  }
}

/* ==========================================================================
   PLAYER SURFACE, LARGER RELEASE LINK, CLICKABLE PLAYLIST CARDS
   ========================================================================== */

.dashboard-section--reference .now-playing-panel {
  background: #111211;
}

.dashboard-section--reference .releases-panel__list {
  height: calc(100% - 56px);
}

.dashboard-section--reference .releases-panel__view-all {
  min-height: 56px;
  height: 56px;
  padding: 0 var(--release-x);
  gap: 16px;
  font-size: 13px;
  letter-spacing: 0.75px;
}

.dashboard-section--reference .releases-panel__view-all i {
  font-size: 13px;
}

.dashboard-section--reference .playlist-item {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.dashboard-section--reference .playlist-item:focus-visible {
  outline: 1px solid rgba(201, 255, 0, 0.82);
  outline-offset: 5px;
}

/* ==========================================================================
   GLOBAL REACH + THE NETWORK
   ========================================================================== */
.reach-network-section.reach-network-section--split {
  --reach-panel-bg: #111211;
  --reach-divider: rgba(244, 241, 236, 0.09);
  --reach-pad-x: clamp(22px, 2vw, 34px);

  position: relative;
  z-index: 12;
  width: 100%;
  padding: 18px var(--home-edge, clamp(24px, 3.87vw, 72px)) 34px;
  overflow: visible;
  color: var(--white);
  background: var(--reach-panel-bg);
}

.reach-network-section--split::before,
.reach-network-section--split::after {
  content: none;
  display: none;
}

.reach-network-section__inner {
  position: relative;
  width: min(100%, 1650px);
  min-width: 0;
  min-height: 530px;
  margin: 0 auto 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--reach-divider);
  border-radius: 0;
  background: var(--reach-panel-bg);
  box-shadow: none;
  isolation: isolate;
}

.reach-network-section__network,
.reach-network-section__map.world-card--map {
  position: relative;
  min-width: 0;
  min-height: 530px;
  background: var(--reach-panel-bg);
}

.reach-network-section__network::after {
  content: none;
  display: none;
}

/* THE NETWORK */
.reach-network-section__network {
  padding: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}

.reach-network-section__network .network-section__intro {
  position: relative;
  z-index: 10;
  min-height: 0;
  padding: 24px var(--reach-pad-x) 12px;
  display: block;
}

.reach-network-section__network .network-section__intro::after {
  content: none;
  display: none;
}

.network-section__heading-row {
  min-height: 46px;
  padding-bottom: 13px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--reach-divider);
}

.reach-network-section__network .network-section__title {
  max-width: none;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.reach-network-section__network .network-section__title span {
  display: inline;
  color: inherit;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.reach-network-section__network .network-section__visual {
  position: relative;
  min-width: 0;
  min-height: 410px;
  margin: 0 10px 10px;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.reach-network-section__network .network-section__visual::before {
  left: 50%;
  top: 49%;
  width: min(42vw, 520px);
  background: radial-gradient(circle,
    rgba(201, 255, 0, 0.055) 0%,
    rgba(201, 255, 0, 0.018) 36%,
    transparent 69%);
}

.reach-network-section__network .network-section__visual::after {
  left: 50%;
  top: 49%;
  width: min(33vw, 410px);
  border-color: rgba(244, 241, 236, 0.05);
  box-shadow: 0 0 0 42px rgba(244, 241, 236, 0.006);
}

.reach-network-section__network .network-section__lines {
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.reach-network-section__network .network-section__hub {
  --node-x: 50%;
  --node-y: 49%;
  width: clamp(116px, 8.8vw, 150px);
  height: clamp(116px, 8.8vw, 150px);
}

.reach-network-section__network .network-section__node {
  width: clamp(40px, 3.05vw, 52px);
  height: clamp(40px, 3.05vw, 52px);
  outline: none;
}

.reach-network-section__network .network-section__node:focus-visible .network-section__node-orb {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(201, 255, 0, 0.12), 0 0 22px rgba(201, 255, 0, 0.18);
}

.reach-network-section__network .network-section__hub-label {
  top: calc(100% + -10px);
}

.reach-network-section__network .network-section__hub-label strong {
  font-size: clamp(10px, 0.74vw, 13px);
}

.reach-network-section__network .network-section__hub-label small {
  font-size: 7px;
}

.reach-network-section__network .network-section__node-label {
  top: calc(100% + 5px);
  min-width: 82px;
}

.reach-network-section__network .network-section__node-label strong {
  font-size: clamp(7px, 0.5vw, 9px);
}

.reach-network-section__network .network-section__node-label small {
  margin-top: 3px;
  font-size: 6px;
}

/* WORLD MAP */
.reach-network-section__map.world-card--map {
  width: 100%;
  padding: 24px var(--reach-pad-x) 66px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.reach-network-section__map.world-card--map::before,
.reach-network-section__map.world-card--map::after {
  content: none;
  display: none;
}

.reach-network-section__map .world-card__head {
  min-height: 46px;
  padding-bottom: 13px;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--reach-divider);
}

.reach-network-section__map .world-card__head h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.reach-network-section__map .world-map {
  width: min(82%, 520px);
  margin: clamp(48px, 4vw, 68px) auto 0;
}

.reach-network-section__map .world-card__link {
  left: var(--reach-pad-x);
  right: auto;
  bottom: 24px;
}

@media (max-width: 1120px) {
  .reach-network-section__inner {
    grid-template-columns: 1fr;
  }

  .reach-network-section__network,
  .reach-network-section__map.world-card--map {
    min-height: 510px;
  }

  .reach-network-section__network::after {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: 1px;
  }

  .reach-network-section__network .network-section__visual {
    min-height: 400px;
  }

  .reach-network-section__network .network-section__visual::before {
    width: min(72vw, 620px);
  }

  .reach-network-section__network .network-section__visual::after {
    width: min(56vw, 490px);
  }
}

@media (max-width: 620px) {
  .reach-network-section.reach-network-section--split {
    --reach-pad-x: 20px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .reach-network-section__inner {
    min-height: 0;
  }

  .network-section__heading-row {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .reach-network-section__network,
  .reach-network-section__map.world-card--map {
    min-height: 0;
  }

  .reach-network-section__network .network-section__visual {
    min-height: 370px;
    margin-inline: 0;
  }

  .reach-network-section__network .network-section__hub {
    width: 108px;
    height: 108px;
  }

  .reach-network-section__network .network-section__node {
    width: 39px;
    height: 39px;
  }

  .reach-network-section__network .network-section__node-label {
    min-width: 68px;
  }

  .reach-network-section__network .network-section__node-label small {
    display: none;
  }

  .reach-network-section__map.world-card--map {
    min-height: 420px;
    padding-bottom: 62px;
  }

  .reach-network-section__map .world-map {
    width: min(88%, 390px);
    margin-top: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reach-network-section__network .network-section__hub-orbit,
  .reach-network-section__network .network-section__spark {
    animation: none !important;
  }
}

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */
.dashboard-section--reference .playlists-panel__head,
.reach-network-section__network .network-section__heading-row,
.reach-network-section__map .world-card__head {
  border-bottom: 0 !important;
}
/* ========================================================================== 
   ACTIVE TRACK BACKGROUND
   ========================================================================== */

.dashboard-section--reference .release-item.is-active {
  background: linear-gradient(90deg, rgba(201, 255, 0, 0.22), rgba(201, 255, 0, 0.055));
}
.content-gradient-zone {
  position: relative;
  width: 100%;
  isolation: isolate;
  background: #111211;
}

.content-gradient-zone > .artists.artists--reference {
  background: linear-gradient(
    180deg,
    #050505 0%,
    #050505 50%,
    #080908 64%,
    #0c0d0c 78%,
    #111211 100%
  );
}

.content-gradient-zone > .dashboard-section.dashboard-section--reference,
.content-gradient-zone > .reach-network-section.reach-network-section--split {
  background: transparent;
}

/* ==========================================================================
   FULL INTERACTIVE WORLD MAP MODAL
   ========================================================================== */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.full-map-is-open {
  overflow: hidden;
}

.full-map-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 32px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0s linear 0.28s;
}

.full-map-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.full-map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 2, 0.88);
  backdrop-filter: blur(14px);
}

.full-map-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(1500px, 96vw);
  height: min(890px, 94vh);
  min-height: 560px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(244, 241, 236, 0.16);
  background: #111211;
  color: var(--white);
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.72);
  outline: none;
  transform: translateY(20px) scale(0.985);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.full-map-modal.is-open .full-map-modal__dialog {
  transform: translateY(0) scale(1);
}

.full-map-modal__header {
  min-height: 86px;
  padding: 20px clamp(20px, 2.4vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(244, 241, 236, 0.1);
  background: #111211;
}

.full-map-modal__eyebrow {
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.full-map-modal__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.1vw, 38px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.full-map-modal__close {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 241, 236, 0.22);
  border-radius: 50%;
  color: var(--white);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.full-map-modal__close span {
  position: absolute;
  width: 17px;
  height: 1px;
  background: currentColor;
}

.full-map-modal__close span:first-child { transform: rotate(45deg); }
.full-map-modal__close span:last-child { transform: rotate(-45deg); }

.full-map-modal__close:hover,
.full-map-modal__close:focus-visible {
  border-color: var(--accent);
  background: rgba(201, 255, 0, 0.07);
  transform: rotate(90deg);
  outline: none;
}

.full-map-modal__toolbar {
  min-height: 64px;
  padding: 10px clamp(20px, 2.4vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(244, 241, 236, 0.08);
  background: rgba(5, 5, 5, 0.2);
}

.full-map-search {
  width: min(390px, 52vw);
  height: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 15px;
  border: 1px solid rgba(244, 241, 236, 0.14);
  background: rgba(5, 5, 5, 0.34);
  color: rgba(244, 241, 236, 0.48);
  transition: border-color 0.24s ease, background 0.24s ease;
}

.full-map-search:focus-within {
  border-color: rgba(201, 255, 0, 0.54);
  background: rgba(5, 5, 5, 0.52);
}

.full-map-search i {
  flex: 0 0 auto;
  font-size: 12px;
}

.full-map-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.full-map-search input::placeholder {
  color: rgba(244, 241, 236, 0.38);
  opacity: 1;
}

.full-map-controls {
  display: flex;
  align-items: center;
  gap: 7px;
}

.full-map-controls button {
  height: 38px;
  min-width: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(244, 241, 236, 0.14);
  color: rgba(244, 241, 236, 0.82);
  background: rgba(5, 5, 5, 0.28);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.full-map-controls button:hover,
.full-map-controls button:focus-visible {
  color: var(--accent);
  border-color: rgba(201, 255, 0, 0.5);
  background: rgba(201, 255, 0, 0.055);
  outline: none;
}

.full-map-modal__content {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(270px, 22vw, 340px);
  background: #0b0c0b;
}

.full-map-viewport {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  cursor: grab;
  touch-action: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 128, 128, 0.055), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent),
    #080908;
}

.full-map-viewport::before,
.full-map-viewport::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.full-map-viewport::before {
  inset: 0;
  opacity: 0.21;
  background-image:
    linear-gradient(rgba(244, 241, 236, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 236, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, #000 28%, transparent 82%);
}

.full-map-viewport::after {
  display: none;
}

.full-map-viewport.is-dragging {
  cursor: grabbing;
}

.full-map__canvas {
  position: absolute;
  inset: 30px 34px 54px;
  z-index: 2;
  user-select: none;
}

.full-map__canvas > svg,
.full-map__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.full-map__canvas .world-map__country {
  cursor: pointer;
  stroke-width: 0.72;
}

.full-map__canvas .world-map__country:hover,
.full-map__canvas .world-map__country:focus-visible,
.full-map__canvas .world-map__country.is-hovered {
  fill: rgba(0, 128, 128, 0.17);
  stroke: rgba(42, 207, 196, 0.92);
  filter:
    drop-shadow(0 0 4px rgba(0, 128, 128, 0.38))
    drop-shadow(0 0 13px rgba(0, 128, 128, 0.2));
  outline: none;
}

.full-map__canvas .world-map__country.is-selected {
  fill: rgba(201, 255, 0, 0.17);
  stroke: rgba(201, 255, 0, 0.94);
  filter:
    drop-shadow(0 0 4px rgba(201, 255, 0, 0.56))
    drop-shadow(0 0 15px rgba(201, 255, 0, 0.25));
}

.full-map__canvas .world-map__artist-halo {
  animation-duration: 3s;
}

.full-map__loading,
.full-map__error {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(244, 241, 236, 0.46);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.full-map__tooltip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  min-width: 140px;
  max-width: 230px;
  padding: 10px 12px;
  border: 1px solid rgba(112, 242, 197, 0.34);
  background: rgba(8, 9, 8, 0.96);
  color: rgba(244, 241, 236, 0.92);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 12px));
  transition: opacity 0.16s ease;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.48);
}

.full-map__tooltip.is-visible { opacity: 1; }

.full-map__tooltip strong {
  display: block;
  margin-bottom: 4px;
  color: #88ffd5;
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.full-map__tooltip span {
  display: block;
  color: rgba(244, 241, 236, 0.66);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.full-map-viewport__hint {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 17px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(244, 241, 236, 0.36);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.85px;
  text-transform: uppercase;
  pointer-events: none;
}

.full-map-viewport__hint span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.full-map-viewport__hint i {
  color: rgba(201, 255, 0, 0.62);
}

.full-map-info {
  min-width: 0;
  padding: clamp(24px, 2.2vw, 36px);
  overflow-y: auto;
  border-left: 1px solid rgba(244, 241, 236, 0.09);
  background: #111211;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 255, 0, 0.35) rgba(255, 255, 255, 0.04);
}

.full-map-info__empty {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.full-map-info__marker {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 255, 0, 0.36);
  border-radius: 50%;
  color: var(--accent);
  font-size: 16px;
  background: rgba(201, 255, 0, 0.045);
  box-shadow: 0 0 28px rgba(201, 255, 0, 0.08);
}

.full-map-info__empty p {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
}

.full-map-info__empty small {
  max-width: 220px;
  color: rgba(244, 241, 236, 0.48);
  font-size: 11px;
  line-height: 1.55;
}

.full-map-country__flag {
  width: 52px;
  height: 36px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 236, 0.14);
  background: rgba(5, 5, 5, 0.3);
}

.full-map-country__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-map-country__code {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.full-map-country h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(30px, 2.2vw, 42px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.full-map-country__count {
  margin: 20px 0 0;
  padding: 15px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(244, 241, 236, 0.09);
  border-bottom: 1px solid rgba(244, 241, 236, 0.09);
}

.full-map-country__count span {
  color: rgba(244, 241, 236, 0.46);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.full-map-country__count strong {
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
}

.full-map-country__artists-title {
  margin: 24px 0 13px;
  color: rgba(244, 241, 236, 0.46);
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.full-map-country__artists {
  display: grid;
  gap: 8px;
}

.full-map-country__artist {
  min-height: 54px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(244, 241, 236, 0.08);
  background: rgba(5, 5, 5, 0.24);
}

.full-map-country__artist > span:first-child {
  min-width: 0;
}

.full-map-country__artist strong,
.full-map-country__artist small {
  display: block;
}

.full-map-country__artist strong {
  overflow: hidden;
  color: var(--white);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.full-map-country__artist small {
  margin-top: 5px;
  color: rgba(244, 241, 236, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.full-map-country__artist i {
  flex: 0 0 auto;
  color: rgba(201, 255, 0, 0.68);
  font-size: 10px;
}

.full-map-country__none {
  margin-top: 20px;
  color: rgba(244, 241, 236, 0.45);
  font-size: 11px;
  line-height: 1.55;
}

.full-map-search.is-not-found {
  border-color: rgba(255, 94, 94, 0.58);
  animation: fullMapSearchShake 0.32s ease;
}

@keyframes fullMapSearchShake {
  0%, 100% { transform: translateX(0); }
  30% { transform: translateX(-5px); }
  70% { transform: translateX(5px); }
}

@media (max-width: 940px) {
  .full-map-modal__dialog {
    width: min(760px, 96vw);
    height: min(940px, 96vh);
  }

  .full-map-modal__content {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(360px, 1fr) auto;
    overflow: auto;
  }

  .full-map-info {
    min-height: 230px;
    max-height: 310px;
    border-top: 1px solid rgba(244, 241, 236, 0.09);
    border-left: 0;
  }

  .full-map-info__empty {
    min-height: 170px;
  }
}

@media (max-width: 620px) {
  .full-map-modal {
    padding: 0;
  }

  .full-map-modal__dialog {
    width: 100vw;
    height: 100dvh;
    min-height: 0;
    border: 0;
  }

  .full-map-modal__header {
    min-height: 72px;
    padding: 15px 18px;
  }

  .full-map-modal__eyebrow { display: none; }
  .full-map-modal__header h2 { font-size: 22px; }
  .full-map-modal__close { width: 40px; height: 40px; }

  .full-map-modal__toolbar {
    min-height: 0;
    padding: 10px 14px;
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }

  .full-map-search {
    width: 100%;
  }

  .full-map-controls {
    width: 100%;
  }

  .full-map-controls button {
    flex: 1 1 0;
  }

  .full-map-modal__content {
    grid-template-rows: minmax(320px, 1fr) auto;
  }

  .full-map__canvas {
    inset: 18px 12px 46px;
  }

  .full-map-viewport__hint {
    left: 16px;
    right: 16px;
    gap: 12px;
    font-size: 7px;
  }

  .full-map-viewport__hint span:nth-child(2) {
    display: none;
  }

  .full-map-info {
    max-height: 265px;
    padding: 22px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .full-map-modal,
  .full-map-modal__dialog,
  .full-map-modal__close,
  .full-map__tooltip {
    transition: none !important;
  }

  .full-map-search.is-not-found {
    animation: none;
  }
}

/* FULL MAP */
.full-map__canvas,
.full-map__canvas > svg,
.full-map__canvas .full-map__svg,
.full-map__canvas .world-map__country,
.full-map__canvas .world-map__country:focus,
.full-map__canvas .world-map__country:focus-visible,
.full-map__canvas .world-map__country:-moz-focusring {
  outline: none !important;
  outline-color: transparent !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.full-map__canvas > svg:focus,
.full-map__canvas > svg:focus-visible,
.full-map__canvas .full-map__svg:focus,
.full-map__canvas .full-map__svg:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* FEATURED PLAYLISTS */
.dashboard-section--reference .playlist-item {
  transform: none;
}

.dashboard-section--reference .playlist-item:hover,
.dashboard-section--reference .playlist-item:focus-visible {
  transform: none;
}

.dashboard-section--reference .playlist-item__cover {
  position: relative;
  background: #080808;
  border-color: rgba(244, 241, 236, 0.11);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.dashboard-section--reference .playlist-item__cover img {
  display: block;
  transform: scale(1) translateZ(0);
  transform-origin: center center;
  filter: grayscale(0.72) contrast(1.08) brightness(0.76);
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
  will-change: transform, filter;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.dashboard-section--reference .playlist-item:hover .playlist-item__cover,
.dashboard-section--reference .playlist-item:focus-visible .playlist-item__cover {
  border-color: rgba(201, 255, 0, 0.92);
  box-shadow:
    0 0 0 1px rgba(201, 255, 0, 0.1),
    0 0 20px rgba(201, 255, 0, 0.07);
}

.dashboard-section--reference .playlist-item:hover .playlist-item__cover img,
.dashboard-section--reference .playlist-item:focus-visible .playlist-item__cover img {
  transform: scale(1.075) translateZ(0);
  filter: grayscale(0.18) contrast(1.12) brightness(1.04);
}

/* HOME LAYOUT */
.artists--reference .artists__inner,
.dashboard-section--reference .dashboard-section__grid,
.reach-network-section__inner {
  width: min(100%, 1650px);
  margin-left: auto;
  margin-right: auto;
}

/* ARTIST CARDS */
.artists--reference .artist-card__info {
  z-index: 6;
  pointer-events: none;
}

.artists--reference .artist-card__socials,
.artists--reference .artist-card__socials a {
  pointer-events: auto;
}

.artists--reference .artist-card__profile-link {
  z-index: 4;
}

/* FULL MAP */
.full-map__canvas .world-map__country,
.full-map__canvas .world-map__country:hover,
.full-map__canvas .world-map__country:focus,
.full-map__canvas .world-map__country:focus-visible,
.full-map__canvas .world-map__country.is-hovered,
.full-map__canvas .world-map__country.is-selected,
.full-map-viewport.is-dragging .world-map__country {
  outline: none !important;
  outline-color: transparent !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.full-map__canvas,
.full-map__canvas svg,
.full-map__canvas svg * {
  -webkit-user-select: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
}

/* PLAYER VOLUME */

.dashboard-section--reference .now-playing-volume__btn {
  pointer-events: auto;
}

.dashboard-section--reference .now-playing-volume.is-open .now-playing-volume__slider {
  pointer-events: auto;
}

.dashboard-section--reference .now-playing-volume__input {
  pointer-events: auto;
}

/* ========================================================================== 
   CUMULATIVE PLAYER + MAP SAFETY
   ========================================================================== */
.dashboard-section--reference .now-playing-panel__top {
  position: relative;
  z-index: 30;
  justify-content: space-between !important;
  overflow: visible;
}

.dashboard-section--reference .now-playing-volume {
  display: grid !important;
  flex: 0 0 22px;
  position: relative;
  z-index: 40;
  width: 22px;
  height: 22px;
  pointer-events: auto;
  isolation: isolate;
}

.dashboard-section--reference .now-playing-volume__btn,
.dashboard-section--reference .now-playing-volume__slider,
.dashboard-section--reference .now-playing-volume__input {
  pointer-events: auto;
}

.dashboard-section--reference .now-playing-volume__slider {
  z-index: 50;
  overflow: visible;
}

.dashboard-section--reference .now-playing-volume__input {
  z-index: 2;
  touch-action: none;
}

.full-map__canvas,
.full-map__canvas > svg,
.full-map__canvas .full-map__svg,
.full-map__canvas .world-map__country,
.full-map__canvas .world-map__country:hover,
.full-map__canvas .world-map__country:focus,
.full-map__canvas .world-map__country:focus-visible,
.full-map__canvas .world-map__country:-moz-focusring,
.full-map__canvas .world-map__country.is-hovered,
.full-map__canvas .world-map__country.is-selected,
.full-map-viewport.is-dragging .world-map__country {
  outline: none !important;
  outline-color: transparent !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.full-map__canvas .world-map__country,
.full-map__canvas .world-map__country:hover,
.full-map__canvas .world-map__country:focus,
.full-map__canvas .world-map__country:focus-visible,
.full-map__canvas .world-map__country.is-hovered,
.full-map__canvas .world-map__country.is-selected,
.full-map-viewport.is-dragging .world-map__country {
  filter: none !important;
  -webkit-filter: none !important;
}

/* ========================================================================== 
   PLAYER ACTIVE BUTTON
   ========================================================================== */
.now-playing-panel__controls button {
  position: relative;
  isolation: isolate;
}

.now-playing-panel__controls button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.88);
  transition:
    opacity 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.now-playing-panel__controls button > i,
.now-playing-panel__controls button > svg,
.now-playing-panel__controls button > span {
  position: relative;
  z-index: 1;
}

.now-playing-panel__controls button.is-active {
  width: 23px;
  height: 23px;
  color: var(--accent);
  background: transparent;
  border-radius: 0;
}

.now-playing-panel__controls button.is-active::before {
  opacity: 1;
  background: rgba(5, 5, 5, 0.5);
  transform: translate(-50%, -50%) scale(1);
}

.now-playing-panel__controls .is-main::before {
  display: none;
}

/* ==========================================================================
   LOCKED NAVIGATION LINKS
   ========================================================================== */

body .nav .nav__link.is-locked-link,
body .mobile-menu a.is-locked-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;

  color: #ff3b3b !important;
  cursor: not-allowed;
  user-select: none;
}

body .nav .nav__link.is-locked-link::after {
  display: none !important;
  content: none !important;
}

/* LOCKED LINK STATUS */
.locked-link__status {
  position: relative;
  top: -4px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;
  height: auto;
  padding: 0;
  margin: 0;

  color: #ff3b3b;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;

  font-size: 8px;
  line-height: 1;

  pointer-events: none;
  transform: rotate(-7deg);
}

/* NO TITLE LOCK */
.locked-link__status span {
  display: none !important;
}

body .nav .nav__link.is-locked-link:hover,
body .mobile-menu a.is-locked-link:hover {
  color: #ff5c5c !important;
}

body .mobile-menu a.is-locked-link {
  justify-content: flex-start;
  width: fit-content;

  margin: 0;
  padding: 0;

  background: none !important;
  border: 0 !important;
}

/* FOOTER LINKS LOCKED */
body .site-footer__navigation a.is-locked-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;

  width: fit-content;
  padding-left: 0;

  color: #ff3b3b !important;
  cursor: not-allowed;
  user-select: none;

  transform: none !important;
}

body .site-footer__navigation a.is-locked-link::before {
  display: none !important;
  content: none !important;
}

body .site-footer__navigation a.is-locked-link:hover {
  color: #ff5c5c !important;
  transform: none !important;
}

body .site-footer__navigation a.is-locked-link .locked-link__status {
  position: relative;
  top: -4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  color: #ff3b3b;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 8px;
  line-height: 1;
  pointer-events: none;
  transform: rotate(-7deg);
}

/* ========================================
   CUSTOM SCROLLBAR
======================================== */

html {
  scrollbar-width: thin;
  scrollbar-color: #8fff00 #07090d;
  scrollbar-gutter: stable;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #07090d;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

::-webkit-scrollbar-thumb {
  min-height: 50px;
  border: 3px solid #07090d;
  border-radius: 999px;

  background:
    linear-gradient(
      180deg,
      #b7ff37 0%,
      #79e900 50%,
      #37c878 100%
    );

  box-shadow:
    inset 0 0 5px rgba(255, 255, 255, 0.3),
    0 0 10px rgba(143, 255, 0, 0.35);
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(
      180deg,
      #d4ff82 0%,
      #9cff00 50%,
      #46e691 100%
    );

  box-shadow:
    inset 0 0 6px rgba(255, 255, 255, 0.45),
    0 0 14px rgba(143, 255, 0, 0.55);
}

::-webkit-scrollbar-thumb:active {
  background: #ffffff;
}

::-webkit-scrollbar-corner {
  background: #07090d;
}