:root {
  --bg: #141313;
  --green: #1ED760;
  --white: #ffffff;
  --black: #0d0d0d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(30,215,96,0.15), transparent 28%),
    #141313;
  color: var(--white);
  font-family: 'Space Mono', monospace;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  z-index: 100;
  background: rgba(10,10,10,0.97);
  border-bottom: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 38px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.55);
}

.nav-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  color: var(--green);
  letter-spacing: 3px;
  user-select: none;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-icons img {
  height: 34px;
  width: auto;
}

/* CATALOG */
.catalog-label {
  margin-top: 76px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  color: var(--green);
  letter-spacing: 6px;
  padding: 22px 0 12px;
}

/* LOGO MARQUEE */
.marquee-wrapper {
  overflow: hidden;
  background: #0d0d0d;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.marquee-item img {
  max-width: 145px;
  height: 44px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: grayscale(100%) brightness(1.8);
}

.marquee-item:hover {
  transform: scale(1.08);
}

.marquee-item:hover img {
  filter: grayscale(0%) brightness(1.1);
}

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

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

/* HERO */
#hero {
  position: relative;
  overflow: hidden;
  height: clamp(260px, 34vw, 430px);
  border-bottom: 2px solid rgba(30,215,96,0.35);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.2), rgba(0,0,0,0.65));
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(25%) brightness(0.78);
}

.slide-label {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 52px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: 3px;
  text-shadow: 0 5px 22px rgba(0,0,0,0.95);
  user-select: none;
}

.carousel-dots {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  right: 32px;
  display: flex;
  gap: 10px;
}

.carousel-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}

.carousel-dots span.active {
  width: 30px;
  background: var(--green);
}

/* HERO CROPS */
.carousel-slide[data-hero="bieber"] img { object-position: center 48%; }
.carousel-slide[data-hero="u2"] img { object-position: center 15%; }
.carousel-slide[data-hero="goo"] img { object-position: center 20%; }
.carousel-slide[data-hero="a7x"] img { object-position: center 30%; }
.carousel-slide[data-hero="buckley"] img { object-position: center 25%; }
.carousel-slide[data-hero="keane"] img { object-position: center 25%; }
.carousel-slide[data-hero="watson"] img { object-position: center 25%; }

/* ARTIST NAV */
.artist-nav {
  position: sticky;
  top: 76px;
  z-index: 90;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #171717;
  border-bottom: 1px solid #333;
  box-shadow: 0 8px 24px rgba(0,0,0,0.38);
  user-select: none;
}

.artist-nav a {
  padding: 16px 24px;
  color: #d5d5d5;
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  border-right: 1px solid #333;
}

.artist-nav a:hover {
  background: var(--green);
  color: #000;
}

/* SPOTIFY BAR */
.spotify-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  background: #0d0d0d;
}

.spotify-bar img {
  height: 42px;
}

.spotify-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 3px;
  user-select: none;
}

/* ARTIST SECTIONS */
.artist-section {
  width: calc(100% - 44px);
  margin: 34px auto;
  padding: 42px 56px;
  position: relative;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(30,215,96,0.16), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    #171717;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
}

.artist-header {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 82px);
  letter-spacing: 3px;
  padding-bottom: 34px;
  user-select: none;
}

.artist-body {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 42px;
  align-items: stretch;
}

.artist-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 22px;
  border: 2px solid rgba(30,215,96,0.45);
  box-shadow: 0 18px 42px rgba(0,0,0,0.55);
  filter: grayscale(12%) contrast(1.06);
}

.artist-img[data-artist="u2"] {
  object-position: center 8%;
}

.artist-img[data-artist="goo"] {
  object-position: center 15%;
}

.artist-img[data-artist="bieber"] {
  object-position: center 12%;
}

.artist-img[data-artist="a7x"] {
  object-position: center 15%;
}

.artist-img[data-artist="buckley"] {
  object-position: center 10%;
}

.artist-img[data-artist="keane"] {
  object-position: center 15%;
}

.artist-img[data-artist="watson"] {
  object-position: center 15%;
}

.artist-desc,
.love-text {
  background: linear-gradient(135deg, #1ED760, #88f6ad);
  color: #050505;
  padding: 34px;
  font-size: clamp(13px, 1.25vw, 18px);
  line-height: 1.75;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'IBM Plex Mono', monospace;
  border-radius: 22px;
  box-shadow:
    0 18px 38px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.45);
    user-select: none;
}

.artist-desc {
  display: flex;
  align-items: center;
}

/* LOVE SECTION */
.love-section {
  padding-top: 42px;
  min-height: 220px;
  position: relative;
}

.love-header {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  text-align: center;
  letter-spacing: 2px;
  padding-bottom: 22px;
  user-select: none;
}

.love-body {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 28px;
  align-items: center;
}

.love-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bubbles-container {
  display: none;
}

/* BUBBLES */
.bubble {
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  z-index: 3;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.35);
}

.bubble:hover {
  transform: scale(1.12);
}

/* PLAY BUTTON */
.play-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(30,215,96,0.55);
}

.play-btn:hover {
  transform: scale(1.1);
}

.play-btn svg {
  fill: #000;
}

/* SONG MODAL */
#song-modal,
.bubble-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.84);
  z-index: 300;
  align-items: center;
  justify-content: center;
}

#song-modal.open,
.bubble-popup.open {
  display: flex;
}

#song-modal-inner,
.bubble-popup-inner {
  background: linear-gradient(145deg, #202020, #111);
  border: 2px solid var(--green);
  padding: 42px;
  max-width: 560px;
  width: 92%;
  position: relative;
  text-align: center;
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.75);
}

#song-modal-inner h2,
.bubble-popup-inner h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--green);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

#song-modal-inner p,
.bubble-popup-inner p {
  font-size: 14px;
  color: #d0d0d0;
  margin-bottom: 18px;
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1.7;
}

#song-modal-inner iframe {
  width: 100%;
  height: 152px;
  border: none;
  border-radius: 14px;
}

#song-modal-close,
.bubble-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 25px;
  cursor: pointer;
}

.spotify-open-note {
  margin-top: 14px;
  font-size: 11px;
  color: #777;
}

/* FOOTER */
footer {
  width: calc(100% - 44px);
  margin: 0 auto;
  padding: 28px 34px 44px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 12px;
  user-select: none;
}

/* LAZY */
.lazy {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.lazy.visible {
  opacity: 1;
  transform: none;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 4px;
}

/* MOBILE */
@media (max-width: 760px) {
  nav {
    height: 66px;
    padding: 0 18px;
  }

  .nav-title {
    font-size: 30px;
    user-select: none;
  }

  .nav-icons img {
    height: 28px;
  }

  .catalog-label {
    margin-top: 66px;
  }

  .artist-nav {
    top: 66px;
  }

  .artist-nav a {
    font-size: 10px;
    padding: 13px 14px;
  }

  .artist-section {
    width: calc(100% - 24px);
    margin: 28px auto;
    padding: 22px;
  }

  .artist-body,
  .love-body {
    grid-template-columns: 1fr;
  }

  .artist-img {
    height: 230px;
  }

  .slide-label {
    left: 22px;
    bottom: 34px;
  }
}
.carousel-dots {
  display: flex;
}

.carousel-dots span {
  display: block;
}

.artist-img {
  object-position: top center;
}

.artist-img[data-artist="bieber"] {
  object-position: center 18%;
}

.artist-img[data-artist="u2"] {
  object-position: center 12%;
}

.artist-img[data-artist="goo"] {
  object-position: center 18%;
}

.artist-img[data-artist="a7x"] {
  object-position: center 18%;
}

.artist-img[data-artist="buckley"] {
  object-position: center 15%;
}

.artist-img[data-artist="keane"] {
  object-position: center 18%;
}

.artist-img[data-artist="watson"] {
  object-position: center 18%;
}
.nav-icons img,
.spotify-bar img {
  background: none;
  mix-blend-mode: normal; /* remove weird blending */
}