
@font-face {
  font-family: "Anticyclone";
  src: url("Fonts/Anticyclone-VariableVF.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ZTNature";
  src: url("Fonts/ZTNature-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Theme variables and core palette */
:root {
  --hue: 180; /* adjust this single value (0-360) to shift your accent palette */
  --bg: #05070c;
  --panel: rgba(17, 20, 30, 0.7);
  --accent: hsl(var(--hue), 90%, 65%);
  --accent-2: hsl(var(--hue), 92%, 72%);
  --text: #e8ecf1;
  --muted: #9da3af;
  --border: rgba(255, 255, 255, 0.25);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --title-font: "ZTNature", "HeatherGreen", "Space Grotesk", "Inter", sans-serif;
  --body-font: "Gonero", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.field textarea {
  resize: vertical;
}

/* Page backdrop gradient overlay behind content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, #ffffff 0%, #000000 12%);
  z-index: -2;
}

/* Background image overlay (scrolls with page) */
body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/backgrounds/1.jpg") center top / cover no-repeat;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

/* Global box sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Base page typography and layered background */
body {
  margin: 0;
  font-family: var(--body-font);
  background: radial-gradient(circle at 20% 20%, rgba(95, 241, 255, 0.12), transparent 35%),
              radial-gradient(circle at 80% 0%, rgba(142, 241, 126, 0.1), transparent 35%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}


input,
textarea,
select,
button {
  font-family: inherit;
}

/* Links inherit text color and remove underline */
a {
  color: inherit;
  text-decoration: none;
}

/* Ensure images scale within containers */
img {
  max-width: 100%;
  display: block;
}

/* Sticky top header with glassmorphism */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 6vw 0px 3vw;
  backdrop-filter: blur(14px);
  background: rgba(5, 7, 12, 0.85);
  border-bottom: 1px solid var(--border);
}
body.render-stability-mode .site-header,
body.render-stability-mode .custom-player,
body.render-stability-mode .now-playing {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
body.render-stability-mode .glass-btn__filter,
body.render-stability-mode .vol-thumb-glass-filter {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  filter: none !important;
}

body.render-stability-mode .glass-btn__filter,
body.render-stability-mode .glass-btn__overlay,
body.render-stability-mode .glass-btn__specular,
body.render-stability-mode .vol-thumb-glass-filter,
body.render-stability-mode .vol-thumb-glass-overlay,
body.render-stability-mode .vol-thumb-glass-specular {
  display: none !important;
}

body.render-stability-mode .site-header,
body.render-stability-mode .hero,
body.render-stability-mode .about__copy,
body.render-stability-mode .card,
body.render-stability-mode .footer {
  backface-visibility: hidden;
}

/* Wordmark + logo alignment */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.logo .dot {
  color: var(--accent);
  font-size: 18px;
}

.logo .logo-mark {
  height: 85px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Mobile navigation hamburger */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text);
  display: block;
}

/* Primary navigation links */
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.nav a {
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
  opacity: 1;
}

/* Custom hover colors for each nav link */
.nav a:nth-child(1):hover { color: #FFD700 !important; } /* ARTISTS - yellow */
.nav a:nth-child(2):hover { color: #00FF7F !important; } /* MUSIC - green */
.nav a:nth-child(3):hover { color: #FF69B4 !important; } /* SHOP - pink */
.nav a:nth-child(4):hover { color: #A855F7 !important; } /* TEAM - purple */
.nav a:nth-child(5):hover { color: #FF4444 !important; } /* ABOUT - red */
.nav .pill:hover { color: #000000 !important; background: #ffffff; } /* CONTACT - black */

.nav .pill {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.5);
}

/* Main content padding and anchor scroll offset */
main {
  flex: 1 0 auto;
  padding: 0 6vw 10vh;
}

.hero,
.about,
.roster,
.tour,
.shop,
.sessions,
.contact,
#team {
  scroll-margin-top: 35vh;
}

/* Hero/artist banner */
.hero {
  position: relative;
  overflow: hidden;
  margin: 32px 0 48px;
  border-radius: 24px;
  padding: 20px 72px; /*artist header*/
  background: linear-gradient(145deg, #0a0d14, #05070c);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  isolation: isolate;
}

body:not(.page-home) .hero {
  min-height: 268px;
  padding-top: 22px;
  padding-bottom: 22px;
}

/* Hero background image overlay */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg, url("assets/nohypemusicBG.png"));
  background-position: var(--hero-bg-position, center);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.15;
  mix-blend-mode: normal;
  filter: none;
  z-index: 0;
}


@media (max-width: 600px) {
  .hero__bg {
    background-image: var(--hero-bg-mobile, var(--hero-bg, url("assets/nohypemusicBG.png")));
    background-position: var(--hero-bg-mobile-position, var(--hero-bg-position, center));
    background-size: var(--hero-bg-mobile-size, cover);
  }

}




/* Hero foreground content grid */
.hero__content {
  position: relative;
  max-width: 760px;
  display: grid;
  gap: 18px;
  z-index: 2;
}

body:not(.page-home) .hero__content {
  max-width: 980px;
}


/* Uppercase eyebrow label */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--muted);
  font-family: "Anticyclone", "Inter", sans-serif;
}

/* Heading 1 sizing */
h1 {
  font-family: var(--title-font);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin: 0;
  line-height: 1.1;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(1.6rem, 6.5vw, 2.6rem);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero[style*="--hero-bg"] {
    display: block;
    padding-bottom: 110px;
  }

  .hero[style*="--hero-bg"] .hero__content {
    position: static;
  }

  .hero[style*="--hero-bg"] .hero__actions {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    margin-top: 0;
  }
}

/* Heading 2 sizing */
h2 {
  font-family: var(--title-font);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 6px;
}

h3 {
  font-family: var(--title-font);
  font-style: italic;
  font-weight: 700;
}

/* Lead paragraph */
.lede {
  font-size: 1.05rem;
  color: #cfd5df;
  max-width: 640px;
}

body:not(.page-home) .hero .lede {
  max-width: 980px;
}

/* CTA row inside hero */
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Button base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.25),
    0 12px 30px rgba(0, 0, 0, 0.35);
}
.btn[disabled],
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
  box-shadow: none;
}

.btn.primary {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Optional dark button variant */
.btn--dark {
  background: rgba(0, 0, 0, 0.82) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: var(--text) !important;
}
/*back to store button */
.btn--small {
  padding: 4px 10px;
  font-size: 0.75rem;
  width: fit-content;
}

body:not(.page-home) .hero__content > a.btn--small[href$="home.html"] {
  margin-top: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
}
/* Embedded media grid */
.social-embeds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.embed-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.embed-card iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* Circular social icon list */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  opacity: 0.9;
  transition: transform 0.15s ease, opacity 0.15s ease, border-color 0.15s ease;
}

.social-icons a:hover {
  transform: translateY(-1px);
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.9);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Social icon overlay on artist image (Lucuna only) */
.artist-profile__image--overlay {
  position: relative;
}

.social-icons--overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(0, 0, 0, 0.8);
  padding: 8px 10px;
  border-radius: 12px;
  gap: 10px;
}

.artist-profile__contact-pill {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.artist-profile__contact-pill:hover {
  transform: translateY(-1px);
  color: #000000;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.85);
}

/* Stat cards row */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.stats div {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  min-width: 120px;
  justify-self: start;
}

.stats .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

/* About section two-column layout */
.about {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 24px;
  margin: 24px 0 48px;
}

/* About text card */
.about__copy {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  background: rgba(26, 26, 26, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
  max-width: 900px;
}

/* About section link button */
.about-link {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 14px;
  font-size: 0.85rem;
}

/* About page full content */
.about-page {
  margin: 24px 0 48px;
}

.about-page__content {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  background: rgba(26, 26, 26, 0.8);
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.about-page__content h2 {
  margin-top: 28px;
}

.about-page__content h2:first-child {
  margin-top: 0;
}

.about-page__content p {
  color: #cfd5df;
  line-height: 1.7;
}

/* Store page */
.store-page {
  margin: 24px 0 48px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Category cards grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.category-card {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  background: rgba(26, 26, 26, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.85);
}

.category-card__image {
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__info {
  padding: 24px;
  text-align: center;
}

.category-card__info h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.category-card__info p {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 800px) {
  .category-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.product-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  background: rgba(26, 26, 26, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.85);
}

.product-card__image {
  width: 100%;
  height: 220px;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__info h3 {
  margin: 0 0 8px;
}

.product-card__desc {
  color: var(--muted);
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.product-card__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin: auto 0 14px;
}

/* Responsive: stack to 1 column on mobile */
.store-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1000px) {
  .store-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .store-grid,
  .store-grid--4col {
    grid-template-columns: 1fr;
  }
}

/* Product detail page */
.product-page {
  margin: 32px 0 48px;
}

.product-page__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.product-page__image {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.product-page__image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-page__details {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  background: rgba(26, 26, 26, 0.8);
  box-shadow: var(--shadow);
}

.product-page__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin: 12px 0 16px;
}

.product-page__desc {
  color: #cfd5df;
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-page__options {
  margin-bottom: 24px;
}

.product-page__options select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1rem;
}

.product-page__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .product-page__layout {
    grid-template-columns: 1fr;
  }
}

/* Team page */
.team-page {
  margin: 24px 0 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  background: rgba(26, 26, 26, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.2s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.85);
}

.team-card__image {
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__info {
  padding: 20px;
}

.team-card__info h3 {
  margin: 0 0 4px;
}

.team-card__role {
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 10px;
  font-size: 0.9rem;
}

.team-card__bio {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Team member detail page */
.team-member-page {
  margin: 32px 0 48px;
}

.team-member__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.team-member__image {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.team-member__image img {
  width: 100%;
  height: auto;
  display: block;
}

.team-member__details {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  background: rgba(26, 26, 26, 0.8);
  box-shadow: var(--shadow);
}

.team-member__details h1 {
  margin-top: 12px;
}

.team-member__role {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 20px;
}

.team-member__bio p {
  color: #cfd5df;
  line-height: 1.7;
  margin-bottom: 16px;
}

.team-member__contact {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.team-member__contact h3 {
  margin: 0 0 8px;
}

.team-member__contact p {
  color: var(--muted);
  margin: 0 0 14px;
}

@media (max-width: 800px) {
  .team-member__layout {
    grid-template-columns: 1fr;
  }
}

/* Team profile page (new layout) */
.team-profile {
  margin: 32px 0 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-profile__header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 40px;
}

.team-profile__image {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-profile__info h1 {
  margin: 8px 0 12px;
  font-size: 2.5rem;
}

.team-profile__role {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.team-profile__about {
  margin-bottom: 40px;
}

.team-profile__about h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.team-profile__about p {
  color: #cfd5df;
  line-height: 1.7;
  margin-bottom: 16px;
}

.team-profile__contact {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  background: rgba(26, 26, 26, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team-profile__contact h2 {
  margin: 0;
  font-size: 1.5rem;
}

@media (max-width: 700px) {
  .team-profile__header {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .team-profile__image {
    margin: 0 auto;
  }
  
  .team-profile__contact {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Service chips/pills */
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

/* Accent story card */
.about__card {
  position: relative;
  padding: 28px;
  border-radius: 16px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__card .badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.about__card .quote {
  font-size: 1.1rem;
  margin: 20px 0 6px;
}

.about__card .attribution {
  color: var(--muted);
  margin: 0;
}

.about__card .pulse,
.about__copy .pulse {
  position: absolute;
  width: 240px;
  height: 240px;
  bottom: -80px;
  right: -40px;
  background: radial-gradient(circle, rgba(95, 241, 255, 0.28), transparent 60%);
  filter: blur(3px);
}

/* Shared section heading spacing */
.section-heading {
  margin-bottom: 20px;
}

.roster .section-heading .eyebrow,
.roster .section-heading h2,
.sessions .section-heading .eyebrow,
.sessions .section-heading h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


body:not(.page-artists) .roster .section-heading h2 {
  transform: translateX(-5px);
}
.hint {
  color: var(--muted);
  margin-top: 4px;
}

/* Roster cards grid */
.roster .grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Center the roster heading area */
.roster .section-heading {
  text-align: center;
}

/* Keep card text left-aligned even when section is centered */
.roster .card {
  text-align: left;
  position: relative;
  padding-right: 120px;
}

.page-artists .roster .card {
  padding-bottom: 48px;
}

.page-artists .roster .card .tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
}

.roster .card h3,
.roster .card p {
  width: calc(100% - 120px);
  text-align: center;
}

.roster .card h3 {
  margin-top: 0;
}

/* Generic glow card */
.card {
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(000, 000, 000, 0.9);
  min-height: 160px;
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.25),
    0 12px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.35),
    0 18px 48px rgba(0, 0, 0, 0.4);
}

/* Roster card avatar circle */
.roster .card__avatar {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  border-radius: 40%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.roster .card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-link:focus-visible .card,
.card-link:hover .card {
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-3px);
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: var(--muted);
}

.card h3 {
  margin: 10px 0 6px;
}

.card__title--long {
  font-size: 0.9rem;
  line-height: 2.0;
}

.card__title--nowrap {
  white-space: nowrap;
}


/* Tour/shows list section */
.tour {
  margin: 60px 0 48px;
  font-weight: 400;
}

/* Tour filters/search */
.tour__controls {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.tour__controls input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

/* Tour cards container */
.tour__list {
  display: grid;
  gap: 12px;
}

/* Individual tour card */
.tour-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.03), rgba(95, 241, 255, 0.06));
  box-shadow: var(--shadow);
}

.tour-card .date {
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 4px;
}

.tour-card .meta {
  color: var(--muted);
  margin: 4px 0 0;
}

/* Shop section wrapper */
.shop {
  margin: 72px 0;
}

/* Shop grid responsive sizing */
.shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
  align-items: stretch;
  max-width: 900px; /* match original card width so two cards are ~half-length */
  margin: 0 auto;
}

/* Primary shop CTA card */
.shop__card {
  padding: 60px 48px;
  border-radius: 18px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  min-height: 320px;
  text-align: center;
}

/* Rotating merch/artwork wheel card */
.wheel-card {
  padding: 10px;
  border-radius: 18px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1px;
  min-height: 320px;
}

.wheel-card__header h3 {
  margin: 6px 0;
}

/* Wheel image container */
.wheel {
  width: min(440px, 100%);
  height: 340px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(95, 241, 255, 0.12), rgba(5, 7, 12, 0.9));
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.wheel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  border: 2px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  transition: opacity 0.5s ease;
}

/* Sessions/sound list section */
.sessions {
  margin: 72px 0 40px;
}

/* Music page grid */
.music-page {
  margin: 48px 0 32px;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.music-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow);
  padding: 20px 18px 18px;
  overflow: hidden;
}

.music-card__title {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.music-card__body {
  margin-top: 22px;
}
/* Music page custom player layout */
.music-page [data-music-player] .music-player__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 12px;
  padding: 10px;
}

.music-page [data-music-player] .music-player__tracks {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 110px;
}

.music-page [data-music-player] .music-player__now {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.music-page [data-music-player] .custom-player__tracklist {
  flex: 1;
  min-height: 0;
  max-height: 140px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 8px;
  padding-top: 4px;
}

.music-page [data-music-player] .music-player__side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.music-page [data-music-player] .music-player__artwork {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-size: 0.72rem;
  background-size: cover;
  background-position: center;
}

.music-page [data-music-player] .music-player__artwork.has-artwork span {
  opacity: 0;
}

.music-page [data-music-player] .music-player__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
  align-items: center;
  align-self: stretch;
}

@media (max-width: 900px) {
  .music-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .music-page [data-music-player] .music-player__layout {
    grid-template-columns: 1fr;
  }
  .music-page [data-music-player] .music-player__tracks,
  .music-page [data-music-player] .music-player__side {
    min-height: 0;
  }

  .music-page [data-music-player] .music-player__side {
    flex-direction: column;
    align-items: center;
  }

  .music-page [data-music-player] .music-player__artwork {
    width: 100%;
    height: auto;
  }

  .music-page [data-music-player] .music-player__controls {
    margin-top: 0;
    justify-content: center;
    flex: 0 0 auto;
  }
  .music-page [data-music-player][data-tracklist="single"] .music-player__tracks {
    max-height: 170px;
    overflow: hidden;
  }

  .music-page [data-music-player][data-tracklist="single"] .custom-player__tracklist {
    max-height: 56px;
    overflow: hidden;
  }

  .music-page [data-music-player][data-tracklist="single"] .custom-player__tracklist .sc-track-item {
    display: none;
  }

  .music-page [data-music-player][data-tracklist="single"] .custom-player__tracklist .sc-track-item.active,
  .music-page [data-music-player][data-tracklist="single"] .custom-player__tracklist .sc-track-item:first-child {
    display: flex;
  }

  .music-page [data-music-player][data-tracklist="expanded"] .custom-player__tracklist {
    max-height: none;
    overflow-y: auto;
  }

  .music-page [data-music-player][data-tracklist="expanded"] {
    height: var(--music-player-height, auto);
  }

  .music-page [data-music-player][data-tracklist="expanded"] .music-player__layout {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .music-page [data-music-player][data-tracklist="expanded"] .music-player__tracks {
    flex: 0 0 clamp(160px, 45%, 220px);
    overflow: hidden;
  }

  .music-page [data-music-player][data-tracklist="expanded"] .music-player__side {
    flex: 1 1 auto;
    min-height: 0;
  }

  .music-page [data-music-player][data-tracklist="expanded"] .music-player__artwork {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    min-height: 0;
  }

  .music-page [data-music-player][data-tracklist="expanded"] .music-player__controls {
    margin-top: 8px;
    margin-bottom: 0;
    padding-bottom: 8px;
  }

  .music-page [data-music-player] .music-player__controls {
    justify-content: center;
  }

  .music-page [data-music-player] .music-player__now {
    align-items: center;
    text-align: center;
  }

  .music-page [data-music-player] .custom-player__track-title {
    text-align: center;
    width: 100%;
    font-size: clamp(0.75rem, 3.5vw, 0.95rem);
    white-space: normal;
    word-break: break-word;
  }

  .music-page [data-music-player][data-tracklist="single"] .custom-player__track-title,
  .music-page [data-music-player][data-tracklist="single"] .custom-player__track-artist {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .music-page [data-music-player] .custom-player__track-artist {
    text-align: center;
    width: 100%;
    font-size: clamp(0.65rem, 2.5vw, 0.8rem);
  }

  .music-page [data-music-player] .custom-player__progress {
    justify-content: center;
    width: 100%;
  }

}

/* Custom Music Player */
.music-player {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  background: rgba(26, 26, 26, 0.8);
  overflow: hidden;
}

.music-player__tracks {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.music-player__tracks h3 {
  margin: 0 0 16px;
  font-size: 1.2rem;
}

.track-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 450px;
  overflow-y: auto;
}

.track-list::-webkit-scrollbar {
  width: 6px;
}

.track-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.track-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.track-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.track-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.track-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.track-item.active {
  background: rgba(95, 241, 255, 0.1);
  border-left: 3px solid var(--accent);
}

.track-number {
  width: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.track-info {
  flex: 1;
  min-width: 0;
}

.track-info h4 {
  margin: 0 0 2px;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-info p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.track-plays {
  color: var(--muted);
  font-size: 0.85rem;
}

.music-player__embed {
  min-height: 500px;
}

.music-player__embed iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
}

@media (max-width: 900px) {
  .music-player {
    grid-template-columns: 1fr;
  }
  
  .music-player__embed {
    order: -1;
    min-height: 400px;
  }
  
  .music-player__embed iframe {
    min-height: 400px;
  }
  
  .track-list {
    max-height: 300px;
  }
}

/* Sessions two-column layout */
.sessions__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  width: 66.666%;
  margin: 0 auto;
}

.sessions .section-heading {
  text-align: center;
}

/* Main audio player embed */
.sessions__player iframe {
  width: 100%;
  height: 560px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #0a0d14;
}

/* Track list */
.sessions__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

/* Individual track row */
.sessions__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

/* Inline mini player wrapper */
.mini-player {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.mini-player iframe {
  width: 100%;
  height: 80px;
  border: 0;
  border-radius: 8px;
}

/* Generic pill badge */
.pill {
  display: inline-flex;
  min-width: 110px;
  justify-content: center;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(95, 241, 255, 0.16);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Optional dark pill variant */
.pill--dark {
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Legacy two-column artist layout */
.artist-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  margin: 32px 0 72px;
}

.artist-detail__bio {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.artist-detail__image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #05070c;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(480px, 100%);
  height: 520px;
}

.artist-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tag row for artist meta */
.artist-meta {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

/* Poster card layout for artist pages */
.poster-frame {
  max-width: 1200px;
  margin: 32px auto 72px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: #05070c;
  box-shadow: var(--shadow);
}

.poster-hero {
  position: relative;
  min-height: 420px;
  background: var(--hero-bg, url("assets/nohypemusicBG.png")) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.poster-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.72) 70%);
  z-index: 0;
}

.poster-hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 32px 32px;
  width: 100%;
  display: grid;
  gap: 14px;
}

.poster-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.poster-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.poster-body {
  padding: 32px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.poster-bio {
  position: relative;
  padding: 0px 24px 24px 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 520px;
  justify-content: center;
}

.poster-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #04060a;
  width: min(480px, 100%);
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.poster-full {
  grid-column: 1 / -1;
}

.poster-embeds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

/* Contact section spacing */
.contact {
  margin: 62px 0 32px;
}

/* Contact form grid */
.contact__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

/* Form field stack */
.field {
  display: grid;
  gap: 6px;
}

/* Form labels */
.field label {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Text inputs and textarea styling */
.field input,
.field textarea {
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  width: 100%;
  max-width: 100%;
}

/* Full-width field */
.field.full {
  grid-column: 1 / -1;
}
.contact__status {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.5em;
  font-size: 0.95rem;
  color: var(--muted);
}
.contact__status[data-state="success"] {
  color: #b4ffcb;
}
.contact__status[data-state="error"] {
  color: #ffb0b0;
}

/* Footer bar */
.footer {
  border-top: 1px solid var(--border);
  padding: 0px 6vw 0px 3vw;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: auto;
  background: rgba(5, 7, 12, 0.9);
}

/* Footer navigation links */
.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer right-aligned note */
.footnote {
  color: var(--muted);
  margin: 0 0 0 auto;
}

/* Responsive tweaks for tablets/phones */
@media (max-width: 960px) {
  .nav {
    position: absolute;
    inset: 68px 16px auto 16px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(5, 7, 12, 0.96);
    flex-direction: column;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding: 72px 26px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .sessions__layout,
  .contact__form {
    grid-template-columns: 1fr;
  }

  .sessions__layout {
    width: 100%;
    max-width: 100%;
  }

  .shop__grid {
    grid-template-columns: 1fr;
  }

  .tour-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footnote {
    margin: 0;
  }

  .poster-body {
    grid-template-columns: 1fr;
  }

  .poster-hero {
    min-height: 320px;
  }
}

/* Desktop: lock roster to 4 columns when space allows */
@media (min-width: 1100px) {
  .roster .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Artist Profile Layout */
.artist-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--artist-gap, 24px);
  margin: 32px auto 48px;
  max-width: var(--artist-max-width, 900px);
}

.artist-profile__image {
  width: var(--artist-image-width, 480px);
  height: var(--artist-image-height, 520px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.artist-profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-profile__content {
  width: var(--artist-content-width, 480px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  background: rgba(26, 26, 26, 0.8);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.artist-profile__about .tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.artist-profile__about h3 {
  margin: 0 0 12px;
}

.artist-profile__about p {
  color: #cfd5df;
  line-height: 1.7;
  margin: 0;
}

.artist-profile__player iframe {
  width: 100%;
  height: 166px;
  border: none;
  border-radius: 8px;
}

.artist-profile__player {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 600px) {
  .artist-profile__image {
    width: 100%;
    height: 400px;
  }
  
  .artist-profile__content {
    width: 100%;
  }
}

/* "Listen to More" link */
.custom-player__more {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
  z-index: 5;
}

.custom-player__more:hover {
  color: var(--text);
}

/* Custom SoundCloud Player */
.custom-player {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.custom-player__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
}

.custom-player__btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.custom-player__btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.custom-player__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.custom-player__btn--play {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.custom-player__btn--play:hover {
  background: rgba(255, 255, 255, 0.25);
}

.custom-player__btn--play svg {
  width: 22px;
  height: 22px;
}

.custom-player__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-player__track-title {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-player__track-artist {
  font-size: 0.8rem;
  color: var(--muted);
}

.custom-player__progress {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-player__progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.custom-player__progress-fill {
  height: 100%;
  width: 0;
  background: var(--text);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.custom-player__time {
  font-size: 0.75rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Track list */
.custom-player__tracklist {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 320px;
  overflow-y: auto;
  padding: 4px 0;
}

.custom-player__tracklist::-webkit-scrollbar {
  width: 4px;
}

.custom-player__tracklist::-webkit-scrollbar-track {
  background: transparent;
}

.custom-player__tracklist::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
}

.custom-player__tracklist {
  scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
  scrollbar-width: thin;
}

.sc-track-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 20px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  text-align: left;
  transition: background 0.12s ease;
}

.sc-track-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.sc-track-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--accent);
}

.sc-track-num {
  width: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.sc-track-name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-track-dur {
  color: var(--muted);
  font-size: 0.8rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .custom-player__controls {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-areas:
      "title title title"
      "artist artist artist"
      "prev play next"
      "progress progress progress";
    justify-content: center;
    justify-items: center;
    align-items: center;
    column-gap: 3px;
    row-gap: 10px;
    padding: 14px 16px;
  }

  .custom-player__info {
    display: contents;
  }

  .custom-player__track-title {
    grid-area: title;
    text-align: center;
    width: 100%;
    font-size: clamp(0.75rem, 3.5vw, 0.95rem);
    white-space: normal;
    word-break: break-word;
  }

  .custom-player__track-artist {
    grid-area: artist;
    text-align: center;
    width: 100%;
    font-size: clamp(0.65rem, 2.5vw, 0.8rem);
  }

  .custom-player__progress {
    grid-area: progress;
    justify-content: center;
    width: 100%;
  }

  #prev-btn {
    grid-area: prev;
  }

  #play-btn {
    grid-area: play;
  }

  #next-btn {
    grid-area: next;
  }

  .custom-player__controls [data-role="prev"] {
    grid-area: prev;
  }

  .custom-player__controls [data-role="play"] {
    grid-area: play;
  }

  .custom-player__controls [data-role="next"] {
    grid-area: next;
  }

  .custom-player__more {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    text-align: center;
    padding: 8px 0 0;
    font-size: 0.72rem;
  }

  .sc-track-item {
    padding: 8px 14px;
    gap: 8px;
    font-size: 0.78rem;
  }

  .sc-track-name {
    font-size: 0.78rem;
  }
}

/* Now-playing sticky footer bar */
.now-playing {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 24px;
  background: rgba(5, 7, 12, 0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.now-playing.visible {
  transform: translateY(0);
}

.now-playing__btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.now-playing__btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.now-playing__btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.now-playing__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 1;
  max-width: 200px;
}

.now-playing__title {
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.now-playing__artist {
  font-size: 0.72rem;
  color: var(--muted);
}

/* Progress bar in now-playing bar */
.now-playing__progress {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  max-width: 35%;
  margin: 0 auto;
}

.now-playing__time {
  font-size: 0.72rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 32px;
}

.now-playing__progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}

.now-playing__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--text);
  border-radius: 999px;
  pointer-events: none;
}

/* Horizontal volume slider */
.now-playing__volume {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.now-playing__vol-icon {
  width: 16px;
  height: 16px;
  fill: var(--muted);
  flex-shrink: 0;
}

.now-playing__vol-track {
  width: 100px;
  height: 10px;
  background: #D6D6DA;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}

.now-playing__vol-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(117deg, #707070 0%, #3c3c3c 100%);
  border-radius: 999px;
  pointer-events: none;
}

/* Glass play button */
.glass-btn {
  position: relative;
  overflow: hidden;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.glass-btn__icon {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.glass-btn__icon svg {
  width: 50%;
  height: 50%;
  fill: currentColor;
}

.glass-btn__filter {
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(0.6px);
  -webkit-backdrop-filter: blur(0.6px);
  filter: url(#mini-liquid-lens);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.glass-btn__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.glass-btn__specular {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow:
    inset 1px 1px 0 rgba(69, 168, 243, 0.2),
    inset 1px 3px 0 rgba(28, 63, 90, 0.05),
    inset 0 0 22px rgb(255 255 255 / 60%),
    inset -1px -1px 0 rgba(69, 168, 243, 0.12);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.glass-btn:active {
  background: transparent;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
  transform: scale(0.94);
}

.glass-btn:active .glass-btn__filter,
.glass-btn:active .glass-btn__overlay,
.glass-btn:active .glass-btn__specular {
  opacity: 1;
}

/* Glass thumb — horizontal */
.vol-thumb-glass {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 18px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
  background-color: #fff;
  box-shadow: 0 1px 8px 0 rgba(0, 30, 63, 0.1), 0 0 2px 0 rgba(0, 9, 20, 0.1);
  overflow: hidden;
  transition: transform 0.15s ease, width 0.15s ease;
}

.vol-thumb-glass-filter {
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(0.6px);
  -webkit-backdrop-filter: blur(0.6px);
  filter: url(#mini-liquid-lens);
}

.vol-thumb-glass-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

.vol-thumb-glass-specular {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow:
    inset 1px 1px 0 rgba(69, 168, 243, 0.2),
    inset 1px 3px 0 rgba(28, 63, 90, 0.05),
    inset 0 0 22px rgb(255 255 255 / 60%),
    inset -1px -1px 0 rgba(69, 168, 243, 0.12);
}

.vol-thumb-glass-filter,
.vol-thumb-glass-overlay,
.vol-thumb-glass-specular {
  opacity: 0;
}

.vol-thumb-glass.active {
  background-color: transparent;
  box-shadow: none;
}

.vol-thumb-glass.active .vol-thumb-glass-filter,
.vol-thumb-glass.active .vol-thumb-glass-overlay,
.vol-thumb-glass.active .vol-thumb-glass-specular {
  opacity: 1;
}

.vol-thumb-glass:active {
  transform: translate(-50%, -50%) scaleY(0.98) scaleX(1.1);
}

@media (max-width: 600px) {
  .now-playing {
    flex-wrap: wrap;
    padding: 8px 14px;
    gap: 8px;
  }

  .now-playing__info {
    max-width: 140px;
  }

  .now-playing__title {
    font-size: 0.75rem;
  }

  .now-playing__artist {
    font-size: 0.65rem;
  }

  .now-playing__progress {
    order: 10;
    flex-basis: 100%;
    gap: 6px;
  }

  .now-playing__time {
    font-size: 0.65rem;
    min-width: 28px;
  }

  .now-playing__volume {
    margin-left: auto;
  }

  .now-playing__vol-track {
    width: 60px;
  }

  .now-playing__btn {
    width: 32px;
    height: 32px;
  }

  .now-playing__btn svg {
    width: 14px;
    height: 14px;
  }

  .now-playing__volume {
    display: none;
  }

  .footer .logo {
    display: none;
  }
}
