/* ==========================================================================
   BTR ARTIST PROFILE - MASTER STYLESHEET
   Glassmorphism, Neon Accents, and Custom Media Players
   ========================================================================== */

:root {
  --bg: #05070f;
  --bg-2: #080c17;
  --panel: #0b1120;
  --panel-2: #0d1424;
  --panel-3: #11192b;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);
  --text: #f4f4fb;
  --muted: #9ca7bf;
  --muted-2: #73819c;
  --cyan: #19e6ff;
  --cyan-rgb: 25, 230, 255;
  --mint: #4df7c5;
  --mint-rgb: 77, 247, 197;
  --magenta: #ff38cf;
  --magenta-rgb: 255, 56, 207;
  --purple: #8956ff;
  --purple-rgb: 137, 86, 255;
  --red: #ff4c4c;
  --gold: #f8c44f;
  
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  
  --shadow-xl: 0 40px 120px rgba(0,0,0,0.65);
  --shadow-lg: 0 22px 60px rgba(0,0,0,0.45);
  --shadow-md: 0 14px 30px rgba(0,0,0,0.35);
  
  --brand-gradient: linear-gradient(135deg, rgba(25,230,255,0.95) 0%, rgba(255,56,207,0.95) 100%);
  --button-gradient: linear-gradient(135deg, #19e6ff 0%, #4df7c5 100%);
  --danger-gradient: linear-gradient(135deg, #ff38cf 0%, #8956ff 100%);
  
  --glass: rgba(9,14,25,0.74);
  --glass-2: rgba(13,19,35,0.88);
  --card-edge: rgba(255,255,255,0.08);
  
  --glow-cyan: 0 0 0 1px rgba(var(--cyan-rgb),0.15), 0 0 30px rgba(var(--cyan-rgb),0.15);
  --glow-magenta: 0 0 0 1px rgba(var(--magenta-rgb),0.14), 0 0 30px rgba(var(--magenta-rgb),0.15);
}

/* ==========================================================================
   GLOBAL & RESET
   ========================================================================== */
* {
  box-sizing: border-box;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--cyan-rgb), 0.8) #060a12;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  background-color: #05070f;
  background-image: 
    radial-gradient(circle at top left, rgba(137,86,255,0.18), transparent 25%),
    radial-gradient(circle at top right, rgba(25,230,255,0.12), transparent 24%),
    linear-gradient(180deg, rgba(5,7,15,0.4) 0%, rgba(5,7,15,0.92) 40%, rgba(5,7,15,1) 100%),
    var(--user-bg, none);
  background-size: auto, auto, 100% 100%, cover;
  background-position: top left, top right, top center, center top;
  background-attachment: scroll, scroll, scroll, fixed;
  background-repeat: no-repeat;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 90%);
  opacity: .22;
}

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

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

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #060a12; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(var(--cyan-rgb),0.8), rgba(var(--magenta-rgb),0.8));
  border-radius: 999px;
  border: 2px solid #060a12;
}

/* ==========================================================================
   LEGACY HEADER & SEARCH (Fallback / Global Search Elements)
   ========================================================================== */
header {
  background-color: #f8f8f8;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
}

.logo { 
  font-size: 1.4rem; 
  font-weight: bold; 
  color: #333; 
}

.header-actions { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
}

.join-btn {
  background-color: #ff5555; 
  border: none; 
  color: #fff; 
  padding: 8px 16px;
  border-radius: 6px; 
  font-size: 0.95rem; 
  cursor: pointer; 
  transition: background 0.3s;
}

.join-btn:hover { 
  background-color: #e74c3c; 
}

.top-search-area {
  color: #333; 
  display: flex; 
  justify-content: center; 
  padding: 20px;
}

.search-bar-container {
  width: 100%; 
  max-width: 1300px; 
  margin: 0 auto;
  background-color: #fff; 
  border-bottom: 1px solid #ddd; 
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  border-radius: 10px; 
  transition: all 0.3s ease-in-out;
}

.search-row { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  margin-bottom: 12px; 
}

.search-select {
  background-color: #f2f2f2; 
  border: 1px solid #ccc; 
  border-radius: 4px; 
  padding: 8px;
  font-size: 0.95rem; 
  color: #333; 
  cursor: pointer; 
  outline: none;
}

.search-input-container { 
  position: relative; 
  flex: 1; 
  display: flex; 
  align-items: center; 
}

#search-input {
  flex: 1; 
  padding: 10px 40px 10px 12px; 
  border: 1px solid #ccc; 
  border-radius: 4px;
  font-size: 1rem; 
  outline: none; 
  color: #333;
}

#search-input::placeholder { 
  color: #999; 
}

#clear-search {
  position: absolute; 
  right: 10px; 
  background: transparent; 
  border: none;
  color: #999; 
  cursor: pointer; 
  font-size: 1rem; 
  outline: none;
}

#search-button {
  background-color: #333; 
  color: #fff; 
  border: none; 
  padding: 10px 18px;
  border-radius: 4px; 
  font-size: 1rem; 
  cursor: pointer; 
  transition: background 0.3s;
}

.subcategories-row {
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
  justify-content: flex-start;
  padding: 10px; 
  overflow-x: auto;
}

.subcat-chip {
  white-space: nowrap; 
  padding: 8px 14px; 
  border: 1px solid #ccc; 
  border-radius: 20px;
  background-color: #fafafa; 
  font-size: 0.9rem; 
  color: #333; 
  cursor: pointer;
  transition: background 0.3s; 
  flex: 0 0 auto;
}

.subcat-chip:hover { 
  background-color: #f0f0f0; 
}

/* ==========================================================================
   PAGE LAYOUT & TOPBAR
   ========================================================================== */
.page-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100vw - 30px));
  margin: 0 auto 50px;
}

.artist-topbar {
  position: sticky;
  top: 0;
  z-index: 5000;
  isolation: isolate;
  overflow: hidden;

  /* make it more solid so content doesn’t bleed through */
  background: rgba(5, 8, 15, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 12px 40px rgba(0,0,0,0.34);

  /* stop compositor flicker */
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.artist-topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(10, 14, 22, 0.98) 0%,
    rgba(5, 8, 15, 0.96) 100%
  );

  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.artist-topbar-inner {
  width: min(1440px, calc(100vw - 30px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 0 4px;

  position: relative;
  z-index: 2;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .12em;
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.navbar-brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--button-gradient);
  box-shadow: 0 0 20px rgba(var(--cyan-rgb),0.65);
  flex-shrink: 0;
}

.brand-subline {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .66rem;
  letter-spacing: .34em;
  color: var(--muted);
  margin-top: -4px;
}

.artist-enter-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(var(--magenta-rgb),0.26);
  background: linear-gradient(135deg, rgba(var(--magenta-rgb),0.18), rgba(var(--purple-rgb),0.18));
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--glow-magenta);
}

.artist-marquee {
  position: relative;
  margin: 16px 0 18px;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(var(--magenta-rgb),0.12), rgba(255,255,255,0.02), rgba(var(--cyan-rgb),0.12));
}

.artist-marquee-track {
  display: flex;
  gap: 38px;
  padding: 12px 24px;
  white-space: nowrap;
  animation: marqueeMove 26s linear infinite;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
  font-weight: 700;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.artist-marquee-track span strong {
  color: #fff;
  font-weight: 800;
  margin-right: 8px;
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-40%); }
}

/* ==========================================================================
   HERO / PROFILE MEDIA / ABOUT PANELS
   ========================================================================== */
.profile-section {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(7,11,20,0.94), rgba(5,8,15,0.98));
  box-shadow: var(--shadow-xl);
}

.artist-hero-shell {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.22));
}

.artist-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(137,86,255,0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(25,230,255,0.12), transparent 22%),
    linear-gradient(180deg, rgba(4,7,14,0.96), rgba(5,8,15,0.98));
  z-index: -4;
}

.artist-hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3,6,10,.92) 0%, rgba(3,6,10,.68) 38%, rgba(3,6,10,.42) 60%, rgba(3,6,10,.72) 100%),
    radial-gradient(circle at 22% 18%, rgba(var(--magenta-rgb),0.18), transparent 25%),
    radial-gradient(circle at 84% 20%, rgba(var(--cyan-rgb),0.16), transparent 24%);
}

.artist-hero-lines, #hero-vanta-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

.artist-hero-lines {
  background:
    linear-gradient(130deg, transparent 0 48%, rgba(var(--magenta-rgb),0.08) 48.5%, transparent 49%),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: auto, 90px 90px, 90px 90px;
  opacity: .65;
  mix-blend-mode: screen;
}

.artist-brand-banner {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 22px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.artist-brand-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.28) 40%, rgba(0,0,0,0.72) 100%),
    linear-gradient(90deg, rgba(5,7,15,0.55) 0%, rgba(5,7,15,0.08) 45%, rgba(5,7,15,0.35) 100%);
}

.artist-brand-banner-content {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
}

.artist-brand-banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cyan);
}

.artist-brand-banner-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--cyan);
}

.artist-brand-banner-title {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.artist-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: 28px;
  align-items: stretch;
  min-height: 656px;
}

.artist-brand-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  min-width: 0;
}

.artist-brand-panel, .artist-side-stack > .panel-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(10,16,28,0.78), rgba(7,11,20,0.88));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.artist-brand-panel {
  padding: 30px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.artist-brand-panel::before, .panel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), transparent 120px);
}

.artist-brand-top {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
}

.artist-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: .76rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--cyan);
}

.artist-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(var(--cyan-rgb),0.45);
}

.artist-about-title {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: .9;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #f5f0ff;
  text-shadow: 0 8px 40px rgba(0,0,0,0.45);
  max-width: 900px;
}

.artist-tagline {
  margin: 16px 0 0;
  max-width: 780px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}

.artist-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 22px 0 0;
}

.meta-item, .role-badge, .hero-mini-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.meta-item i { color: var(--cyan); }

.role-badge {
  color: var(--mint);
  border-color: rgba(var(--mint-rgb),0.18);
  background: rgba(var(--mint-rgb),0.08);
}

.pro-inline-wrap { 
  display: flex; 
  justify-content: flex-start; 
  width: 100%; 
  margin: 16px 0 0; 
}

.pro-inline-ribbon {
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  min-height: 42px; 
  padding: 0 16px;
  border-radius: 999px; 
  border: 1px solid rgba(var(--magenta-rgb),0.18);
  background: linear-gradient(135deg, rgba(var(--magenta-rgb),0.12), rgba(var(--purple-rgb),0.12));
  box-shadow: var(--glow-magenta); 
  font-size: .8rem; 
  font-weight: 900;
  letter-spacing: .18em; 
  text-transform: uppercase; 
  color: #fff; 
  white-space: nowrap;
}

.pro-inline-ribbon i { 
  color: var(--magenta); 
  filter: drop-shadow(0 0 10px rgba(var(--magenta-rgb),0.4)); 
}

.artist-bio { 
  margin: 22px 0 0; 
  max-width: 820px; 
  font-size: 1rem; 
  line-height: 1.9; 
  color: rgba(255,255,255,0.74); 
}

.artist-action-row { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 12px; 
  margin-top: 28px; 
}

.btn-custom, .btn-share, .btn-custom-wide, .latest-release-cta, .latest-release-ghost {
  position: relative; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 10px;
  min-height: 50px; 
  padding: 0 20px; 
  border-radius: 15px; 
  border: 1px solid transparent;
  font-size: .84rem; 
  font-weight: 800; 
  letter-spacing: .14em; 
  text-transform: uppercase;
  cursor: pointer; 
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
  overflow: hidden; 
  white-space: nowrap;
}

.btn-share, .btn-custom-wide, .latest-release-cta {
  background: var(--button-gradient); 
  color: #061018; 
  box-shadow: 0 18px 36px rgba(var(--cyan-rgb),0.20);
}

.btn-custom, .latest-release-ghost {
  background: linear-gradient(135deg, rgba(var(--magenta-rgb),0.18), rgba(var(--purple-rgb),0.18));
  color: #fff; 
  border-color: rgba(var(--magenta-rgb),0.18); 
  box-shadow: 0 18px 36px rgba(var(--magenta-rgb),0.12);
}

.btn-share:hover, .btn-custom-wide:hover, .btn-custom:hover, .latest-release-cta:hover, .latest-release-ghost:hover {
  transform: translateY(-2px);
}

.btn-share:hover, .btn-custom-wide:hover, .latest-release-cta:hover {
  box-shadow: 0 24px 45px rgba(var(--cyan-rgb),0.28); 
  filter: brightness(1.04);
}

.btn-custom:hover, .latest-release-ghost:hover {
  box-shadow: 0 24px 45px rgba(var(--magenta-rgb),0.18); 
  border-color: rgba(var(--magenta-rgb),0.30);
}

.artist-utility-row {
  display: flex; 
  flex-wrap: wrap; 
  justify-content: flex-start; 
  gap: 16px; 
  margin-top: 26px;
  padding-top: 22px; 
  border-top: 1px solid rgba(255,255,255,0.07);
}

.social-icons { 
  display: flex; 
  flex-wrap: wrap; 
  align-items: center; 
  gap: 16px; 
  margin: 0; 
}

.social-icons a {
  width: 56px; 
  height: 56px; 
  display: grid; 
  place-items: center; 
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08); 
  background: rgba(255,255,255,0.04);
  color: #fff; 
  font-size: 1.4rem; 
  transition: transform .22s ease, border-color .22s ease, color .22s ease, background .22s ease;
}

.social-icons a:hover {
  transform: translateY(-2px); 
  color: var(--cyan); 
  border-color: rgba(var(--cyan-rgb),0.28);
  background: rgba(var(--cyan-rgb),0.08);
}

/* --- Profile Media Component --- */
.profile-media-wrapper { 
  position: relative; 
  width: 182px; 
  height: 182px; 
  flex-shrink: 0; 
}

.profile-media-mask {
  width: 100%; 
  height: 100%; 
  border-radius: 50%; 
  overflow: hidden; 
  position: relative; 
  background: #000;
  -webkit-mask-image: -webkit-radial-gradient(white, black); 
  mask-image: radial-gradient(white, black);
  border: 4px solid rgba(var(--cyan-rgb),0.8);
  box-shadow: 0 0 0 8px rgba(var(--cyan-rgb),0.10), 0 18px 60px rgba(0,0,0,0.55), 0 0 28px rgba(var(--cyan-rgb),0.20);
  will-change: box-shadow, border-color; 
  animation: breathingGlow 3.2s ease-in-out infinite;
  cursor: pointer; 
  transform: translate3d(0,0,0); 
  backface-visibility: hidden;
}

.profile-media-mask:hover {
  animation: none; 
  border-color: rgba(var(--magenta-rgb),0.85);
  box-shadow: 0 0 0 8px rgba(var(--magenta-rgb),0.12), 0 18px 60px rgba(0,0,0,0.55), 0 0 28px rgba(var(--magenta-rgb),0.24);
}

@keyframes breathingGlow {
  0%, 100% {
    border-color: rgba(var(--cyan-rgb),0.78);
    box-shadow: 0 0 0 8px rgba(var(--cyan-rgb),0.10), 0 18px 60px rgba(0,0,0,0.55), 0 0 28px rgba(var(--cyan-rgb),0.18);
  }
  50% {
    border-color: rgba(var(--cyan-rgb),1);
    box-shadow: 0 0 0 10px rgba(var(--cyan-rgb),0.14), 0 18px 60px rgba(0,0,0,0.55), 0 0 34px rgba(var(--cyan-rgb),0.28);
  }
}

.profile-media-content { 
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform-origin: center center; 
  width: auto; 
  height: 100%; 
  max-width: none; 
  object-fit: cover; 
  display: block; 
}

img.profile-media-content { 
  z-index: 2; 
  transition: opacity .45s ease; 
}

img.profile-media-content.fade-out { 
  opacity: 0; 
  pointer-events: none; 
}

.glass-play-btn {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  width: 56px; 
  height: 56px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px); 
  border: 1px solid rgba(255,255,255,0.24); 
  display: flex; 
  align-items: center; 
  justify-content: center;
  z-index: 20; 
  opacity: 0; 
  pointer-events: none; 
  transition: all .22s ease; 
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,0.34); 
  animation: gentleFloat 3s ease-in-out infinite;
}

.glass-play-btn.show-btn { 
  opacity: 1; 
  pointer-events: auto; 
}

.glass-play-btn:hover { 
  animation: none; 
  transform: translate(-50%, -50%) scale(1.08); 
  background: rgba(255,255,255,0.18); 
}

.glass-play-btn i { 
  color: #fff; 
  font-size: 20px; 
  margin-left: 2px; 
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); 
}

.glass-play-btn i.fa-pause { 
  margin-left: 0; 
}

@keyframes gentleFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.06); }
}

/* ==========================================================================
   SIDE STACK (Latest Release, VIP, QR)
   ========================================================================== */
.artist-side-stack { 
  display: grid; 
  grid-template-rows: minmax(0,1fr) auto auto; 
  gap: 18px; 
  min-height: 100%; 
}

.panel-card { 
  padding: 22px; 
}

.panel-kicker {
  display: flex; 
  align-items: center; 
  gap: 10px; 
  margin-bottom: 14px;
  font-size: .72rem; 
  letter-spacing: .26em; 
  text-transform: uppercase; 
  color: var(--magenta); 
  font-weight: 900;
}

.panel-kicker::before {
  content: ""; 
  width: 18px; 
  height: 2px; 
  background: var(--magenta); 
  box-shadow: 0 0 10px rgba(var(--magenta-rgb),0.4);
}

.panel-kicker.cyan-kicker { 
  color: var(--cyan); 
}

.panel-kicker.cyan-kicker::before { 
  background: var(--cyan); 
  box-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.4); 
}

.latest-release-panel { 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between; 
  min-height: 100%; 
}

.latest-release-cover-wrap {
  position: relative; 
  border-radius: 24px; 
  overflow: hidden; 
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, rgba(var(--cyan-rgb),0.14), rgba(var(--magenta-rgb),0.14));
  border: 1px solid rgba(255,255,255,0.08); 
  box-shadow: var(--shadow-lg);
}

.latest-release-cover-wrap::after {
  content: ""; 
  position: absolute; 
  inset: 0; 
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(4,7,14,0.78) 100%),
              linear-gradient(135deg, rgba(var(--cyan-rgb),0.08), transparent 35%, rgba(var(--magenta-rgb),0.08));
}

.latest-release-cover { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}

.latest-release-stamp {
  position: absolute; 
  top: 16px; 
  left: 16px; 
  z-index: 2; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  min-height: 34px; 
  padding: 0 14px; 
  border-radius: 999px; 
  background: rgba(5,8,15,0.74);
  border: 1px solid rgba(255,255,255,0.09); 
  backdrop-filter: blur(10px); 
  font-size: .68rem; 
  font-weight: 900;
  letter-spacing: .16em; 
  text-transform: uppercase; 
  color: #fff;
}

.latest-release-stamp i { 
  color: var(--gold); 
}

.latest-release-content { 
  margin-top: 18px; 
}

.latest-release-meta { 
  font-size: .78rem; 
  letter-spacing: .18em; 
  text-transform: uppercase; 
  color: var(--cyan); 
  font-weight: 800; 
  margin-bottom: 10px; 
}

.latest-release-title { 
  margin: 0; 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: clamp(2.6rem, 4vw, 4rem); 
  line-height: .9; 
  letter-spacing: .02em; 
  text-transform: uppercase; 
  color: #fff; 
}

.latest-release-desc { 
  margin: 14px 0 0; 
  font-size: .95rem; 
  line-height: 1.8; 
  color: rgba(255,255,255,0.72); 
}

.latest-release-actions { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
  margin-top: 20px; 
}

/* VIP Email Capture */
.email-capture-panel { 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  padding: 24px 22px; 
}

.email-capture-panel p { 
  font-size: 0.85rem; 
  line-height: 1.5; 
  color: var(--muted); 
  margin: 0 0 18px; 
}

.email-capture-panel h3 { 
  margin: 0 0 6px; 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 1.8rem; 
  line-height: 1; 
  letter-spacing: .04em; 
  text-transform: uppercase; 
  color: #fff; 
  text-shadow: 0 4px 20px rgba(0,0,0,0.5); 
}

.email-form-wrapper {
  display: flex; 
  background: rgba(0, 0, 0, 0.5); 
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: 14px;
  padding: 4px; 
  transition: all 0.25s ease; 
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.4);
}

.email-form-wrapper:focus-within { 
  border-color: rgba(var(--cyan-rgb), 0.5); 
  box-shadow: var(--glow-cyan), inset 0 2px 6px rgba(0,0,0,0.4); 
  background: rgba(0, 0, 0, 0.7); 
}

.email-input { 
  flex: 1; 
  min-width: 0; 
  background: transparent; 
  border: none; 
  padding: 0 14px; 
  color: #fff; 
  font-family: 'Inter', sans-serif; 
  font-size: 0.85rem; 
  outline: none; 
}

.email-input::placeholder { 
  color: rgba(255,255,255,0.25); 
  font-weight: 500; 
}

.email-submit {
  background: var(--button-gradient); 
  color: #061018; 
  border: none; 
  border-radius: 10px; 
  padding: 0 18px; 
  height: 40px;
  font-weight: 800; 
  font-size: 0.75rem; 
  letter-spacing: 0.12em; 
  text-transform: uppercase; 
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 6px;
}

.email-submit:hover { 
  filter: brightness(1.1); 
  box-shadow: 0 8px 20px rgba(var(--cyan-rgb), 0.3); 
}

/* QR Code */
.brand-qr-panel { 
  display: grid; 
  grid-template-columns: auto 1fr; 
  gap: 16px; 
  align-items: center; 
}

.qr-code-shell {
  padding: 10px; 
  border-radius: 18px; 
  border: 1px solid rgba(var(--cyan-rgb),0.18); 
  background: rgba(3,6,12,0.84);
  box-shadow: var(--glow-cyan); 
  min-width: 170px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
}

#qrCodeContainer { 
  width: 150px; 
  min-height: 150px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

.brand-qr-copy h3 { 
  margin: 0 0 10px; 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 2rem; 
  line-height: .95; 
  letter-spacing: .03em; 
  text-transform: uppercase; 
  color: #fff; 
}

.brand-qr-copy p { 
  margin: 0; 
  font-size: .9rem; 
  line-height: 1.7; 
  color: var(--muted); 
}

/* Stats Bar */
.stats-section {
  display: grid; 
  grid-template-columns: repeat(4, minmax(0,1fr)); 
  gap: 0; 
  border-top: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.006));
}

.stat-item {
  position: relative; 
  padding: 26px 22px 24px; 
  min-height: 128px; 
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; 
  flex-direction: column; 
  justify-content: flex-end; 
  overflow: hidden;
}

.stat-item:last-child { 
  border-right: none; 
}

.stat-item::before {
  content: ""; 
  position: absolute; 
  top: 22px; 
  left: 22px; 
  width: 10px; 
  height: 10px; 
  border-radius: 50%; 
  background: var(--cyan); 
  box-shadow: 0 0 20px rgba(var(--cyan-rgb),0.65);
}

.stat-item:nth-child(2)::before { 
  background: var(--magenta); 
  box-shadow: 0 0 20px rgba(var(--magenta-rgb),0.65); 
}

.stat-item:nth-child(3)::before { 
  background: var(--mint); 
  box-shadow: 0 0 20px rgba(var(--mint-rgb),0.65); 
}

.stat-item:nth-child(4)::before { 
  background: var(--gold); 
  box-shadow: 0 0 20px rgba(248,196,79,0.65); 
}

.stat-item h5 { 
  margin: 0 0 10px; 
  font-family: 'Montserrat', sans-serif; 
  font-size: clamp(2rem, 3vw, 3rem); 
  line-height: 1; 
  font-weight: 900; 
  color: #fff; 
}

.stat-item p { 
  margin: 0; 
  font-size: .78rem; 
  letter-spacing: .22em; 
  text-transform: uppercase; 
  color: rgba(255,255,255,0.62); 
  font-weight: 700; 
}

/* ==========================================================================
   SMARTLINKS & VIDEOS
   ========================================================================== */
.content-section-shell { 
  width: min(1440px, calc(100vw - 30px)); 
  margin: 28px auto 0; 
}

.smartlinks-section, .videos-section {
  position: relative; 
  overflow: hidden; 
  margin: 28px auto 0; 
  padding: 28px;
  border-radius: 30px; 
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(10,16,28,0.84), rgba(7,11,20,0.9)); 
  box-shadow: var(--shadow-lg);
}

.smartlinks-heading, .videos-heading { 
  margin: 0; 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: clamp(2.8rem, 4vw, 4.4rem); 
  line-height: .92; 
  letter-spacing: .03em; 
  text-transform: uppercase; 
  color: #fff; 
}

.smartlinks-subheading, .videos-subheading { 
  margin: 10px 0 0; 
  max-width: 900px; 
  color: var(--muted); 
  line-height: 1.8; 
  font-size: .98rem; 
}

.smartlinks-header-row, .videos-header-row { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
  margin-bottom: 24px; 
}

.smartlinks-container { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 16px; 
}

.smartlink-embed {
  position: relative; 
  overflow: hidden; 
  min-height: 118px; 
  border-radius: 22px; 
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)); 
  box-shadow: var(--shadow-md);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.smartlink-embed:hover { 
  transform: translateY(-3px); 
  border-color: rgba(var(--cyan-rgb),0.22); 
  box-shadow: 0 24px 48px rgba(0,0,0,0.34); 
}

.smartlink-embed.card-mode { 
  padding: 0; 
}

.smartlink-card-inner { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  min-height: 118px; 
  padding: 18px 20px; 
  text-decoration: none; 
  color: #fff; 
}

.smart-icon {
  width: 52px; 
  height: 52px; 
  display: grid; 
  place-items: center; 
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(var(--cyan-rgb),0.12), rgba(var(--magenta-rgb),0.12));
  color: var(--cyan); 
  font-size: 1.35rem; 
  border: 1px solid rgba(255,255,255,0.08); 
  flex-shrink: 0;
}

.smart-label { 
  display: block; 
  font-size: .68rem; 
  letter-spacing: .24em; 
  text-transform: uppercase; 
  color: var(--muted-2); 
  font-weight: 800; 
  margin-bottom: 8px; 
}

.smart-title { 
  display: block; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 1rem; 
  line-height: 1.4; 
  font-weight: 800; 
  color: #fff; 
}

.smart-arrow { 
  margin-left: auto; 
  color: rgba(255,255,255,0.42); 
  transition: transform .22s ease, color .22s ease; 
}

.smartlink-embed:hover .smart-arrow { 
  transform: translateX(4px); 
  color: var(--cyan); 
}

.smartlink-embed h4 { 
  margin: 0; 
  padding: 16px 18px 0; 
  font-size: .84rem; 
  letter-spacing: .16em; 
  text-transform: uppercase; 
  color: #fff; 
  font-weight: 800; 
}

.smartlink-embed iframe { 
  width: 100%; 
  border: none; 
  border-radius: 16px; 
  padding: 12px; 
  background: transparent; 
}

.btn-smart-overlay { 
  position: absolute; 
  top: 12px; 
  right: 12px; 
  width: 34px; 
  height: 34px; 
  display: grid; 
  place-items: center; 
  border-radius: 50%; 
  background: rgba(5,8,15,0.78); 
  border: 1px solid rgba(255,255,255,0.08); 
  color: #fff; 
  z-index: 2; 
}

.videos-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
  gap: 18px; 
}

.video-card { 
  border-radius: 22px; 
  overflow: hidden; 
  border: 1px solid rgba(255,255,255,0.08); 
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012)); 
  box-shadow: var(--shadow-md); 
  transition: transform .22s ease, border-color .22s ease; 
}

.video-card:hover { 
  transform: translateY(-3px); 
  border-color: rgba(var(--magenta-rgb),0.22); 
}

.video-container { 
  position: relative; 
  padding-bottom: 56.25%; 
  height: 0; 
  overflow: hidden; 
}

.video-container iframe { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  border: 0; 
}

.section-kicker { 
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  margin-bottom: 8px; 
  font-size: .72rem; 
  letter-spacing: .28em; 
  text-transform: uppercase; 
  color: var(--cyan); 
  font-weight: 900; 
}

.section-kicker::before { 
  content: ""; 
  width: 24px; 
  height: 2px; 
  background: var(--cyan); 
}

/* ==========================================================================
   TRACKLIST / MAIN CONTENT (GLASSMORPHISM)
   ========================================================================== */
.main-content {
  position: relative !important; 
  isolation: isolate !important; 
  width: min(1440px, calc(100vw - 30px)) !important; 
  max-width: 1440px !important; 
  margin: 28px auto 0 !important;
  padding: 26px !important; 
  border-radius: 30px !important;
  background: radial-gradient(circle at top, rgba(25,230,255,0.04) 0%, rgba(9,12,22,0.96) 45%, rgba(5,7,14,1) 100%), linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.008)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important; 
  box-shadow: var(--shadow-lg) !important; 
  overflow: hidden !important;
}

.main-content::before {
  content: ""; 
  position: absolute; 
  inset: 0; 
  pointer-events: none; 
  z-index: 0;
  background: linear-gradient(90deg, rgba(25,230,255,0.02), transparent 20%, transparent 80%, rgba(255,56,207,0.02)), linear-gradient(180deg, rgba(255,255,255,0.02), transparent 120px);
}

.main-content > * { 
  position: relative; 
  z-index: 1; 
}

#totalRecords {
  display: block !important; 
  width: 100% !important; 
  margin: 0 0 18px !important; 
  padding: 0 0 16px !important; 
  text-align: left !important; 
  color: rgba(255,255,255,0.92) !important;
  font-family: 'Bebas Neue', sans-serif !important; 
  font-size: clamp(2.2rem, 4vw, 3.8rem) !important; 
  font-weight: 400 !important; 
  letter-spacing: .03em !important; 
  text-transform: uppercase !important; 
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

#totalRecords::before {
  content: "Discography"; 
  display: block; 
  margin-bottom: 8px; 
  color: var(--cyan); 
  font-family: 'Inter', sans-serif; 
  font-size: .72rem; 
  font-weight: 900; 
  letter-spacing: .30em; 
  text-transform: uppercase;
}

#player-container { 
  display: flex !important; 
  flex-direction: column !important; 
  gap: 12px !important; 
  width: 100% !important; 
}

/* The 8-Column Glass Row */
.wave-track-container {
  position: relative !important; 
  display: grid !important; 
  align-items: center !important; 
  gap: 14px !important; 
  width: 100% !important; 
  min-height: 92px !important; 
  padding: 12px 16px !important; 
  margin: 0 !important; 
  border-radius: 22px !important;
  grid-template-columns: 70px 220px minmax(340px,1fr) 84px 136px 78px 48px 78px !important;
  background: linear-gradient(90deg, rgba(255,255,255,0.022), rgba(255,255,255,0.01) 45%, rgba(255,255,255,0.022)), linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.01)) !important;
  border: 1px solid rgba(255,255,255,0.06) !important; 
  box-shadow: 0 10px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.025) !important;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease !important;
  transform: translateZ(0) !important;
  backface-visibility: hidden !important;
  -webkit-font-smoothing: antialiased !important;
}

.wave-track-container::before {
  content: ""; 
  position: absolute; 
  left: 0; 
  top: 16px; 
  bottom: 16px; 
  width: 3px; 
  border-radius: 999px; 
  background: linear-gradient(180deg, var(--cyan), rgba(var(--cyan-rgb),0.15)); 
  opacity: 0; 
  transition: opacity .22s ease;
}

.wave-track-container:hover {
  transform: translateY(-1px) !important; 
  border-color: rgba(var(--cyan-rgb),0.14) !important;
  background: linear-gradient(90deg, rgba(var(--cyan-rgb),0.03), rgba(255,255,255,0.012) 40%, rgba(var(--magenta-rgb),0.025)), linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012)) !important;
  box-shadow: 0 16px 32px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.03) !important;
}

.wave-track-container:hover::before { 
  opacity: 1; 
}

.wave-track-container > :nth-child(1) { grid-column: 1; }
.wave-track-container > :nth-child(2) { grid-column: 2; width: 220px !important; min-width: 220px !important; max-width: 220px !important; overflow: hidden !important; }
.wave-track-container > :nth-child(3) { grid-column: 3; }
.wave-track-container > :nth-child(4) { grid-column: 4; }
.wave-track-container > :nth-child(5) { grid-column: 5; }
.wave-track-container > :nth-child(6) { grid-column: 6; }
.wave-track-container > :nth-child(7) { grid-column: 7; }
.wave-track-container > :nth-child(8) { grid-column: 8; }

.wave-track-cover {
  position: relative !important;
  width: 70px !important; 
  height: 70px !important; 
  min-width: 70px !important; 
  border-radius: 18px !important; 
  overflow: hidden !important; 
  background-size: cover !important; 
  background-position: center !important; 
  border: 1px solid rgba(255,255,255,0.08) !important; 
  box-shadow: 0 12px 24px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

.wave-play-btn {
  position: absolute !important; 
  top: 50% !important; 
  left: 50% !important; 
  transform: translate(-50%, -50%) !important;
  width: 36px !important; 
  height: 36px !important; 
  border-radius: 50% !important; 
  display: grid !important; 
  place-items: center !important; 
  background: rgba(10,14,24,0.65) !important; 
  backdrop-filter: blur(4px) !important; 
  border: 1px solid rgba(255,255,255,0.15) !important; 
  color: #fff !important; 
  box-shadow: 0 8px 16px rgba(0,0,0,0.4) !important; 
  cursor: pointer; 
  transition: all 0.22s ease !important; 
  z-index: 2 !important;
}

.wave-play-btn:hover, .wave-track-container:hover .wave-play-btn {
  background: rgba(var(--cyan-rgb), 0.8) !important; 
  border-color: rgba(var(--cyan-rgb), 1) !important;
  transform: translate(-50%, -50%) scale(1.1) !important; 
  box-shadow: 0 10px 20px rgba(var(--cyan-rgb),0.4) !important;
}

.wave-track-title {
  display: block !important; 
  width: 100% !important; 
  max-width: 220px !important; 
  margin: 0 0 5px 0 !important; 
  color: #fff !important; 
  font-size: 1.04rem !important; 
  font-weight: 800 !important; 
  line-height: 1.08 !important; 
  white-space: nowrap !important; 
  overflow: hidden !important; 
  text-overflow: ellipsis !important;
}

.wave-track-artist, .artist-link {
  display: block !important; 
  width: 100% !important; 
  max-width: 220px !important; 
  color: rgba(255,255,255,0.56) !important; 
  font-size: .68rem !important; 
  font-weight: 700 !important; 
  letter-spacing: .18em !important; 
  text-transform: uppercase !important; 
  text-decoration: none !important; 
  white-space: nowrap !important; 
  overflow: hidden !important; 
  text-overflow: ellipsis !important; 
  transition: color 0.2s !important;
}

.artist-link:hover { 
  color: var(--cyan) !important; 
}

.waveform-container {
  width: 100% !important; 
  min-width: 0 !important; 
  min-height: 58px !important; 
  border-radius: 16px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.016)), rgba(255,255,255,0.015) !important; 
  border: 1px solid rgba(255,255,255,0.045) !important; 
  padding: 0 8px !important; 
  overflow: hidden !important; 
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02), inset 0 -1px 0 rgba(0,0,0,0.18) !important; 
  position: relative;
}

.vertical-line { 
  background: rgba(var(--cyan-rgb),0.78) !important; 
  box-shadow: 0 0 10px rgba(var(--cyan-rgb),0.2) !important; 
}

.waveform-tooltip { 
  background: rgba(8,10,18,0.96) !important; 
  color: #fff !important; 
  border: 1px solid rgba(var(--cyan-rgb),0.12) !important; 
  border-radius: 10px !important; 
  box-shadow: 0 12px 22px rgba(0,0,0,0.24) !important; 
  position: absolute; 
  display: none; 
  z-index: 10; 
  padding: 4px 8px; 
  font-size: 12px;
}

.wave-track-bpm, .wave-track-genre, .likes-container, .share-icon, .download-btn { 
  justify-self: center !important; 
  align-self: center !important; 
}

.wave-track-bpm {
  width: 84px !important; 
  min-width: 84px !important; 
  max-width: 84px !important; 
  min-height: 34px !important; 
  border-radius: 999px !important; 
  background: rgba(255,255,255,0.03) !important; 
  border: 1px solid rgba(255,255,255,0.05) !important; 
  color: var(--cyan) !important; 
  font-size: .66rem !important; 
  font-weight: 800 !important; 
  letter-spacing: .08em !important; 
  text-transform: uppercase !important; 
  white-space: nowrap !important; 
  display: inline-flex !important; 
  align-items: center !important; 
  justify-content: center !important;
}

.wave-track-genre {
  width: 136px !important; 
  min-width: 136px !important; 
  max-width: 136px !important; 
  min-height: 34px !important; 
  padding: 0 12px !important; 
  border-radius: 999px !important; 
  background: rgba(255,255,255,0.03) !important; 
  border: 1px solid rgba(255,255,255,0.05) !important; 
  color: rgba(255,255,255,0.8) !important; 
  font-size: .62rem !important; 
  font-weight: 700 !important; 
  letter-spacing: .08em !important; 
  text-transform: uppercase !important; 
  white-space: nowrap !important; 
  overflow: hidden !important; 
  text-overflow: ellipsis !important; 
  display: inline-flex !important; 
  align-items: center !important; 
  justify-content: center !important;
}

.likes-container { 
  width: 78px !important; 
  min-width: 78px !important; 
  max-width: 78px !important; 
  cursor: pointer; 
}

.btn-love {
  width: 78px !important; 
  min-width: 78px !important; 
  max-width: 78px !important; 
  min-height: 34px !important; 
  padding: 0 8px !important; 
  border-radius: 16px !important; 
  background: rgba(255,255,255,0.03) !important; 
  border: 1px solid rgba(255,255,255,0.05) !important; 
  display: grid !important; 
  grid-template-columns: 14px 1fr !important; 
  column-gap: 6px !important; 
  align-items: center !important; 
  justify-content: center !important; 
  box-shadow: none !important; 
  cursor: pointer; 
  color: var(--muted);
}

.btn-love .fa-heart { 
  font-size: .78rem !important; 
  transition: color 0.2s; 
}

.btn-love .like-count { 
  display: block !important; 
  max-width: 34px !important; 
  font-size: .56rem !important; 
  line-height: .86 !important; 
  text-align: left !important; 
  margin-left: 0 !important; 
  white-space: normal !important; 
  color: #fff;
}

.btn-love .small-ornament, .btn-love .circle { 
  display: none !important; 
}

.share-icon {
  width: 46px !important; 
  height: 46px !important; 
  min-width: 46px !important; 
  margin: 0 !important; 
  border-radius: 50% !important; 
  display: grid !important; 
  place-items: center !important; 
  background: rgba(255,255,255,0.03) !important; 
  border: 1px solid rgba(255,255,255,0.05) !important; 
  color: rgba(255,255,255,0.74) !important; 
  transition: all .2s ease !important; 
  cursor: pointer;
}

.share-icon:hover { 
  color: var(--cyan) !important; 
  border-color: rgba(var(--cyan-rgb),0.14) !important; 
  background: rgba(var(--cyan-rgb),0.05) !important; 
}

.download-btn {
  width: 78px !important; 
  min-width: 78px !important; 
  max-width: 78px !important; 
  min-height: 38px !important; 
  padding: 0 !important; 
  border-radius: 999px !important; 
  background: linear-gradient(180deg, rgba(17,22,34,0.98), rgba(9,13,22,0.98)) !important; 
  border: 1px solid rgba(var(--cyan-rgb),0.14) !important; 
  color: rgba(255,255,255,0.92) !important; 
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02) !important; 
  font-size: 0 !important; 
  cursor: pointer; 
  transition: all 0.2s;
}

.download-btn .download-btn-label { 
  display: none !important; 
}

.download-btn i { 
  color: var(--cyan) !important; 
  font-size: .82rem !important; 
  margin: 0 !important; 
}

.download-btn:hover { 
  transform: translateY(-1px) !important; 
  border-color: rgba(var(--cyan-rgb),0.24) !important; 
}

#pagination-container {
  display: flex !important; 
  justify-content: center !important; 
  align-items: center !important; 
  gap: 8px !important; 
  flex-wrap: wrap !important; 
  margin-top: 18px !important;
}

#pagination-container .pagination-btn {
  min-width: 40px !important; 
  min-height: 38px !important; 
  padding: 0 12px !important; 
  border-radius: 12px !important; 
  background: rgba(255,255,255,0.035) !important; 
  border: 1px solid rgba(255,255,255,0.05) !important; 
  color: rgba(255,255,255,0.84) !important; 
  box-shadow: none !important; 
  cursor: pointer; 
  transition: all 0.2s;
}

#pagination-container .pagination-btn:hover:not(:disabled) { 
  background: rgba(255,255,255,0.1) !important; 
  color: #fff !important; 
}

#pagination-container .pagination-btn.active { 
  background: rgba(var(--cyan-rgb),0.08) !important; 
  border-color: rgba(var(--cyan-rgb),0.16) !important; 
  color: #fff !important; 
}

/* ==========================================================================
   LIKE BUTTON ANIMATIONS (GSAP TARGETS)
   ========================================================================== */
@keyframes rotate360 { 
  from { transform: rotate(0deg); color: #ff5555; } 
  to { transform: rotate(360deg); color: #ff5555; } 
}

@keyframes pulse { 
  0% { transform: scale(1); color: #ff5555; } 
  50% { transform: scale(1.3); color: #ff0000; } 
  100% { transform: scale(1); color: #ff5555; } 
}

.btn-love.animate { 
  position: relative; 
}

/* ==========================================================================
   SHARE MENU (Dropdown pop-up)
   ========================================================================== */
.btro-premium-share-menu {
  position: absolute;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  width: 240px;
  background: rgba(12,12,18,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,0,0,0.2), inset 0 0 20px rgba(255,255,255,0.03);
  animation: btroMenuPop .2s cubic-bezier(.175,.885,.32,1.275) forwards;
  transform-origin: top right;
  padding: 6px;
  gap: 4px;
}

@keyframes btroMenuPop {
  from { opacity: 0; transform: scale(.9) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.btro-share-btn {
  width: 100%;
  border: none;
  background: transparent;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #b0b0d0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  border-radius: 10px;
  transition: all .2s ease;
}

.btro-share-btn i {
  font-size: 16px;
  width: 24px;
  text-align: center;
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
}

.btro-share-btn:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  transform: translateX(4px);
  box-shadow: -4px 0 0 var(--mint);
}

.btro-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5,0,20,0.95);
  color: var(--mint);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  z-index: 10001;
  border: 1px solid rgba(77,247,197,0.3);
  animation: btroFadeInUp .3s ease;
}

@keyframes btroFadeInUp {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ==========================================================================
   MODALS (Artist Post-Download Modal)
   ========================================================================== */
.modal-backdrop { 
  background-color: rgba(4,7,14,0.82) !important; 
  backdrop-filter: blur(8px); 
}

@keyframes modalFadeIn { 
  from { opacity: 0; } 
  to { opacity: 1; } 
}

@keyframes modalPopUp { 
  from { transform: translateY(30px) scale(0.95); opacity: 0; } 
  to { transform: translateY(0) scale(1); opacity: 1; } 
}

#artist-modal {
  display: none; 
  position: fixed !important;
  inset: 0 !important;
  z-index: 10500 !important;
  background: rgba(3, 5, 10, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  align-items: center !important; 
  justify-content: center !important;
}

#artist-modal.show {
  display: flex !important;
  animation: modalFadeIn 0.3s ease forwards !important;
}

#artist-modal .modal-dialog {
  display: block !important;
  margin: 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}

#artist-modal .modal-content {
  background: linear-gradient(180deg, rgba(13, 17, 28, 0.95), rgba(5, 7, 15, 0.98)) !important;
  border: 1px solid rgba(25, 230, 255, 0.2) !important;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(25, 230, 255, 0.15) !important;
  border-radius: 28px !important;
  width: 90% !important;
  max-width: 820px !important;
  padding: 60px 24px 30px !important;
  text-align: center !important;
  position: relative !important;
  transform: translateY(20px) !important;
  animation: modalPopUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
}

#artist-modal .modal-header,
#artist-modal .modal-footer {
  display: none !important;
}

#modal-artist-img {
  position: absolute !important;
  top: -50px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100px !important;
  height: 100px !important;
  border-radius: 50% !important;
  border: 3px solid var(--cyan) !important;
  box-shadow: 0 0 20px rgba(var(--cyan-rgb), 0.6), inset 0 0 15px rgba(0,0,0,0.8) !important;
  object-fit: cover !important;
  background: #000 !important;
  z-index: 10 !important;
}

#modal-artist-header {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 2.2rem !important;
  letter-spacing: 0.05em !important;
  color: #fff !important;
  margin: 0 0 8px !important;
  text-transform: uppercase !important;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5) !important;
}

#modal-artist-header .buy-coffee-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: var(--gold) !important;
  color: #000 !important;
  border: none !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  padding: 6px 14px !important;
  border-radius: 999px !important;
  box-shadow: 0 0 15px rgba(248, 196, 79, 0.4) !important;
  vertical-align: middle !important;
  text-decoration: none !important;
  margin-left: 10px !important;
  margin-top: -6px !important;
}

#modal-artist-status {
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  color: var(--muted) !important;
  margin-bottom: 24px !important;
}

#artist-modal-close {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  background: rgba(255,255,255,0.1) !important;
  border: none !important;
  color: #fff !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: grid !important;
  place-items: center !important;
  transition: all 0.2s !important;
  z-index: 20 !important;
}

#artist-modal-close:hover {
  background: var(--magenta) !important;
  color: #fff !important;
  box-shadow: 0 0 15px rgba(var(--magenta-rgb), 0.5) !important;
  transform: rotate(90deg) !important;
}

#modal-artist-links {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
}

#modal-artist-links .artist-profile-btn {
  width: 100% !important;
  background: var(--button-gradient) !important;
  color: #061018 !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
  box-shadow: 0 10px 25px rgba(var(--cyan-rgb), 0.25) !important;
  transition: transform 0.22s, box-shadow 0.22s !important;
  cursor: pointer !important;
}

#modal-artist-links .artist-profile-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 15px 35px rgba(var(--cyan-rgb), 0.4) !important;
}

#modal-artist-links a.btn {
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #fff !important;
  font-size: 1.1rem !important;
  transition: all 0.22s ease !important;
  text-decoration: none !important;
}

#modal-artist-links a.btn:hover {
  background: rgba(var(--magenta-rgb), 0.15) !important;
  border-color: var(--magenta) !important;
  color: var(--magenta) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 20px rgba(var(--magenta-rgb), 0.2) !important;
}

#artist-modal p, #artist-modal span, .modal-subtext, .availability-row {
  color: var(--muted) !important;
  font-size: 0.85rem !important;
}

.available-check { 
  color: var(--mint) !important; 
  margin-right: 5px; 
}

.subcategories-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  overflow-x: hidden;
  max-width: 100%;
  padding: 10px 0;
  box-sizing: border-box;
}
  
#subgenre-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  max-width: 100%;
  overflow-x: hidden;
}
  
.subgenre-button {
  white-space: nowrap;
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: #fafafa;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
  
.subgenre-button.active {
  background-color: #ff5555;
  color: white;
  border-color: #ff5555;
}
  
.modal-header {
  justify-content: center;
}

.availability-row {
  justify-content: center;
}

.wave-play-btn i {
  font-size: 1rem;
  color: #ffffff;
}
  
.page-header {
  padding-top: 90px;
}
  
@media (max-width: 768px) {
  /* COMMENTED OUT CONFLICTING LEGACY TRACK LISTING STYLES 
     These were breaking the new 8-column glassmorphism track layout.
     They have been neutralized here to allow the layout at the bottom of the file to work. 

  .waveform-container,
  .wave-track-bpm,
  .wave-track-genre {
    display: none;
  }
  
  #player-container {
    padding: 0px;
  }

  .page-header {
    padding: 0px 0px !important;
  }

  .wave-track-container {
    grid-template-columns: 60px 1fr 60px 40px 40px !important;
    gap: 10px;
  }
  
  .wave-track-title,
  .wave-track-artist {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    word-break: break-word;
    min-width: 0;
    flex-shrink: 1;
    max-width: 110px;
  }
  
  .wave-track-title {
    font-size: 0.9rem;
    max-width: 110px;
    min-width: 0;
  }
  
  .wave-track-artist {
    font-size: 0.8rem;
    max-width: 150px;
    color: #ccc;
  }

  .download-btn {
    width: 100%;
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  */
  
  .search-bar-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .search-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  
  .search-input-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 100%;
  }
  
  #search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
  }
  
  #search-input::placeholder {
    color: #999;
    font-size: 0.9rem;
  }
  
  #clear-search {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1rem;
    outline: none;
  }
  
  #subgenre-buttons {
    justify-content: center;
  }
  
  .subgenre-button {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  
  .subcategories-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
  }
  
  .subcat-chip.active {
    background-color: #ff5555;
    color: #333;
    border-color: #ff5555;
  }
  
  .subcat-chip {
    padding: 8px 12px;
  }
}
  
.sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: radial-gradient(circle, #ffcc00, #ff3333);
  border-radius: 50%;
  animation: sparkleAnimation 0.5s ease-out forwards;
  opacity: 0;
}
  
@keyframes sparkleAnimation {
  0% {
    transform: scale(1) translateY(0) rotate(0);
    opacity: 1;
  }
  50% {
    transform: scale(1.5) translateY(-30px) rotate(180deg);
    opacity: 0.7;
  }
  100% {
    transform: scale(2) translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}
  
.firework {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #ff33cc;
  border-radius: 50%;
  opacity: 0;
  animation: fireworkAnimation 1s forwards;
}
  
@keyframes fireworkAnimation {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: scale(3) translate(30px, -30px);
    opacity: 0.6;
  }
  100% {
    transform: scale(0) translate(50px, -50px);
    opacity: 0;
  }
}
  
.message {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff5555;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
  
/************************************************
   NEW "btn-love" Like Button (Heart Animation)
************************************************/
  
.btn-love {
  margin: 0 auto;
  cursor: pointer;
  background: transparent;
  border: none;
  font-size: 16px;
  outline: none;
  color: #c0c1c3;
  padding: 0;
  width: 80px; 
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  overflow: visible;
}
  
.btn-love .fa-heart {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
  margin-right: 6px;
}
  
.btn-love .small-ornament,
.btn-love .circle {
  pointer-events: none;
  position: absolute;
  width: 135px;
  height: 135px;
  margin-left: -67.5px;
  margin-top: -67.5px;
  left: 50%;
  top: 50%;
  transform: scale(0);
}
  
.btn-love .small-ornament,
.btn-love .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
}
  
.small-ornament,
.circle {
  position: absolute;
  width: 135px;
  height: 135px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
}
  
.btn-love .ornament {
  z-index: 999;
}

.btn-love .circle {
  z-index: 100;
}
  
.btn-love .ornament.o-1 {
  background: #988ADE;
  transform: translate(-90px, -50px);
}

.btn-love .ornament.o-2 {
  background: #DE8AA0;
  transform: translate(0px, -100px);
}

.btn-love .ornament.o-3 {
  background: #8AAEDE;
  transform: translate(90px, -50px);
}

.btn-love .ornament.o-4 {
  background: #8ADEAD;
  transform: translate(90px, 50px);
}

.btn-love .ornament.o-5 {
  background: #DEC58A;
  transform: translate(0px, 100px);
}

.btn-love .ornament.o-6 {
  background: #8AD1DE;
  transform: translate(-90px, 50px);
}
  
.btn-love .circle {
  position: absolute;
  width: 135px;
  height: 135px;
  margin-left: -67.5px;
  margin-top: -67.5px;
  border-radius: 50%;
  opacity: 0;
  left: 50%;
  top: 50%;
  transform: translate(0px, 0px) rotate(0deg) scale(0);
  transform-origin: 50% 50% 0px;
}

.btn-love .circle svg {
  width: 100%;
  height: 100%;
}
  
@media (max-width: 768px) {
  .btn-love {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    gap: 2px;
  }

  .btn-love .fa-heart {
    font-size: 16px;
    margin: 0;
  }
  
  .btn-love .like-count {
    font-size: 12px;
    margin: 0;
    text-align: center;
  }

  .like-count {
    margin-left: 0px !important;
    font-size: 12px !important;
  }
}

/* COMMENTED OUT CONFLICTING LEGACY TRACK LISTING STYLES
@media (max-width: 390px) {
  .wave-track-container {
    display: grid;
    grid-template-columns: 60px 1fr 50px 40px 40px !important;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 310px;
  }

  .wave-track-title {
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .wave-track-cover {
    width: 45px; 
    height: 45px;
  }

  .wave-track-artist {
    max-width: 80px;
  }

  .download-btn {
    width: 35px; 
    height: 35px;
  }

  .share-icon {
    display: flex !important;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .share-icon svg {
    display: block !important;
    width: 100%;
    height: auto;
  }
}
*/

/* =========================================================
   ARTIST PAGE — SEARCH + SUBGENRE PILLS
   1440 desktop width + selected pill matches download button
   ========================================================= */

.top-search-area {
  width: 100%;
  display: block !important;
  padding: 0 !important;
  margin: 0 0 18px 0 !important;
}

.top-search-area .search-bar-container {
  width: 100% !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 16px 16px 14px !important;
  background: linear-gradient(135deg, rgba(8,12,22,0.96), rgba(4,8,16,0.96)) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 18px !important;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.03) !important;
}

.top-search-area .search-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 64px !important;
  gap: 10px !important;
  align-items: center !important;
  margin: 0 0 12px 0 !important;
}

.top-search-area .search-input-container {
  position: relative !important;
  width: 100% !important;
}

.top-search-area #search-input {
  width: 100% !important;
  height: 48px !important;
  padding: 0 42px 0 14px !important;
  background: rgba(255,255,255,0.045) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02) !important;
}

.top-search-area #search-input::placeholder {
  color: rgba(255,255,255,0.42) !important;
  font-size: 0.84rem !important;
  font-weight: 500 !important;
}

.top-search-area #search-input:focus {
  outline: none !important;
  border-color: rgba(25,230,255,0.45) !important;
  box-shadow:
    0 0 0 1px rgba(25,230,255,0.18),
    0 0 18px rgba(25,230,255,0.12) !important;
}

.top-search-area #clear-search {
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,0.42) !important;
  cursor: pointer !important;
  font-size: 0.88rem !important;
}

.top-search-area #clear-search:hover {
  color: #fff !important;
}

.top-search-area #search-button {
  width: 64px !important;
  height: 48px !important;
  min-width: 64px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  background: linear-gradient(180deg, rgba(17,22,34,0.98), rgba(9,13,22,0.98)) !important;
  border: 1px solid rgba(25,230,255,0.24) !important;
  color: #19e6ff !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 10px 24px rgba(0,0,0,0.28) !important;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease !important;
}

.top-search-area #search-button:hover {
  transform: translateY(-1px) !important;
  background: linear-gradient(180deg, rgba(21,27,40,0.98), rgba(10,14,24,0.98)) !important;
  border-color: rgba(25,230,255,0.36) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 14px 30px rgba(0,0,0,0.34),
    0 0 18px rgba(25,230,255,0.12) !important;
}

.top-search-area #search-button i,
.top-search-area #search-button svg {
  color: #19e6ff !important;
  fill: #19e6ff !important;
}

.top-search-area .subcategories-row,
.top-search-area #subgenre-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  justify-content: flex-start !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  padding: 0 !important;
  margin: 0 !important;
}

.top-search-area .subgenre-button {
  appearance: none !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025)) !important;
  color: rgba(255,255,255,0.82) !important;
  padding: 6px 10px !important;
  min-height: 28px !important;
  border-radius: 999px !important;
  font-size: 0.64rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03) !important;
  transition:
    transform 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease !important;
}

.top-search-area .subgenre-button:hover {
  transform: translateY(-1px) !important;
  color: #fff !important;
  border-color: rgba(25,230,255,0.18) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)) !important;
  box-shadow:
    0 6px 16px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.03) !important;
}

.top-search-area .subgenre-button.active {
  color: #19e6ff !important;
  border: 1px solid rgba(25,230,255,0.24) !important;
  background: linear-gradient(180deg, rgba(17,22,34,0.98), rgba(9,13,22,0.98)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 10px 24px rgba(0,0,0,0.28) !important;
}

.top-search-area .subgenre-button.active:hover {
  color: #19e6ff !important;
  border-color: rgba(25,230,255,0.36) !important;
  background: linear-gradient(180deg, rgba(21,27,40,0.98), rgba(10,14,24,0.98)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 14px 30px rgba(0,0,0,0.34),
    0 0 18px rgba(25,230,255,0.12) !important;
}

@media (max-width: 768px) {
  .top-search-area {
    margin-bottom: 14px !important;
  }

  .top-search-area .search-bar-container {
    max-width: 100% !important;
    padding: 12px !important;
    border-radius: 14px !important;
  }

  .top-search-area .search-row {
    grid-template-columns: minmax(0, 1fr) 56px !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
  }

  .top-search-area #search-input {
    height: 44px !important;
    font-size: 0.86rem !important;
  }

  .top-search-area #search-button {
    width: 56px !important;
    height: 44px !important;
    min-width: 56px !important;
    border-radius: 999px !important;
  }

  .top-search-area .subcategories-row,
  .top-search-area #subgenre-buttons {
    gap: 6px !important;
  }

  .top-search-area .subgenre-button {
    padding: 6px 9px !important;
    min-height: 26px !important;
    font-size: 0.58rem !important;
    letter-spacing: 0.07em !important;
  }
}

/* ==========================================================================
   SHARE STUDIO (Promo Card Generator) — MOBILE FIXED
   ========================================================================== */
.studio-backdrop {
  position:fixed;
  inset:0;
  z-index:20000;
  background:rgba(5,2,15,0.95);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  opacity:0;
  pointer-events:none;
  transition:opacity .28s ease;
}

.studio-backdrop.active {
  opacity:1;
  pointer-events:all;
}

.studio-panel {
  width:min(100%, 520px);
  max-height:calc(100dvh - 36px);
  overflow:auto;
  background:
    radial-gradient(circle at top left, rgba(25,230,255,0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(255,56,207,0.08), transparent 28%),
    linear-gradient(180deg, rgba(14,10,30,0.96), rgba(6,8,16,0.98));
  border:1px solid rgba(255,255,255,0.10);
  border-radius:28px;
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:18px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.78),
    inset 0 1px 0 rgba(255,255,255,0.04);
  scrollbar-width:thin;
}

.studio-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  color:#fff;
}

.studio-header h3 {
  margin:0;
  font-family:'Bebas Neue', sans-serif;
  font-size:2.5rem;
  line-height:1;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#fff;
}

.studio-close {
  width:44px;
  height:44px;
  border:none;
  border-radius:14px;
  background:transparent;
  color:#fff;
  font-size:1.8rem;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:background .18s ease, transform .18s ease, opacity .18s ease;
  opacity:.9;
}

.studio-close:hover {
  background:rgba(255,255,255,0.08);
  transform:scale(1.04);
  opacity:1;
}

/* key fix: preview box changes shape by format */
.studio-preview-area {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto;
  background:#000;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.03);
  transition:width .22s ease, max-width .22s ease, aspect-ratio .22s ease;
}

/* Story / TikTok mode */
.studio-panel.story-mode .studio-preview-area {
  width:min(100%, 340px);
  aspect-ratio:9 / 16;
}

/* Feed / square mode */
.studio-panel.feed-mode .studio-preview-area {
  width:100%;
  max-width:420px;
  aspect-ratio:1 / 1;
}

#final-preview-img {
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  background:transparent;
}

.studio-loader {
  position:absolute;
  inset:0;
  background:rgba(5,0,20,0.65);
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:50;
  opacity:0;
  pointer-events:none;
  transition:opacity .35s cubic-bezier(.25,.8,.25,1);
  border-radius:inherit;
}

.studio-loader.active {
  opacity:1;
  pointer-events:all;
}

.vinyl-spinner {
  width:80px;
  height:80px;
  border-radius:50%;
  position:relative;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.9) 100%);
  border:1px solid rgba(255,255,255,0.12);
  border-top:1px solid rgba(255,255,255,0.3);
  box-shadow:0 15px 35px rgba(0,0,0,0.6), 0 0 30px rgba(57,255,182,0.15);
  animation:spinVinyl 1.2s cubic-bezier(.4,0,.2,1) infinite;
}

.vinyl-spinner::before {
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:24px;
  height:24px;
  border-radius:50%;
  background:linear-gradient(135deg, #39ffb6, #00d8ff);
  border:2px solid rgba(0,0,0,0.5);
  box-shadow:0 0 15px rgba(57,255,182,0.8);
}

.vinyl-spinner::after {
  content:'';
  position:absolute;
  inset:0;
  border-radius:50%;
  background:conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,0.15) 45deg, transparent 70deg);
  mix-blend-mode:overlay;
  pointer-events:none;
}

.loading-text {
  margin-top:24px;
  font-family:'Bebas Neue', sans-serif;
  font-size:1.5rem;
  letter-spacing:3px;
  background:linear-gradient(90deg, #fff, #b0b0d0);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 0 20px rgba(139,91,255,0.4);
  animation:pulseText 2s ease-in-out infinite;
  text-transform:uppercase;
}

@keyframes spinVinyl {
  0% { transform:rotate(0deg); }
  100% { transform:rotate(360deg); }
}

@keyframes pulseText {
  0%, 100% { opacity:.6; transform:scale(.98); }
  50% { opacity:1; transform:scale(1.02); }
}

.format-toggle {
  display:flex;
  background:rgba(0,0,0,0.34);
  padding:4px;
  border-radius:16px;
  gap:4px;
}

.fmt-btn {
  flex:1;
  min-height:58px;
  background:none;
  border:none;
  padding:0 14px;
  color:rgba(255,255,255,0.5);
  font-weight:800;
  cursor:pointer;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:all .2s ease;
  font-size:1rem;
}

.fmt-btn.active {
  background:rgba(255,255,255,0.12);
  color:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
}

.action-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.action-row > * {
  width:100%;
  min-height:60px;
}

.studio-panel .btn-custom,
.studio-panel .btn-share,
.studio-panel .btn-custom-wide {
  width:100%;
  padding:14px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.studio-panel .btn-custom {
  border:1px solid rgba(255,255,255,0.18) !important;
  background:linear-gradient(180deg, rgba(18,16,34,0.95), rgba(10,10,22,0.98)) !important;
  color:#fff !important;
  box-shadow:none !important;
}

.studio-panel .btn-share,
.studio-panel .btn-custom-wide {
  background:linear-gradient(90deg, #39ffb6 0%, #00d8ff 100%) !important;
  color:#050014 !important;
  border:none !important;
  font-weight:900 !important;
  box-shadow:0 8px 26px rgba(57,255,182,0.35) !important;
}

#generator-wrapper {
  position: fixed;
  top: 0;
  left: -9999px;
  width: 5000px !important;
  height: 5000px !important;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

#generator-wrapper,
#generator-wrapper * {
  max-width: none !important;
  max-height: none !important;
}

.gen-template {
  position:relative;
  overflow:hidden;
  background:#05020f;
  font-family:'Inter', sans-serif;
  text-align:center;
  color:#fff;
  box-sizing:border-box !important;
  flex-shrink:0 !important;
  transform:scale(1);
}

.gen-cover-img {
  width:100%;
  height:100%;
  background-size:cover !important;
  background-position:center !important;
  background-repeat:no-repeat !important;
  border-radius:inherit;
  box-shadow:inset 0 0 0 2px rgba(255,255,255,0.1);
}

.gen-bg {
  position:absolute;
  inset:0;
  opacity:.6;
  z-index:1;
}

.gen-noise {
  position:absolute;
  inset:0;
  z-index:2;
  opacity:.15;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
}

.gen-content {
  position:relative;
  z-index:10;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.tpl-story { width:1080px; height:1920px; }

.tpl-story .gen-cover-large {
  width:850px;
  height:850px;
  border-radius:40px;
  box-shadow:0 60px 120px -20px rgba(0,0,0,0.9), 0 0 0 6px rgba(255,255,255,0.08);
  margin-bottom:90px;
  position:relative;
}

.tpl-story h1 {
  font-family:'Bebas Neue', sans-serif !important;
  font-size:8rem !important;
  margin:0 0 15px;
  padding:0 40px;
  line-height:.85;
  text-transform:uppercase;
  letter-spacing:2px;
  text-shadow:0 10px 40px rgba(0,0,0,0.6);
}

.tpl-story h2 {
  position:relative;
  top:26px;
  font-size:2.4rem;
  color:#2fffd5;
  margin:0;
  text-transform:uppercase;
  letter-spacing:.25em;
  font-weight:700;
  opacity:.9;
  text-shadow:0 0 30px rgba(47,255,213,0.4);
}

.tpl-story .gen-footer { 
  margin-top:140px; 
  opacity:1; 
}

.tpl-square { width:1080px; height:1080px; }

.tpl-square .gen-content { padding:60px; }

.tpl-square .gen-row {
  display:flex;
  align-items:center;
  gap:60px;
  text-align:left;
  width:100%;
  background:rgba(0,0,0,0.4);
  padding:50px;
  border-radius:50px;
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(20px);
}

.tpl-square .gen-cover-small {
  width:400px;
  height:400px;
  border-radius:25px;
  flex-shrink:0;
  box-shadow:0 25px 60px rgba(0,0,0,0.6);
}

.tpl-square h1 {
  font-family:'Bebas Neue', sans-serif !important;
  font-size:5.5rem !important;
  margin:0 0 15px;
  line-height:.9;
}

.tpl-square h2 {
  font-size:2rem;
  color:#2fffd5;
  letter-spacing:.2em;
  text-transform:uppercase;
  font-weight:700;
}

.gen-dot {
  width:14px;
  height:14px;
  background:#2fffd5;
  border-radius:50%;
  display:inline-block;
  margin-right:14px;
  box-shadow:0 0 20px #2fffd5;
}

.gen-brand {
  font-size:1.4rem;
  text-transform:uppercase;
  font-weight:700;
  letter-spacing:.2em;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.08);
  padding:12px 30px;
  border-radius:100px;
  border:1px solid rgba(255,255,255,0.05);
}

.gen-brand.mini {
  font-size:1.1rem;
  margin-top:35px;
  opacity:.7;
  justify-content:flex-start;
  background:none;
  padding:0;
  border:none;
}

.gen-wave {
  display:flex;
  gap:14px;
  justify-content:center;
  margin-bottom:40px;
  height:60px;
  align-items:flex-end;
}

.gen-wave span {
  width:12px;
  background:#fff;
  border-radius:10px;
  height:30%;
  opacity:.4;
}

.gen-wave span:nth-child(3n) {
  height:100%;
  background:#2fffd5;
  opacity:1;
  box-shadow:0 0 25px rgba(47,255,213,0.6);
}

.gen-wave span:nth-child(2n) { height:60%; }
.gen-wave span:nth-child(4n) { height:80%; }

@media (max-width: 767px) {
  .studio-backdrop {
    align-items:flex-start;
    padding:8px;
  }

  .studio-panel {
    width:calc(100vw - 16px);
    max-width:calc(100vw - 16px);
    max-height:calc(100dvh - 16px);
    border-radius:22px;
    padding:16px;
    gap:14px;
  }

  .studio-header h3 {
    font-size:2.15rem;
  }

  .studio-close {
    width:40px;
    height:40px;
    font-size:1.65rem;
    border-radius:12px;
  }

  .studio-panel.story-mode .studio-preview-area {
    width:min(100%, 300px);
  }

  .studio-panel.feed-mode .studio-preview-area {
    width:100%;
    max-width:none;
  }

  .format-toggle {
    border-radius:14px;
  }

  .fmt-btn {
    min-height:52px;
    font-size:.95rem;
    gap:6px;
  }

  .action-row {
    gap:10px;
  }

  .action-row > * {
    min-height:56px;
  }
}

@media (max-width: 420px) {
  .studio-panel {
    padding:14px;
  }

  .studio-header h3 {
    font-size:1.95rem;
  }

  .studio-panel.story-mode .studio-preview-area {
    width:min(100%, 280px);
  }

  .fmt-btn {
    min-height:50px;
    font-size:.9rem;
  }

  .action-row > * {
    min-height:54px;
  }
}

/* ==========================================================================
   CUSTOM NEON EQUALIZER LOADER
   ========================================================================== */
.btro-eq-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 80px 0;
  min-height: 150px;
}

.btro-eq-bar {
  width: 10px;
  height: 50px;
  background: var(--cyan, #19e6ff);
  border-radius: 999px;
  box-shadow: 0 0 15px rgba(25, 230, 255, 0.6);
  animation: btro-equalize 1.2s ease-in-out infinite;
  transform-origin: bottom;
}

/* Stagger the animations so it looks like music pumping */
.btro-eq-bar:nth-child(1) { animation-delay: -1.2s; }
.btro-eq-bar:nth-child(2) { animation-delay: -1.0s; }
.btro-eq-bar:nth-child(3) { animation-delay: -0.8s; }
.btro-eq-bar:nth-child(4) { animation-delay: -0.6s; }
.btro-eq-bar:nth-child(5) { animation-delay: -0.4s; }

@keyframes btro-equalize {
  0%, 100% { 
    transform: scaleY(0.3); 
    opacity: 0.4; 
  }
  50% { 
    transform: scaleY(1); 
    opacity: 1; 
    box-shadow: 0 0 25px rgba(25, 230, 255, 0.9);
  }
}

/* ==========================================================================
   UPCOMING EVENTS BLOCK
   ========================================================================== */
.artist-events-section {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.events-kicker { color: var(--mint); }
.events-kicker::before { background: var(--mint); box-shadow: 0 0 14px rgba(var(--mint-rgb), 0.45); }

.artist-events-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 12px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.event-item:hover {
  border-color: rgba(var(--mint-rgb), 0.3);
  background: linear-gradient(90deg, rgba(var(--mint-rgb), 0.05), rgba(255, 255, 255, 0.01));
}

.event-details h4 {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
}

.event-details span {
  display: block;
  margin-top: 5px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
}

.event-details span i {
  color: var(--mint);
  margin-right: 4px;
}

.event-ticket-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 10px;
  background: rgba(var(--mint-rgb), 0.1);
  border: 1px solid rgba(var(--mint-rgb), 0.3);
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
}

.event-ticket-btn:hover {
  background: var(--mint);
  color: #000;
  box-shadow: 0 0 15px rgba(var(--mint-rgb), 0.4);
  transform: translateY(-1px);
}

/* ==========================================================================
   MEDIA QUERIES (Layout Resizing)
   ========================================================================== */
@media (max-width: 1240px) {
  .artist-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .artist-side-stack { grid-template-columns: 1fr; }
  .main-content { width: min(1440px, calc(100vw - 24px)) !important; padding: 20px !important; }
  .wave-track-container { grid-template-columns: 64px 190px 1fr 72px 118px 68px 42px 70px !important; gap: 12px !important; }
  .wave-track-container > :nth-child(2), .wave-track-title, .wave-track-artist, .artist-link { max-width: 190px !important; }
  .wave-track-container > :nth-child(2) { width: 190px !important; min-width: 190px !important; max-width: 190px !important; }
  .wave-track-genre { width: 118px !important; min-width: 118px !important; max-width: 118px !important; }
}

@media (max-width: 991px) {
  .artist-topbar-inner { min-height: 68px; }
  .navbar-brand { font-size: 1.7rem; }
  .artist-hero-shell { padding: 20px; min-height: auto; }
  .artist-brand-panel { padding: 22px; }
  .artist-brand-top { flex-direction: column; align-items: flex-start; }
  .profile-media-wrapper { width: 150px; height: 150px; }
  .stats-section { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stat-item:nth-child(2) { border-right: none; }
  .brand-qr-panel { grid-template-columns: 1fr; justify-items: start; }
  #artist-modal .modal-content { max-width: 520px !important; }

  .wave-track-cover { 
    position: relative !important; 
    width: 52px !important; 
    height: 52px !important; 
    min-width: 52px !important; 
    border-radius: 13px !important; 
  }
}

@media (max-width: 767px) {
  #artist-modal .modal-content { max-width: 420px !important; }
  .page-shell, .content-section-shell, .artist-topbar-inner { width: 100%; padding-left: 8px; padding-right: 8px; overflow-x: hidden; }
  .navbar-brand { font-size: 1.3rem; gap: 8px; }
  .artist-enter-chip { min-height: 32px; padding: 0 12px; font-size: 0.65rem; letter-spacing: 0.1em; gap: 6px; }
  .artist-enter-chip i { font-size: 0.75rem; }
  .artist-marquee { position: relative; margin: 16px 0 18px; overflow: hidden; width: 100%; border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; background: linear-gradient(90deg, rgba(var(--magenta-rgb),0.12), rgba(255,255,255,0.02), rgba(var(--cyan-rgb),0.12)); }
  .artist-marquee-track { gap: 24px; padding: 10px 16px; font-size: .68rem; }
  
  .artist-hero-shell { padding: 14px; }
  .profile-section { border-radius: 22px; }
  .artist-brand-panel, .panel-card, .smartlinks-section, .videos-section { border-radius: 18px; }
  .artist-name { font-size: clamp(3.2rem, 16vw, 5.2rem); line-height: .88; }
  .artist-tagline, .artist-bio { font-size: .94rem; line-height: 1.8; }
  .artist-action-row { flex-direction: column; }
  .btn-share, .btn-custom, .btn-custom-wide, .latest-release-cta, .latest-release-ghost { width: 100%; }
  .profile-media-wrapper { width: 124px; height: 124px; }
  .glass-play-btn { width: 48px; height: 48px; }
  .stats-section { grid-template-columns: 1fr 1fr; }
  .stat-item { min-height: 108px; padding: 22px 18px 20px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .smartlinks-section, .videos-section { padding: 18px; }
  .smartlinks-heading, .videos-heading { font-size: 2.5rem; }
  .smartlinks-container { grid-template-columns: 1fr; }
  .main-content { width: calc(100vw - 16px) !important; max-width: calc(100vw - 16px) !important; margin: 18px auto 0 !important; padding: 12px !important; border-radius: 18px !important; }
  #totalRecords { font-size: 2.2rem !important; padding-bottom: 10px !important; margin-bottom: 14px !important; }
  #totalRecords::before { font-size: .66rem !important; letter-spacing: .22em !important; }
  
  .wave-track-container { grid-template-columns: auto 1fr auto auto !important; grid-template-rows: auto auto auto !important; gap: 10px 12px !important; padding: 12px !important; min-height: auto !important; border-radius: 15px !important; }
  .wave-track-container > :nth-child(1) { grid-column: 1; grid-row: 1; }
  .wave-track-container > :nth-child(2) { grid-column: 2 / 4; grid-row: 1; width: auto !important; min-width: 0 !important; max-width: 100% !important; }
  .wave-track-container > :nth-child(7) { grid-column: 4; grid-row: 1; justify-self: end !important; align-self: start !important; }
  .wave-track-container > :nth-child(3) { grid-column: 1 / 5; grid-row: 2; min-height: 44px !important; margin: 4px 0 !important; }
  .wave-track-container > :nth-child(4) { grid-column: 1; grid-row: 3; justify-self: start !important; }
  .wave-track-container > :nth-child(5) { grid-column: 2; grid-row: 3; justify-self: start !important; align-self: center !important; }
  .wave-track-container > :nth-child(6) { grid-column: 3; grid-row: 3; justify-self: end !important; }
  .wave-track-container > :nth-child(8) { grid-column: 4; grid-row: 3; justify-self: end !important; }
  .wave-track-cover { width: 52px !important; height: 52px !important; min-width: 52px !important; border-radius: 13px !important; }
  .wave-play-btn { width: 30px !important; height: 30px !important; }
  .wave-track-title, .wave-track-artist, .artist-link { max-width: 100% !important; }
  .wave-track-title { font-size: .88rem !important; margin-bottom: 4px !important; }
  .wave-track-artist, .artist-link { font-size: .6rem !important; letter-spacing: .14em !important; }
  .waveform-container { min-height: 44px !important; border-radius: 12px !important; }
  .wave-track-bpm { background: transparent !important; border: none !important; padding: 0 !important; width: auto !important; min-width: 0 !important; max-width: none !important; font-size: .65rem !important; color: var(--cyan) !important; min-height: auto !important; }
  .wave-track-genre { background: transparent !important; border: none !important; padding: 0 !important; width: auto !important; min-width: 0 !important; max-width: none !important; font-size: .65rem !important; color: rgba(255,255,255,0.5) !important; min-height: auto !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
  .wave-track-genre::before { content: '•'; margin-right: 6px; color: rgba(255,255,255,0.2); }
  .likes-container, .btn-love { width: auto !important; min-width: 48px !important; max-width: none !important; height: 28px !important; min-height: 28px !important; }
  .btn-love { flex-direction: row !important; padding: 0 8px !important; gap: 4px !important; border-radius: 20px !important; background: rgba(255,85,85,0.1) !important; border: 1px solid rgba(255,85,85,0.2) !important; }
  .btn-love .fa-heart { font-size: .7rem !important; }
  .btn-love .like-count { font-size: .55rem !important; line-height: 1 !important; margin-left: 0 !important; }
  .share-icon { width: 32px !important; height: 32px !important; min-width: 32px !important; font-size: .85rem !important; }
  .download-btn { width: 32px !important; height: 32px !important; min-width: 32px !important; max-width: 32px !important; min-height: 32px !important; border-radius: 50% !important; background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important; padding: 0 !important; display: flex !important; align-items: center !important; justify-content: center !important; margin: 0 !important; }
  .download-btn span, .download-btn-label { display: none !important; }
  .download-btn i { font-size: .75rem !important; margin: 0 !important; }
  
  .email-form-wrapper { flex-direction: column; }
  .email-input { min-height: 48px; }
  .email-submit { min-height: 48px; width: 100%; }
  
  .artist-brand-banner { height: 220px; margin-bottom: 16px; border-radius: 18px; }
  .artist-brand-banner-content { left: 16px; bottom: 16px; }
}

/* =========================
   PATCH — fix artist marquee overlap on mobile
   keep slow scrolling
   ========================= */

.artist-marquee {
  overflow: hidden !important;
}

.artist-marquee-track {
  display: flex !important;
  align-items: center !important;
  gap: 38px !important;
  width: max-content !important;
  min-width: max-content !important;
  white-space: nowrap !important;
  animation: marqueeMove 52s linear infinite !important;
  will-change: transform;
}

.artist-marquee-track span {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}

.artist-marquee-track span strong {
  margin-right: 8px !important;
}

@media (max-width: 767px) {
  .artist-marquee {
    margin: 12px 0 14px !important;
    border-radius: 14px !important;
  }

  .artist-marquee-track {
    gap: 18px !important;
    padding: 10px 14px !important;
    font-size: 0.58rem !important;
    letter-spacing: 0.10em !important;
    animation: marqueeMove 40s linear infinite !important;
  }

  .artist-marquee-track span strong {
    margin-right: 6px !important;
  }
}

@media (max-width: 480px) {
  .artist-marquee {
    margin: 10px 0 12px !important;
    border-radius: 12px !important;
  }

  .artist-marquee-track {
    gap: 14px !important;
    padding: 9px 12px !important;
    font-size: 0.53rem !important;
    letter-spacing: 0.07em !important;
    animation: marqueeMove 46s linear infinite !important;
  }

  .artist-marquee-track span strong {
    margin-right: 5px !important;
  }
}

/* ==========================================================================
   VIP EMAIL CAPTURE ANIMATIONS
   ========================================================================== */
.vip-success-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0;
  animation: modalFadeIn 0.4s ease forwards;
}

/* The glowing pulsing lock */
.neon-pulse-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  position: relative;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 15px rgba(var(--cyan-rgb), 0.4);
}

.neon-pulse-ring i {
  color: var(--cyan);
  font-size: 14px;
  text-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.8);
}

/* The expanding radar wave */
.neon-pulse-ring::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  animation: neonPing 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes neonPing {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.vip-msg-text {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vip-msg-subtext {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}

/* ==========================================
   SHARE MODAL — PREMIUM DARK GLASS
   ========================================== */

#shareModal .modal-dialog {
  max-width: 980px;
}

#shareModal .modal-content {
  background:
    radial-gradient(circle at top left, rgba(25,230,255,0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(255,56,207,0.08), transparent 22%),
    linear-gradient(180deg, rgba(9,14,25,0.96), rgba(5,8,15,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  color: #fff;
}

#shareModal .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 22px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

#shareModal .modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

#shareModal .btn-close {
  filter: invert(1) grayscale(1);
  opacity: 0.75;
  transform: scale(1.15);
}

#shareModal .btn-close:hover {
  opacity: 1;
}

#shareModal .modal-body {
  padding: 30px 28px 32px;
}

#shareModal .modal-body > p {
  text-align: center;
  margin-bottom: 1.7rem !important;
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

#shareModal .row {
  --bs-gutter-x: 16px;
  --bs-gutter-y: 16px;
}

#shareModal .share-option {
  width: 100%;
  min-height: 72px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
    linear-gradient(135deg, rgba(25,230,255,0.03), rgba(255,56,207,0.03));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 14px 30px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.03);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

#shareModal .share-option i {
  font-size: 1.4rem;
  color: var(--cyan);
  transition: color 0.22s ease, transform 0.22s ease;
}

#shareModal .share-option:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--cyan-rgb),0.35);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    linear-gradient(135deg, rgba(25,230,255,0.06), rgba(255,56,207,0.06));
  box-shadow:
    0 24px 45px rgba(0,0,0,0.34),
    0 0 24px rgba(var(--cyan-rgb),0.08);
  color: #fff;
}

#shareModal .share-option:hover i {
  color: #fff;
  transform: scale(1.08);
}

#shareModal .share-option:focus {
  outline: none;
}

#shareModal .share-option:focus-visible {
  box-shadow:
    0 0 0 3px rgba(var(--cyan-rgb),0.22),
    0 24px 45px rgba(0,0,0,0.34);
}

@media (max-width: 767px) {
  #shareModal .modal-dialog {
    max-width: calc(100vw - 18px);
    margin: 9px auto;
  }

  #shareModal .modal-content {
    border-radius: 22px;
  }

  #shareModal .modal-header {
    padding: 18px 18px;
  }

  #shareModal .modal-title {
    font-size: 2rem;
  }

  #shareModal .modal-body {
    padding: 20px 18px 22px;
  }

  #shareModal .share-option {
    min-height: 62px;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    border-radius: 14px;
  }

  #shareModal .share-option i {
    font-size: 1.15rem;
  }
}

/* 1. Fix preview box aspect ratios to use the data-format attributes set by JS */
.studio-panel[data-format="story"] .studio-preview-area,
.studio-preview-area[data-format="story"] {
  width: min(100%, 340px);
  aspect-ratio: 9 / 16;
}

.studio-panel[data-format="square"] .studio-preview-area,
.studio-preview-area[data-format="square"] {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
}

@media (max-width: 767px) {
  .studio-panel[data-format="story"] .studio-preview-area,
  .studio-preview-area[data-format="story"] {
    width: min(100%, 300px);
  }
  .studio-panel[data-format="square"] .studio-preview-area,
  .studio-preview-area[data-format="square"] {
    width: 100%;
    max-width: none;
  }
}

/* 2. Fix the Template CSS selectors from classes (.) to IDs (#) so they lock to fixed dimensions */
#tpl-story { 
  width: 1080px; 
  height: 1920px; 
}

#tpl-story .gen-cover-large {
  width: 850px;
  height: 850px;
  border-radius: 40px;
  box-shadow: 0 60px 120px -20px rgba(0,0,0,0.9), 0 0 0 6px rgba(255,255,255,0.08);
  margin-bottom: 90px;
  position: relative;
}

#tpl-story h1 {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 8rem !important;
  margin: 0 0 15px;
  padding: 0 40px;
  line-height: .85;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

#tpl-story h2 {
  position: relative;
  top: 26px;
  font-size: 2.4rem;
  color: #2fffd5;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-weight: 700;
  opacity: .9;
  text-shadow: 0 0 30px rgba(47,255,213,0.4);
}

#tpl-story .gen-footer { 
  margin-top: 140px; 
  opacity: 1; 
}

#tpl-square { 
  width: 1080px; 
  height: 1080px; 
}

#tpl-square .gen-content { 
  padding: 60px; 
}

#tpl-square .gen-row {
  display: flex;
  align-items: center;
  gap: 60px;
  text-align: left;
  width: 100%;
  background: rgba(0,0,0,0.4);
  padding: 50px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
}

#tpl-square .gen-cover-small {
  width: 400px;
  height: 400px;
  border-radius: 25px;
  flex-shrink: 0;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

#tpl-square h1 {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 5.5rem !important;
  margin: 0 0 15px;
  line-height: .9;
}

#tpl-square h2 {
  font-size: 2rem;
  color: #2fffd5;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
}


/* SCOPE THIS TO YOUR ARTIST PAGE ROOT ONLY */
#artistProfilePage {
  position: relative;
  isolation: isolate;
}

/* sticky / fixed header */
#artistProfilePage .artistStickyHeader {
  position: sticky; /* keep sticky if that's what you're using */
  top: 0;
  z-index: 5000;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: transparent !important;
}

/* player bar */
#artistProfilePage .artistPlayerBar {
  z-index: 4900;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: transparent !important;
}

/* give both bars a real painted background */
#artistProfilePage .artistStickyHeader::before,
#artistProfilePage .artistPlayerBar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #060b14;
  z-index: -1;
  pointer-events: none;
}

/* optional if you want a glass look without bleed */
#artistProfilePage .artistStickyHeader::before {
  background:
    linear-gradient(145deg, rgba(8,12,20,0.98), rgba(10,15,24,0.98)),
    linear-gradient(90deg, rgba(20,230,255,0.04), transparent 45%, rgba(255,0,127,0.04));
}

#artistProfilePage .artistPlayerBar::before {
  background:
    linear-gradient(145deg, rgba(7,11,18,0.99), rgba(9,13,20,0.99));
}

/* scrolling content must sit under them */
#artistProfilePage .artistScrollContent {
  position: relative;
  z-index: 1;
}

/* stop child cards/media from punching through */
#artistProfilePage .artistScrollContent > *,
#artistProfilePage .artistScrollContent .panel,
#artistProfilePage .artistScrollContent .card,
#artistProfilePage .artistScrollContent .section {
  position: relative;
  z-index: 1;
}
