/* ============================================================
   Akumudzi Bwaiz — Premium Design System
   All class names preserved. UI/UX refinement only.
   ============================================================ */

/* -- 1. TOKENS ----------------------------------------------- */
:root {
  --green: #087a3c;          /* overridden per-page by siteSettings */
  --green-dark: #055e2d;
  --green-deep: #03451f;
  --green-bright: #0ea052;
  --green-soft: #e6f5ed;
  --green-pale: #f2fbf6;
  --ink: #0d1f14;
  --ink-2: #1c3527;
  --muted: #5e7a6a;
  --muted-light: #8ba898;
  --line: #ddeae3;
  --surface: #f8fcf9;
  --white: #ffffff;
  --danger: #b42318;
  --warning: #a15c00;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 20px 60px rgba(8, 80, 41, .13), 0 4px 12px rgba(8, 80, 41, .06);
  --shadow-sm: 0 6px 20px rgba(8, 80, 41, .08), 0 1px 4px rgba(8, 80, 41, .04);
  --shadow-lg: 0 32px 80px rgba(8, 80, 41, .18), 0 8px 24px rgba(8, 80, 41, .08);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in: cubic-bezier(.4, 0, 1, 1);
  --transition: .22s var(--ease);
}

/* -- 2. RESET & BASE ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { overflow-wrap: anywhere; }
ul, ol { list-style: none; padding: 0; }

/* -- 3. UTILITIES --------------------------------------------- */
.container { width: min(1280px, calc(100% - 48px)); margin-inline: auto; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; background: #fff; padding: 10px 16px; z-index: 9999; border-radius: 10px; font-weight: 700; box-shadow: var(--shadow); }
.mt { margin-top: 22px; }
.small { font-size: 13px; color: var(--muted); }
.muted { color: var(--muted); }
.right { text-align: right; }
.center { text-align: center; }
.wide { width: 100%; }
.text-link { color: var(--green); font-weight: 700; }
.center-actions { display: flex; justify-content: center; margin-top: 32px; }
.full { grid-column: 1 / -1; }

/* -- 4. ANNOUNCEMENT BAR -------------------------------------- */
.announcement {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

/* -- 5. SITE HEADER ------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  z-index: 100;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled { 
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06); 
  border-color: transparent;
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 36px; width: auto; transition: opacity var(--transition); }
.brand:hover img { opacity: .85; }

/* Navigation */
.nav { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 13px; }
.nav > a:not(.btn) {
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--ink-2);
  transition: color var(--transition), background var(--transition);
}
.nav > a:not(.btn):hover { color: var(--green); background: var(--green-soft); }
.nav > a.active { color: var(--green); }
.nav > a.active::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform-origin: left;
  animation: nav-bar-in .25s var(--ease) both;
}
@keyframes nav-bar-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.nav-toggle { display: none; border: 0; background: none; font-size: 22px; color: var(--ink); padding: 6px 8px; border-radius: 8px; transition: background var(--transition); }
.nav-toggle:hover { background: var(--green-soft); }

/* -- 6. BUTTONS ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  border: 1.5px solid var(--green);
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
  letter-spacing: .01em;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 6px 20px rgba(8, 80, 41, .28);
}
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-small { min-height: 36px; padding: 7px 16px; font-size: 13px; }
.btn-ghost {
  background: transparent;
  color: var(--green);
}
.btn-ghost:hover { background: var(--green-soft); color: var(--green-dark); border-color: var(--green); box-shadow: none; }
.btn-white {
  background: #fff;
  color: var(--green);
  border-color: #fff;
}
.btn-white:hover { background: var(--green-pale); border-color: var(--green-pale); box-shadow: none; }
.btn-danger { background: var(--danger); border-color: var(--danger); }
.btn-danger:hover { background: #7a1912; border-color: #7a1912; }

/* -- 7. FLASH / ALERTS ---------------------------------------- */
.flash, .alert {
  padding: 8px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
}
.alert { text-align: left; border-radius: var(--radius); margin-bottom: 18px; }
.success { background: #e2f5eb; color: #076b35; }
.danger { background: #fee4e2; color: #8a1812; }

/* -- 8. HERO --------------------------------------------------- */
.hero {
  padding: 80px 0 72px;
  background: linear-gradient(170deg, #fff 0%, #f2fbf6 70%, #e6f5ed 100%);
  overflow: hidden;
  position: relative;
}
/* ---------------------------------------------------------
   HERO PREMIUM (TWO-COLUMN)
   --------------------------------------------------------- */
.hero-premium {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 100px 0 160px; /* Extra bottom padding for floating stats */
  overflow: hidden;
  background: linear-gradient(120deg, #063d26 0%, #0a5a35 48%, #dff7e8 100%);
  color: #fff;
}

/* Background Layers */
.hero-premium-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-premium-glow {
  position: absolute;
  right: 5%;
  top: 15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  filter: blur(80px);
}
.hero-premium-texture {
  position: absolute;
  inset: 0;
  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.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: soft-light;
}
.hero-premium-monogram {
  position: absolute;
  left: 5%;
  bottom: -10%;
  width: 800px;
  height: 800px;
  color: #fff;
}

/* Layout */
.hero-columns {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1380px;
}
.hero-content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Typography */
.hero-content-left .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero-content-left .eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}
.hero-content-left h1 {
  font-size: clamp(3.4rem, 5.6vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  max-width: 650px;
  animation: fade-up 0.6s var(--ease) both;
}
.hero-content-left h1 em {
  color: #a3e8c0;
  font-style: normal;
}
.hero-content-left .hero-subtitle {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 42px 0;
  animation: fade-up 0.6s var(--ease) both;
  animation-delay: 0.1s;
}

/* Premium Search Field */
.hero-search-premium {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  height: 64px;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 6px 6px 24px;
  box-shadow: 0 16px 40px rgba(0, 35, 18, 0.18);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  animation: fade-up 0.6s var(--ease) both;
  animation-delay: 0.2s;
  margin-bottom: 42px;
}
.hero-search-premium:focus-within {
  box-shadow: 0 0 0 4px rgba(16, 185, 95, 0.3), 0 16px 40px rgba(0, 35, 18, 0.18);
}
.hero-search-premium .search-icon {
  color: #43524a;
  flex-shrink: 0;
}
.hero-search-premium input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0 16px;
  font-size: 17px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.hero-search-premium input::placeholder {
  color: #6b756f;
}
.hero-search-premium .btn-search {
  height: 100%;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 32px;
  font-weight: 700;
  font-size: 16px;
  background: var(--green);
  color: #fff;
  border: none;
}
.hero-search-premium .btn-search:hover {
  background: #0ea653;
}

/* Buttons & Actions */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
  animation: fade-up 0.6s var(--ease) both;
  animation-delay: 0.3s;
}
.hero-actions .btn {
  min-height: 48px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 700;
}
.hero-actions .btn-primary {
  background: #ffffff;
  color: var(--ink);
  border: none;
}
.hero-actions .btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}
.hero-actions .btn-secondary-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
}
.hero-actions .btn-secondary-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Trust Row */
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
  animation: fade-up 0.6s var(--ease) both;
  animation-delay: 0.4s;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust span svg {
  color: #fff;
}

/* ---------------------------------------------------------
   DYNAMIC ARTWORK COMPOSITION
   --------------------------------------------------------- */
.hero-content-right {
  position: relative;
  width: 100%;
  height: 540px;
  perspective: 1000px;
}
.hero-artwork-composition {
  position: relative;
  width: 100%;
  height: 100%;
}
.art-cover {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 40, 20, 0.28), 0 8px 24px rgba(0, 40, 20, 0.18);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: art-enter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.art-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.art-main {
  width: 420px;
  height: 420px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(1deg);
  z-index: 10;
  animation-delay: 0.2s;
}
.art-main:hover {
  transform: translateY(-50%) rotate(0deg) scale(1.02);
}
.art-secondary {
  width: 280px;
  height: 280px;
  z-index: 5;
}
.art-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}
.art-left {
  top: 60px;
  left: 40px;
  transform: rotate(-2deg);
  animation-delay: 0.4s;
}
.art-right {
  bottom: 60px;
  left: 120px;
  transform: rotate(2.5deg);
  animation-delay: 0.6s;
}
.art-vinyl {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #1a1a1a 0%, #000 100%);
  border-radius: 50%;
  top: 50%;
  right: 0px;
  transform: translateY(-50%) translateX(20px);
  z-index: 8;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  animation: vinyl-spin 20s linear infinite;
  animation-delay: 1s; /* smooth start */
  animation-fill-mode: both;
}
.art-vinyl::after {
  content: '';
  position: absolute;
  inset: 150px;
  background: var(--green);
  border-radius: 50%;
  border: 4px solid #333;
}
@keyframes vinyl-spin {
  from { transform: translateY(-50%) translateX(20px) rotate(0deg); }
  to { transform: translateY(-50%) translateX(20px) rotate(360deg); }
}
@keyframes art-enter {
  from { opacity: 0; transform: translateY(40px) rotate(0deg) scale(0.95); }
}

/* Floating Info Card */
.art-floating-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.art-info {
  display: flex;
  flex-direction: column;
}
.art-info strong {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}
.art-info small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

/* Default Fallback */
.art-main.art-default {
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}
.art-main.art-default:hover {
  transform: translate(-50%, -50%) scale(1.02);
}

/* ---------------------------------------------------------
   FLOATING STATS STRIP
   --------------------------------------------------------- */
.stats-floating-container {
  position: relative;
  z-index: 20;
  margin-top: -60px;
  margin-bottom: 60px;
}
.numbers-premium {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(5, 55, 30, 0.12);
  border: 1px solid rgba(0, 40, 20, 0.05);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 0;
  text-align: center;
}
.numbers-premium div {
  display: flex;
  flex-direction: column;
  position: relative;
}
.numbers-premium div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--line);
}
.numbers-premium strong {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
}
.numbers-premium span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-columns {
    gap: 40px;
  }
  .hero-content-right {
    height: 440px;
  }
  .art-main {
    width: 320px;
    height: 320px;
  }
  .art-secondary {
    width: 220px;
    height: 220px;
  }
  .stats-floating-container {
    margin-top: -40px;
  }
}

@media (max-width: 768px) {
  .hero-premium {
    padding: 120px 0 80px;
    min-height: auto;
  }
  .hero-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content-left {
    align-items: center;
    text-align: center;
  }
  .hero-content-left .eyebrow {
    justify-content: center;
  }
  .hero-content-left .hero-subtitle {
    margin: 0 auto 32px auto;
  }
  .hero-search-premium {
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
    display: none; /* Hide on mobile per instructions */
  }
  .hero-content-right {
    height: 400px;
    margin-top: 20px;
  }
  .art-main {
    left: 50%;
    transform: translateY(-50%) translateX(-50%) rotate(0deg);
  }
  .art-main:hover {
    transform: translateY(-50%) translateX(-50%) scale(1.02);
  }
  .art-left { left: 0; }
  .art-right { right: 0; left: auto; }
  
  .numbers-premium {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
    padding: 24px 0;
  }
  .numbers-premium div:nth-child(2)::after { display: none; }
}

@media (max-width: 480px) {
  .hero-content-right { height: 320px; }
  .art-main { width: 260px; height: 260px; }
  .art-secondary { display: none; }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-search-premium {
    height: 58px;
    padding: 4px 4px 4px 16px;
  }
  .hero-search-premium .btn-search {
    padding: 0 20px;
  }
}

/* v1.5.1: refined editorial article page */
.post-story { background: #f6f9f7; }
.post-story-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 5vw, 76px) 0 clamp(54px, 7vw, 92px);
  color: #fff;
  background:
    radial-gradient(circle at 8% 4%, rgba(41, 202, 106, .2), transparent 28%),
    radial-gradient(circle at 88% 95%, rgba(8, 122, 60, .28), transparent 34%),
    linear-gradient(145deg, #07170e 0%, #0b2617 58%, #07150d 100%);
}
.post-story-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, transparent, #000 55%, #000);
}
.post-story-hero .container { position: relative; z-index: 1; }
.post-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; color: rgba(255,255,255,.58); font-size: 13px; font-weight: 750; }
.post-breadcrumb a { color: #8ee5b0; text-decoration: none; }
.post-breadcrumb a:hover { color: #fff; }
.post-hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); align-items: center; gap: clamp(40px, 7vw, 92px); }
.post-meta-line { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 18px; color: #9be8b8; font-size: 12px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.post-hero-copy h1 { max-width: 780px; margin: 0; color: #fff; font-size: clamp(42px, 5.6vw, 76px); line-height: .99; letter-spacing: -.055em; }
.post-deck { max-width: 720px; margin: 24px 0 0; color: rgba(245,255,249,.76); font-size: clamp(17px, 1.7vw, 21px); line-height: 1.65; }
.post-hero-art { position: relative; margin: 0; }
.post-hero-art::before { content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid rgba(142,229,176,.36); border-radius: 28px; }
.post-hero-art img { position: relative; display: block; width: 100%; height: clamp(360px, 32vw, 520px); aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; box-shadow: 0 30px 70px rgba(0,0,0,.4); }
.post-story-layout { display: grid; grid-template-columns: minmax(0, 780px) minmax(230px, 290px); justify-content: center; align-items: start; gap: clamp(32px, 5vw, 68px); padding-top: clamp(48px, 6vw, 82px); padding-bottom: clamp(48px, 6vw, 78px); }
.post-reading-card { padding: clamp(28px, 4vw, 52px); border: 1px solid #dce9e1; border-radius: 26px; background: #fff; box-shadow: 0 22px 60px rgba(15,69,40,.08); }
.post-reading-label { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 32px; padding-bottom: 18px; border-bottom: 1px solid #e2ece6; color: #61806f; font-size: 11px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.post-prose { color: #243b2f; font-size: 18px; line-height: 1.9; }
.post-prose p { margin: 0 0 1.65em; }
.post-prose > p:first-of-type { color: #173d29; font-size: 21px; font-weight: 620; line-height: 1.72; }
.post-prose p:last-child { margin-bottom: 0; }
.article-continuation { margin-top: -3px; }
.article-continuation summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  margin-top: 12px;
  border: 1.5px solid #bbd9c7;
  border-radius: 999px;
  color: var(--green);
  background: #f2faf5;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
  transition: border-color .2s, background .2s, transform .2s;
}
.article-continuation summary::-webkit-details-marker { display: none; }
.article-continuation summary:hover { border-color: var(--green); background: #e8f6ed; transform: translateY(-1px); }
.article-continuation summary:focus-visible { outline: 3px solid rgba(8,122,60,.22); outline-offset: 3px; }
.article-continuation-copy { padding-top: 30px; }
.continuation-less { display: none; }
.article-continuation[open] .continuation-more { display: none; }
.article-continuation[open] .continuation-less { display: inline; }
.article-continuation[open] .continuation-icon { transform: rotate(180deg); }
.continuation-icon { transition: transform .2s; }
.post-story-aside { position: sticky; top: 108px; }
.post-aside-card { padding: 26px; border: 1px solid #d9e7df; border-radius: 20px; background: rgba(255,255,255,.84); box-shadow: 0 14px 36px rgba(15,69,40,.06); }
.post-aside-card h2 { margin: 8px 0; font-size: 23px; line-height: 1.15; }
.post-aside-card p { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.post-aside-card .share-menu, .post-aside-card .share-menu > summary { width: 100%; }
.post-aside-card .share-menu > summary { min-height: 46px; justify-content: center; border: 1px solid var(--green); border-radius: 999px; color: #fff; background: var(--green); box-shadow: 0 10px 24px rgba(8,122,60,.2); }
.post-aside-card .share-menu > summary:hover { border-color: var(--green-dark); color: #fff; background: var(--green-dark); transform: translateY(-1px); }
.post-back-link { display: block; margin-top: 18px; padding-top: 18px; border-top: 1px solid #e2ece6; color: #426451; font-size: 13px; font-weight: 780; text-decoration: none; }
.post-back-link:hover { color: var(--green); }
.post-ad-zone { min-height: 0; }
.post-ad-zone:has(.ad-slot) { padding-top: 8px; padding-bottom: 54px; }
.post-ad-zone .ad-slot { width: 100%; max-width: 970px; min-height: 140px; margin: 0 auto; display: flex; flex-direction: column; justify-content: center; background: #fff; }
.post-related { padding-top: clamp(52px, 6vw, 82px); border-top: 1px solid #dce8e0; background: #fff; }
.post-related-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.post-related-heading h2 { margin: 6px 0 0; font-size: clamp(30px, 4vw, 46px); }
.post-related-heading > a { color: var(--green); font-weight: 800; text-decoration: none; }

@media (max-width: 900px) {
  .post-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .post-hero-copy { max-width: 780px; }
  .post-hero-art { max-width: 720px; }
  .post-story-layout { grid-template-columns: minmax(0, 780px); }
  .post-story-aside { position: static; }
  .post-aside-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px 24px; }
  .post-aside-card .eyebrow, .post-aside-card h2, .post-aside-card p { grid-column: 1; }
  .post-aside-card .share-menu { grid-column: 2; grid-row: 1 / span 3; min-width: 150px; }
  .post-back-link { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .post-story-hero { padding: 28px 0 54px; }
  .post-breadcrumb { margin-bottom: 22px; }
  .post-hero-copy h1 { font-size: clamp(38px, 12vw, 54px); }
  .post-deck { margin-top: 18px; font-size: 16px; }
  .post-hero-art::before { inset: 10px -8px -10px 8px; border-radius: 20px; }
  .post-hero-art img { height: min(76vw, 360px); border-radius: 17px; }
  .post-story-layout { padding-top: 28px; padding-bottom: 40px; }
  .post-reading-card { padding: 25px 20px; border-radius: 18px; }
  .post-reading-label { margin-bottom: 25px; }
  .post-prose { font-size: 16px; line-height: 1.82; }
  .post-prose > p:first-of-type { font-size: 18px; }
  .post-aside-card { display: block; padding: 22px 20px; }
  .post-aside-card .share-menu { min-width: 0; }
  .post-related-heading { align-items: start; flex-direction: column; }
  .post-related .article-grid { grid-template-columns: 1fr; }
  .post-ad-zone .ad-slot { min-height: 110px; }
}

/* Hero card */
.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  animation: fade-up .8s var(--ease) both;
  animation-delay: .3s;
}
.hero-art {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(8, 80, 41, .15);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.hero-art img { aspect-ratio: 1; object-fit: cover; width: 100%; transition: transform .8s var(--ease); }
.hero-card:hover .hero-art img { transform: scale(1.03); }
.now-playing {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(8, 80, 41, .12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 10;
}
.now-playing small, .now-playing strong { display: block; }
.now-playing small { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.now-playing strong { font-size: 14px; color: var(--ink); }
.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 0 rgba(14, 160, 82, .5);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(14, 160, 82, .5); }
  70% { box-shadow: 0 0 0 8px rgba(14, 160, 82, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 160, 82, 0); }
}

/* -- 9. STATS NUMBERS STRIP ----------------------------------- */
.numbers {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 0;
}
.number-grid > div {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}
.number-grid > div:last-child { border: 0; }
.number-grid strong, .number-grid span { display: block; }
.number-grid strong { font-size: 28px; font-weight: 900; color: var(--green); letter-spacing: -.03em; }
.number-grid span { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: .07em; }

/* -- 10. SECTIONS --------------------------------------------- */
.section { padding: 84px 0; }
.soft { background: var(--surface); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.section-head h2, .split h2, .cta h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 900;
  color: var(--ink);
}
.section-head > a { color: var(--green); font-weight: 700; font-size: 14px; white-space: nowrap; transition: opacity var(--transition); }
.section-head > a:hover { opacity: .75; }
.section-intro { padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.section-intro h2, .section-intro p { margin: 0; }
.section-intro p { color: var(--muted); margin-top: 6px; max-width: 820px; }

/* -- 11. MUSIC CARDS ------------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.music-card { min-width: 0; }
.cover {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-soft);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.music-card:hover .cover { box-shadow: var(--shadow); }
.music-card:hover .cover img { transform: scale(1.05); }
.cover-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 30, 15, .38);
  opacity: 0;
  transition: opacity var(--transition);
}
.cover-play-overlay .play-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-left: 3px;
  box-shadow: var(--shadow);
  transform: scale(.85);
  transition: transform var(--transition);
}
.music-card:hover .cover-play-overlay { opacity: 1; }
.music-card:hover .cover-play-overlay .play-icon { transform: scale(1); }
.card-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(255, 255, 255, .95);
  color: var(--green);
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.card-copy { padding-top: 14px; }
.card-copy h3 { font-size: 16px; font-weight: 700; line-height: 1.3; margin-bottom: 3px; color: var(--ink); }
.card-copy h3 a:hover { color: var(--green); }
.card-copy p { color: var(--muted); font-size: 14px; margin: 0; }
.card-copy footer { display: flex; justify-content: space-between; gap: 10px; margin-top: 10px; font-size: 11px; font-weight: 800; color: var(--green); letter-spacing: .04em; text-transform: uppercase; }
/* legacy .meta alias */
.meta { display: flex; justify-content: space-between; gap: 10px; margin-top: 10px; font-size: 11px; font-weight: 800; color: var(--green); letter-spacing: .04em; text-transform: uppercase; }

/* -- 12. ARTIST GRID ------------------------------------------- */
.artist-grid { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 20px; }
.artist-grid.large { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.artist-card {
  text-align: center;
  padding: 18px 12px;
  border-radius: 18px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.artist-card:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-3px); }
.artist-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  margin: auto;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.artist-card:hover img { transform: scale(1.04); }
.artist-card h3 { margin: 12px 0 2px; font-size: 13px; font-weight: 700; }
.artist-card p { color: var(--muted); margin: 0; font-size: 12px; }
.verified { display: inline-flex; align-items: center; gap: 3px; color: var(--green); font-size: 11px; font-weight: 800; margin-top: 3px; }

/* -- 13. TRACK LIST -------------------------------------------- */
.track-list { border-top: 1px solid var(--line); display: grid; gap: 0; }
.track {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
  border-radius: 0;
}
.track:hover { background: var(--green-pale); padding-left: 10px; padding-right: 10px; margin: 0 -10px; border-radius: var(--radius); }
.track-number { font-weight: 800; color: var(--muted-light); width: 26px; font-size: 13px; text-align: center; flex-shrink: 0; }
.track-cover { flex-shrink: 0; }
.track-cover img { border-radius: 10px; object-fit: cover; width: 52px; height: 52px; transition: transform var(--transition); }
.track:hover .track-cover img { transform: scale(1.06); }
.track-main { flex: 1; min-width: 0; }
.track-main h3 { font-size: 13px; font-weight: 700; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-main h3 a:hover { color: var(--green); }
.track-main p { color: var(--muted); font-size: 13px; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-stats {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
  min-width: 200px;
  justify-content: flex-end;
  font-weight: 600;
}
.icon-btn {
  border: 0;
  background: var(--green);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding-left: 2px;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.icon-btn:hover { transform: scale(1.1); background: var(--green-dark); box-shadow: 0 4px 14px rgba(8, 80, 41, .35); }

/* -- 14. PAGE HERO (inner pages) ------------------------------ */
.page-hero {
  padding: 76px 0 60px;
  background: linear-gradient(170deg, #fff 0%, #f2fbf6 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(40px, 5.5vw, 68px); margin-bottom: 16px; }
.search { max-width: 680px; display: flex; gap: 12px; margin-top: 24px; }
.search input { flex: 1; }

/* -- 15. FILTER BAR -------------------------------------------- */
.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 220px 190px auto;
  gap: 12px;
  margin-bottom: 28px;
}
.filter-bar.compact { grid-template-columns: minmax(220px, 420px) auto; justify-content: start; }

/* -- 16. FORM INPUTS (shared) --------------------------------- */
.search input,
.filter-bar input, .filter-bar select,
.form-grid input, .form-grid select, .form-grid textarea,
.auth-card input,
.inline-form input, .inline-form select,
.table-filter input, .table-filter select,
.dash-panel input, .dash-panel select, .dash-panel textarea,
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-size: 13px;
}
.search input:focus,
.filter-bar input:focus, .filter-bar select:focus,
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus,
.auth-card input:focus,
.dash-panel input:focus, .dash-panel select:focus, .dash-panel textarea:focus,
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(8, 122, 60, .1);
}

/* -- 17. SPLIT / FEATURE SECTION ------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.lead { font-size: 19px; color: var(--muted); line-height: 1.65; margin-bottom: 26px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.check-list li {
  padding: 11px 11px 11px 40px;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  transition: background var(--transition);
}
.check-list li:hover { background: var(--green-soft); }
.check-list li::before {
  content: 'âœ“';
  position: absolute;
  left: 12px;
  top: 11px;
  color: var(--green);
  font-weight: 900;
}
.green-panel {
  background: linear-gradient(145deg, var(--green-dark), var(--green));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
.green-panel > span { font-size: 11px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; opacity: .7; }
.green-panel h3 { font-size: 32px; font-weight: 900; letter-spacing: -.03em; margin: 8px 0 24px; }
.green-panel dl { margin: 0 0 30px; }
.green-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  padding: 10px 0;
  font-size: 13px;
}
.green-panel dd { font-weight: 800; margin: 0; }

/* -- 18. CTA BAND ---------------------------------------------- */
.cta { background: linear-gradient(120deg, var(--green-deep), var(--green)); color: #fff; padding: 72px 0; }
.cta .container { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta p { color: rgba(255, 255, 255, .78); font-size: 17px; margin-top: 10px; }
.light { color: rgba(255, 255, 255, .72); }

/* -- 19. FOOTER ------------------------------------------------ */
.footer { padding: 68px 0 28px; background: #081409; color: #d8e7dc; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 48px; }
.footer h3 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; margin: 0 0 16px; opacity: .55; }
.footer a { display: block; margin: 10px 0; color: #b0c4b8; font-size: 14px; font-weight: 500; transition: color var(--transition); }
.footer a:hover { color: #fff; }
.footer p { max-width: 440px; color: #8aa196; font-size: 14px; line-height: 1.6; margin-top: 18px; }
.footer-cta { color: #7de0a4 !important; font-weight: 700; margin-top: 20px !important; }
.footer-cta:hover { color: #fff !important; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 44px;
  padding-top: 24px;
  color: #6a8475;
  font-size: 13px;
}

/* -- 20. GLOBAL PLAYER ----------------------------------------- */
.player {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  background: rgba(10, 22, 14, .97);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  color: #fff;
  border-radius: 20px;
  padding: 12px 20px 12px 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .35), 0 2px 8px rgba(0, 0, 0, .2);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, .07);
  animation: player-in .35s var(--ease) both;
}
@keyframes player-in { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.player[hidden] { display: none; }
.player-title { min-width: 220px; flex-shrink: 0; }
.player-title small { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255, 255, 255, .45); font-weight: 700; margin-bottom: 2px; }
.player-title strong { display: block; font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 280px; }
.player audio { width: 100%; accent-color: var(--green); }
.player-close {
  border: 0;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.player-close:hover { background: rgba(255, 255, 255, .15); color: #fff; }

/* -- 21. COOKIE BAR -------------------------------------------- */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cookie[hidden] { display: none; }
.cookie p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.cookie strong { font-size: 13px; }
.cookie .actions { display: flex; gap: 10px; flex-shrink: 0; }

/* -- 22. RELEASE & SONG HERO ----------------------------------- */
.release-hero { padding: 76px 0; background: linear-gradient(170deg, #fff, #f3faf6); }
.release-grid { display: grid; grid-template-columns: minmax(260px, 420px) 1fr; gap: 60px; align-items: center; }
.release-cover {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.purchase-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.purchase-box small, .purchase-box strong { display: block; }
.purchase-box strong { font-size: 26px; font-weight: 900; color: var(--green); letter-spacing: -.02em; }
.purchase-box small { font-size: 12px; color: var(--muted); }
.purchase-box span { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }

/* -- 23. ARTIST HERO ------------------------------------------- */
.artist-hero {
  padding: 76px 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.artist-profile { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center; }
.artist-profile > img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 5px solid rgba(255, 255, 255, .22);
  box-shadow: var(--shadow-lg);
}
.artist-profile h1, .release-grid h1 { font-size: clamp(40px, 5.5vw, 68px); }
.artist-profile .prose { color: rgba(255, 255, 255, .82); }
.profile-meta, .release-summary { display: flex; gap: 10px; flex-wrap: wrap; }
.profile-meta span, .release-summary span {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.verified-pill { display: inline-flex; align-items: center; gap: 5px; background: rgba(255, 255, 255, .15); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.artist-line { font-size: 20px !important; color: #8ee5b2 !important; font-weight: 700; }
.artist-headline { font-size: 19px !important; font-weight: 600; margin-top: 8px; opacity: .9; }
.meta-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.meta-pills span { padding: 6px 12px; border-radius: 999px; background: var(--green-soft); color: var(--green); font-size: 12px; font-weight: 700; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.social-links a { padding: 6px 12px; border-radius: 999px; background: var(--green-soft); color: var(--green); font-size: 12px; font-weight: 700; transition: background var(--transition); }
.social-links a:hover { background: var(--green); color: #fff; }
.artist-hero .social-links a { background: rgba(255, 255, 255, .12); color: #fff; border: 1px solid rgba(255, 255, 255, .2); }
.artist-hero .social-links a:hover { background: rgba(255, 255, 255, .22); }
.song-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }

/* -- 24. DETAIL LIST (credits, song meta) ---------------------- */
.detail-list { margin: 0; }
.detail-list div { display: grid; grid-template-columns: 140px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); align-items: start; }
.detail-list dt { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding-top: 2px; }
.detail-list dd { margin: 0; font-weight: 600; font-size: 13px; }
.credits { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 28px; }
.credits dt { font-size: 11px; text-transform: uppercase; color: var(--muted); font-weight: 700; letter-spacing: .07em; margin-bottom: 2px; }
.credits dd { margin: 0; font-weight: 700; }
.rights-note { background: #fff; border-left: 3px solid var(--green); padding: 14px 18px; border-radius: 0 10px 10px 0; font-size: 13px !important; box-shadow: var(--shadow-sm); }

/* -- 25. PRICING ----------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-card { border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 30px; background: #fff; transition: transform var(--transition), box-shadow var(--transition); }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--green); box-shadow: var(--shadow); }
.price-card > span { color: var(--green); font-weight: 800; text-transform: uppercase; font-size: 11px; letter-spacing: .1em; }
.price-card h2 { margin: 10px 0 4px; color: var(--ink); font-size: 22px; }
.price-card h3 { margin: 0 0 10px; font-size: 13px; font-weight: 600; color: var(--muted); }
.price-card p { color: var(--muted); font-size: 14px; }
.big-price { font-size: 28px; font-weight: 900; color: var(--green); letter-spacing: -.03em; }
.notice { padding: 20px 24px; border-radius: var(--radius-lg); background: #fff8e8; border: 1.5px solid #f3dfaf; }

/* -- 26. ARTICLES / NEWS --------------------------------------- */
.legal-copy, .article, .article-body { max-width: 850px; }
.legal-copy h2 { font-size: 28px; margin-top: 40px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.article-card > a > div { padding: 18px 20px 20px; }
.article-card span { font-size: 10px; color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.article-card h2, .article-card h3 { font-size: 20px; line-height: 1.25; margin: 6px 0 8px; }
.article-card p { color: var(--muted); font-size: 14px; margin: 0; }
.article-lead { font-size: 20px; color: var(--muted); line-height: 1.65; }
.article-hero-image { width: 100%; border-radius: var(--radius-lg); margin: 30px 0; }
.article-feature { width: 100%; border-radius: var(--radius-lg); margin-bottom: 32px; }
.prose { font-size: 17px; white-space: normal; line-height: 1.8; color: var(--ink-2); }
.prose br { content: ''; display: block; margin-bottom: 10px; }
.lyrics { white-space: pre-line; }
.legal-prose { white-space: normal; font-size: 17px; line-height: 1.88; }
.legal-prose h2, .legal-prose h3, .legal-prose h4 { margin-top: 2em; color: var(--ink); }
.legal-prose ul, .legal-prose ol { padding-left: 1.4em; }
.legal-prose li { margin: .5em 0; }
.legal-prose blockquote { border-left: 3px solid var(--green); padding: 8px 16px; margin: 24px 0; background: var(--green-pale); border-radius: 0 12px 12px 0; }
.legal-note { margin-top: 32px; padding: 22px 24px; border-radius: 16px; background: var(--green-pale); border: 1.5px solid var(--line); }

/* -- 27. FORMS ------------------------------------------------- */
.form-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.panel, .dash-panel {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 4px 16px rgba(8, 80, 41, .04);
}
.form-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.form-card-wide { max-width: 900px; margin-inline: auto; }
.form-card label { display: grid; gap: 7px; font-size: 13px; font-weight: 700; margin-bottom: 16px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.form-grid.one { grid-template-columns: 1fr; }
.form-grid label { font-weight: 700; font-size: 14px; }
.form-grid label input, .form-grid label select, .form-grid label textarea { display: block; margin-top: 7px; font-weight: 500; }
.form-grid label small { display: block; color: var(--muted); font-weight: 500; margin-top: 5px; font-size: 12px; }
.check, .check-field {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 600 !important;
  grid-template-columns: unset !important;
}
.check input, .check-field input { width: auto !important; margin-top: 4px !important; }
.check.top { margin-top: 28px; }
.form-actions { display: flex; gap: 10px; align-items: center; }
.divider { height: 1px; background: var(--line); margin: 6px 0; }
.field-error { color: var(--danger); font-size: 12px; margin-top: 4px; }
.error { color: var(--danger); font-size: 12px; margin-top: 4px; }
.reference {
  font-size: clamp(18px, 3.5vw, 30px);
  font-weight: 900;
  color: var(--green);
  letter-spacing: .04em;
  background: var(--green-pale);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 18px 0;
}

/* -- 28. AUTH PAGES -------------------------------------------- */
.auth {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 60px 20px;
  background: linear-gradient(170deg, #f4faf7, #e8f5ed);
}
.auth-card {
  width: min(480px, 100%);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.auth-card h1 { font-size: 38px; font-weight: 900; letter-spacing: -.04em; line-height: 1; margin: 0 0 10px; }
.auth-card > p { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.auth-card label { display: block; font-weight: 700; font-size: 14px; margin: 18px 0 0; }
.auth-card label input { margin-top: 8px; }
.auth-card .check { display: flex; margin-top: 14px; }
.auth-links { display: flex; justify-content: space-between; gap: 15px; margin-top: 20px; font-size: 13px; color: var(--green); font-weight: 700; }
.auth-links a:hover { opacity: .75; }

/* -- 29. SUCCESS / EMPTY STATES -------------------------------- */
.success-card { text-align: center; padding: 20px 0; }
.success-mark, .success-icon {
  width: 72px;
  height: 72px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 900;
  margin: 0 auto 22px;
}
.empty-state {
  text-align: center;
  padding: 52px 24px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--green-pale);
  grid-column: 1 / -1;
}
.empty-state h3 { font-size: 22px; margin: 0 0 8px; }
.empty-state p { color: var(--muted); margin: 0 0 20px; font-size: 13px; }
.empty-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--green); font-size: 26px; margin: 0 auto 18px; box-shadow: var(--shadow-sm); }
.chart-tabs > section + section { margin-top: 72px; }

/* -- 30. AD SLOT ----------------------------------------------- */
.ad-slot { width: min(970px, calc(100% - 40px)); min-height: 100px; margin: 32px auto; padding: 10px; border: 1px dashed var(--line); text-align: center; overflow: hidden; border-radius: var(--radius); }
.ad-slot > span { display: block; color: var(--muted-light); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.ad-consent-note { color: var(--muted); font-size: 13px; padding: 24px 12px; }
.ad-content { min-height: 60px; }

/* -- 31. PAGINATION -------------------------------------------- */
.pagination { display: flex; list-style: none; gap: 6px; padding: 24px 0 0; flex-wrap: wrap; }
.page-link { display: block; padding: 8px 13px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; font-size: 14px; font-weight: 600; transition: background var(--transition), border-color var(--transition); }
.page-link:hover { background: var(--green-soft); border-color: var(--green); color: var(--green); }
.page-item.active .page-link { background: var(--green); color: #fff; border-color: var(--green); }
.page-item.disabled .page-link { opacity: .4; pointer-events: none; }

/* -- 32. PAYMENT ----------------------------------------------- */
.payment-summary { display: grid; gap: 8px; background: var(--green-pale); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin: 18px 0; }
.payment-summary strong { font-size: 26px; color: var(--green); font-weight: 900; letter-spacing: -.02em; }

/* -- 33. DASHBOARD SHELL --------------------------------------- */
.dashboard-body { display: grid; grid-template-columns: 270px 1fr; min-height: 100vh; background: #f0f5f2; }

/* Sidebar */
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #081209;
  padding: 0 0 24px;
  color: #d4e6da;
  overflow: auto;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, .04);
}
.dashboard-brand {
  display: flex;
  align-items: center;
  padding: 22px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  flex-shrink: 0;
}
.dashboard-brand img { height: 38px; width: auto; }
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  flex-shrink: 0;
}
.sidebar-user > img { width: 40px; height: 40px; object-fit: cover; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .15); flex-shrink: 0; }
.sidebar-user > span { min-width: 0; }
.sidebar-user strong, .sidebar-user small { display: block; }
.sidebar-user strong { font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user small { color: rgba(255, 255, 255, .45); font-size: 12px; margin-top: 1px; }
.sidebar nav { margin: 8px 0; flex: 1; padding: 0 12px; }
.sidebar-label {
  margin: 20px 10px 6px;
  color: rgba(255, 255, 255, .32);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sidebar-link {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .55);
  padding: 9px 13px;
  border-radius: 10px;
  margin: 2px 0;
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.sidebar-link:hover { background: rgba(255, 255, 255, .07); color: rgba(255, 255, 255, .9); }
.sidebar-link.active { background: rgba(14, 160, 82, .18); color: #6aefaa; font-weight: 700; }
.sidebar-signout {
  margin: 0 12px;
  color: rgba(255, 255, 255, .38);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 14px;
  width: calc(100% - 24px);
  flex-shrink: 0;
}
.sidebar-signout:hover { color: rgba(255, 255, 255, .7); background: transparent; }

/* Dashboard main */
.dashboard-main { padding: 32px 38px; min-width: 0; }
.dash-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 28px; }
.dash-head h1 { margin: 0; font-size: 32px; font-weight: 900; letter-spacing: -.03em; line-height: 1.1; }
.dash-head small { color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: 11px; display: block; margin-bottom: 4px; }
.dash-actions { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: #fff; font-weight: 900; }
.avatar-image { padding: 0; overflow: hidden; }
.avatar-image img { width: 100%; height: 100%; object-fit: cover; }

/* Stat cards */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px; }
.stat-grid.four { grid-template-columns: repeat(4, 1fr); }
.stat {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: box-shadow var(--transition);
}
.stat:hover { box-shadow: var(--shadow-sm); }
.stat span { display: block; color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 16px; }
.stat strong { display: block; font-size: 28px; font-weight: 900; letter-spacing: -.03em; color: var(--ink); }
.status-word { font-size: 16px !important; color: var(--green) !important; }

/* Admin quick actions */
.admin-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.admin-actions a {
  background: var(--green-soft);
  color: var(--green);
  padding: 20px;
  border-radius: var(--radius-lg);
  transition: background var(--transition), transform var(--transition);
  font-weight: 600;
}
.admin-actions a:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.admin-actions strong, .admin-actions span { display: block; }
.admin-actions strong { font-size: 28px; font-weight: 900; margin-bottom: 4px; }
.admin-actions.five { grid-template-columns: repeat(5, 1fr); }

/* Layout panels */
.dash-columns { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; }
.settings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-bottom: 16px; }
.panel-head h2 { margin: 0; font-size: 18px; }

/* Ledger / money */
.ledger-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.ledger-row small, .dash-panel td small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.money-in { color: var(--green); font-weight: 900; }
.money-out { color: var(--danger); font-weight: 900; }
.balance-big { font-size: 34px; font-weight: 900; color: var(--green); letter-spacing: -.03em; }

/* Progress bar */
.progress { height: 8px; background: #e4ede7; border-radius: 999px; overflow: hidden; margin: 12px 0; }
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--green-bright), var(--green)); border-radius: 999px; transition: width .6s var(--ease); }

/* Tables */
.table-wrap { overflow: auto; border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
th { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 700; background: var(--surface); }
tr:last-child td { border-bottom: 0; }

/* Badges */
.badge { display: inline-flex; padding: 4px 9px; border-radius: 999px; background: #edf2ef; color: #486055; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.badge.paid, .badge.active, .badge.verified, .badge.published, .badge.approved, .badge.completed, .badge.allocated { background: #def7e8; color: #08713a; }
.badge.pending, .badge.processing, .badge.submitted, .badge.under_review { background: #fff3d6; color: #885000; }
.badge.failed, .badge.rejected, .badge.suspended, .badge.taken_down, .badge.cancelled { background: #fee4e2; color: #912018; }

/* Table person */
.table-person { display: flex; align-items: center; gap: 10px; }
.table-person img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }

/* Table filter */
.table-filter { display: flex; gap: 10px; max-width: 650px; margin-bottom: 18px; }
.table-filter input, .table-filter select { max-width: 260px; }

/* Activity log */
.activity { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.activity > span { width: 9px; height: 9px; background: var(--green); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.activity small, .activity strong { display: block; }
.activity small { color: var(--muted); font-size: 12px; }
.activity strong { font-size: 14px; font-weight: 600; }

/* Split editor */
.split-editor { background: var(--green-pale); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 20px; }
.split-head, .split-totals { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.split-head h3 { margin: 0; }
.split-row { display: grid; grid-template-columns: 1.4fr 1fr .8fr .8fr 38px; gap: 8px; margin-top: 10px; }
.remove-row { border: 0; background: #fee4e2; color: var(--danger); border-radius: 10px; font-size: 20px; transition: background var(--transition); }
.remove-row:hover { background: var(--danger); color: #fff; }
.split-totals { margin-top: 14px; color: var(--green); font-size: 13px; font-weight: 700; }

/* Detail list in dashboard */
.detail-list.detail-list div { grid-template-columns: 150px 1fr; }

/* Health */
.health-row { display: flex; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.health-row small, .health-row strong { display: block; }
.health-row small { color: var(--muted); font-size: 12px; }
.health-dot { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; font-weight: 900; font-size: 14px; flex-shrink: 0; }
.health-dot.ok { background: #def7e8; color: #08713a; }
.health-dot.bad { background: #fee4e2; color: #912018; }

/* Messages */
.message-card { padding: 18px 0; border-bottom: 1px solid var(--line); }

/* Inline form */
.inline-form { display: flex; gap: 10px; max-width: 380px; }
.inline-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.inline-actions form { margin: 0; }

/* Media library */
.media-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.media-tile { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 10px; display: grid; gap: 10px; transition: box-shadow var(--transition); }
.media-tile:hover { box-shadow: var(--shadow-sm); }
.media-tile > img, .media-file-icon { width: 100%; aspect-ratio: 1.35; object-fit: cover; border-radius: 10px; background: var(--green-pale); }
.media-file-icon { display: grid; place-items: center; color: var(--green); font-weight: 900; font-size: 24px; }
.media-tile strong, .media-tile small { display: block; }
.media-tile small { color: var(--muted); font-size: 12px; }

/* Profile editor */
.profile-editor-head { display: flex; gap: 18px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.profile-editor-head img { width: 88px; height: 88px; border-radius: 22px; object-fit: cover; }
.profile-editor-head h2, .profile-editor-head p { margin: 0; }
.profile-editor-head p { color: var(--muted); font-size: 14px; }

/* Artist media preview */
.artist-media-preview { min-height: 250px; background-size: cover; background-position: center; border-radius: var(--radius-lg); padding: 28px; color: #fff; display: flex; align-items: flex-end; gap: 22px; }
.artist-media-preview > img { width: 120px; height: 120px; border-radius: var(--radius-lg); object-fit: cover; border: 4px solid rgba(255, 255, 255, .3); }
.artist-media-preview h2, .artist-media-preview p { margin: 0; }
.artist-media-preview small { font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }

/* Assets */
.asset-field { align-content: start; }
.asset-preview { width: 100%; max-width: 210px; aspect-ratio: 1; object-fit: contain; background: var(--surface); border: 1.5px solid var(--line); border-radius: 14px; padding: 8px; margin: 8px 0; }
.asset-preview.wide { aspect-ratio: 16 / 7; max-width: 360px; object-fit: cover; }
.asset-preview.portrait { max-width: 160px; border-radius: 50%; object-fit: cover; }
.file-ready { display: inline-flex; width: max-content; margin-top: 7px; padding: 4px 10px; border-radius: 99px; background: var(--green-soft); color: var(--green); font-size: 12px; font-weight: 800; }

/* Compact panel */
.compact-panel { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; }
.compact-panel h2, .compact-panel p { margin: 0; }
.compact-panel p { color: var(--muted); font-size: 14px; }

/* Notice card */
.notice-card { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #fff; border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.notice-card p { margin: 6px 0 0; opacity: .84; font-size: 13px; }

/* Toggle grid */
.toggle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 18px; background: var(--green-pale); border-radius: var(--radius); }

/* Mini edit */
.mini-edit { display: grid; gap: 8px; padding: 12px 0; min-width: 260px; }
.mini-edit input { width: 100%; }

/* Misc */
.danger-zone { margin-top: 22px; border: 1.5px solid #f3b7b1; padding: 16px; border-radius: var(--radius); }
.danger-zone button { border: 0; background: transparent; color: var(--danger); font-weight: 800; }
.danger-zone-card { border: 1.5px solid #f3b7b1; }
.text-danger { border: 0; background: transparent; color: var(--danger); font-weight: 800; padding: 0; }
.profile-summary { display: flex; align-items: center; gap: 14px; background: #fff; border: 1.5px solid var(--line); border-radius: 16px; padding: 14px 18px; margin-bottom: 18px; }
.profile-summary img { width: 56px; height: 56px; border-radius: 16px; object-fit: cover; }
.profile-summary strong, .profile-summary small { display: block; }
.profile-summary small { color: var(--muted); font-size: 12px; }
details summary { cursor: pointer; color: var(--green); font-weight: 700; }

/* -- 34. SCROLL REVEAL ANIMATION ------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* -- 35. RESPONSIVE -------------------------------------------- */
@media (max-width: 1100px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .artist-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .stat-grid.four { grid-template-columns: repeat(2, 1fr); }
  .settings-grid { grid-template-columns: 1fr 1fr; }
  .admin-actions { grid-template-columns: repeat(3, 1fr); }
  .admin-actions.five { grid-template-columns: repeat(3, 1fr); }
  .media-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 64px;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    z-index: 90;
  }
  .nav.open { display: flex; }
  .nav > a:not(.btn) { padding: 10px 12px; }
  .nav > a.active::after { display: none; }
  .hero-grid, .split, .release-grid, .artist-profile, .form-layout { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .release-cover, .artist-profile > img { max-width: 320px; }
  .dashboard-body { grid-template-columns: 1fr; }
  .sidebar { position: relative; height: auto; }
  .sidebar nav { display: grid; grid-template-columns: repeat(3, 1fr); padding: 12px; }
  .sidebar-label { grid-column: 1 / -1; }
  .dashboard-main { padding: 20px; }
  .dash-columns { grid-template-columns: 1fr; }
  .admin-actions { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .track-stats { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .toggle-grid { grid-template-columns: 1fr 1fr; }
  .compact-panel { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  body { font-size: 13px; }
  .container { width: min(100% - 24px, 1200px); }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: 44px; }
  .hero-search { flex-direction: column; border-radius: var(--radius-lg); }
  .section { padding: 56px 0; }
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .artist-grid, .artist-grid.large { grid-template-columns: repeat(2, 1fr); }
  .cta .container, .footer-bottom, .cookie { align-items: flex-start; flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .pricing-grid, .article-grid, .stat-grid, .stat-grid.four, .settings-grid { grid-template-columns: 1fr; }
  .search, .filter-bar, .filter-bar.compact { display: flex; flex-direction: column; }
  .track { gap: 10px; }
  .track .btn { display: none; }
  .track-number { width: 20px; }
  .release-grid, .artist-profile { gap: 28px; }
  .dashboard-main { padding: 16px; }
  .sidebar nav { grid-template-columns: 1fr 1fr; }
  .admin-actions, .admin-actions.five { grid-template-columns: 1fr; }
  .player { left: 8px; right: 8px; bottom: 8px; flex-direction: column; align-items: stretch; gap: 12px; padding: 14px 16px; }
  .player-title { min-width: 0; }
  .player-close { position: absolute; right: 12px; top: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .full, .form-grid .full { grid-column: auto; }
  .split-row { grid-template-columns: 1fr 1fr; }
  .split-row select { grid-column: 1 / -1; }
  .split-row .remove-row { grid-column: 2; }
  .dash-head { align-items: flex-start; flex-direction: column; }
  .purchase-box { align-items: flex-start; flex-direction: column; }
  .number-grid { grid-template-columns: 1fr 1fr; }
  .number-grid > div:nth-child(2) { border-right: 0; }
  .number-grid > div { padding: 10px; }
  .auth-card { padding: 28px 22px; }
  .auth-links { flex-direction: column; gap: 10px; }
  .detail-list div { grid-template-columns: 1fr; }
  .cookie { bottom: 8px; left: 8px; right: 8px; }
  .media-grid, .toggle-grid { grid-template-columns: 1fr; }
  .profile-editor-head, .artist-media-preview { align-items: flex-start; flex-direction: column; }
  .artist-media-preview > img { width: 90px; height: 90px; }
  .sidebar nav { max-height: 56vh; overflow: auto; }
  .announcement { font-size: 12px; }
  .empty-state { padding: 30px 20px; }
}
/* ---------------------------------------------------------
   HOMEPAGE STRUCTURAL REFINEMENT CSS
   --------------------------------------------------------- */

/* 1. Hero Compact */
.hero-compact {
  position: relative;
  min-height: 480px;
  max-height: 540px;
  display: flex;
  align-items: center;
  padding: 60px 0 100px;
  overflow: hidden;
  background: linear-gradient(120deg, #063d26 0%, #0a5a35 48%, #dff7e8 100%);
  color: #fff;
}
.hero-columns-compact {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-artwork-composition-compact {
  position: relative;
  width: 100%;
  height: 420px;
  perspective: 1000px;
}
.art-main-compact {
  width: 340px;
  height: 340px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(1deg);
  z-index: 10;
}
.art-main-compact:hover {
  transform: translateY(-50%) rotate(0deg) scale(1.02);
}

/* Tight Sections */
.section-tight {
  padding: 72px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.section-head h2 { font-size: 32px; font-weight: 800; line-height: 1.1; margin: 0; color: var(--ink); }
.section-head .eyebrow { margin-bottom: 4px; }
.section-head > a { font-weight: 700; color: var(--green); }

/* Artist Carousel */
.artist-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.artist-carousel::-webkit-scrollbar { display: none; }
.artist-card-large {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
.artist-img-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.artist-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.artist-card-large:hover .artist-img-wrapper img {
  transform: scale(1.05);
}
.artist-meta {
  text-align: center;
}
.artist-meta h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.artist-meta p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.view-profile { font-size: 13px; font-weight: 700; color: var(--green); }
.badge-verified { color: var(--green); font-size: 14px; }

/* Splits & Grids */
.split-chart-releases {
  display: grid;
  grid-template-columns: 52% 44%;
  gap: 4%;
  align-items: start;
}
.card-grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.card-grid-four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Chart List */
.chart-list {
  display: flex;
  flex-direction: column;
}
.chart-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.chart-row:last-child { border-bottom: none; }
.chart-rank {
  font-size: 16px; font-weight: 800; color: var(--muted); width: 24px; text-align: center;
}
.chart-thumb {
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.chart-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.chart-info strong { font-size: 16px; font-weight: 700; color: var(--ink); }
.chart-info span { font-size: 14px; color: var(--muted); }
.btn-play-icon {
  background: var(--green-soft);
  color: var(--green);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-play-icon:hover { background: var(--green); color: #fff; transform: scale(1.1); }

/* Track list compact */
.track-list-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border: 1px solid var(--line);
}
.pricing-card h3 { font-size: 18px; color: var(--muted); margin-bottom: 12px; }
.pricing-card .price { font-size: 26px; font-weight: 900; color: var(--ink); margin-bottom: 16px; }
.pricing-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* Magazine Grid */
.magazine-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}
.article-card-lead {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border: 1px solid var(--line);
  transition: transform 0.3s;
}
.article-card-lead:hover { transform: translateY(-4px); }
.article-card-lead img { width: 100%; height: 320px; object-fit: cover; }
.article-content { padding: 24px; }
.article-content h3 { font-size: 28px; font-weight: 800; margin: 8px 0 12px; color: var(--ink); line-height: 1.2; }
.article-list-supporting {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.article-card-compact a {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}
.article-card-compact:hover a { transform: translateY(-4px); }
.article-card-compact img { border-radius: 12px; object-fit: cover; }
.article-card-compact .date { font-size: 13px; color: var(--green); font-weight: 700; margin-bottom: 16px; display: block; }
.article-card-compact h4 { font-size: 18px; font-weight: 700; line-height: 1.3; color: var(--ink); margin: 0; }

/* CTA Strip */
.cta-strip {
  background: var(--green-dark);
  color: #fff;
  padding: 80px 0;
}
.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-content h2 { font-size: 40px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-content p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 600px; }

/* Empty States */
.compact-empty {
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px dashed var(--line);
}
.compact-empty .empty-icon { width: 48px; height: 48px; font-size: 20px; margin-bottom: 16px; }
.compact-empty h3 { font-size: 18px; margin-bottom: 16px; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .split-chart-releases { grid-template-columns: 1fr; gap: 60px; }
  .card-grid-four-col { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .magazine-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .hero-compact { min-height: auto; padding: 120px 0 60px; }
  .hero-columns-compact { grid-template-columns: 1fr; text-align: center; }
  .hero-content-left { align-items: center; }
  .hero-artwork-composition-compact { height: 360px; margin-top: 20px; }
  .art-main-compact { left: 50%; transform: translateY(-50%) translateX(-50%) rotate(0deg); width: 280px; height: 280px; }
  .section-tight { padding: 48px 0; }
  .card-grid-four-col, .card-grid-two-col { grid-template-columns: repeat(2, 1fr); }
  .track-list-compact { grid-template-columns: 1fr; gap: 16px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 480px) {
  .card-grid-four-col, .card-grid-two-col { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .article-card-compact a { flex-direction: column; }
  .article-card-compact img { width: 100%; height: 200px; }
}


/* -- FINAL HOMEPAGE COMPLETION FIXES -- */
body {
  padding-top: 84px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 84px;
}
.footer {
  padding: 60px 0 30px;
}
.footer-grid h3 {
  font-size: 16px;
}
.footer-grid p {
  font-size: 13px;
}
.footer-grid a {
  font-size: 14px;
}
.footer-cta {
  font-size: 14px;
}
.footer-bottom {
  font-size: 13px;
}
@media (max-width: 768px) {
  body { padding-top: 76px; }
  .site-header { height: 76px; }
}


/* -- CATALOGUE FIRST HOMEPAGE REDESIGN -- */
body {
  padding-top: 76px;
}
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 76px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(1.5);
  z-index: 1000;
  border-bottom: 1px solid var(--line);
}
.container {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* Typography Base Overrides */
p { font-size: 16px; }
small, .meta { font-size: 13px; }

/* Sections */
.section {
  padding: 88px 0;
  position: relative;
}
.section.soft {
  background: var(--surface);
}
.section-tight {
  padding: 64px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.section-head h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  margin-top: 4px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
  .section-head h2 { font-size: 24px; }
}

/* Two-Column Hero Premium */
.hero-compact {
  padding: 80px 0 120px;
  position: relative;
  background: linear-gradient(135deg, #054523 0%, #0a6937 40%, #108548 100%);
  color: #fff;
  overflow: hidden;
}
.hero-columns-compact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content-left h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-search-premium {
  position: relative;
  max-width: 480px;
  margin-bottom: 32px;
  display: flex;
}
.hero-search-premium input {
  width: 100%;
  height: 56px;
  border-radius: 28px;
  border: none;
  padding: 0 140px 0 48px;
  font-size: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.hero-search-premium .search-icon {
  position: absolute;
  left: 16px;
  top: 17px;
  color: var(--muted);
}
.hero-search-premium .btn-search {
  position: absolute;
  right: 6px;
  top: 6px;
  height: 44px;
  border-radius: 22px;
  background: var(--green);
  color: #fff;
  border: none;
  padding: 0 24px;
  font-weight: 700;
}
.hero-trust {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
}

/* Vinyl Hero Artwork */
.hero-artwork-composition-compact {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}
.art-vinyl {
  position: absolute;
  top: 5%;
  right: -15%;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: repeating-radial-gradient(
    #111,
    #111 2px,
    #222 3px,
    #222 4px
  );
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  animation: spin 20s linear infinite;
  z-index: 1;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.art-main-compact {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  aspect-ratio: 1/1;
  background: #000;
}
.art-main-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.art-floating-card {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.art-floating-card .art-info {
  display: flex;
  flex-direction: column;
}
.art-floating-card strong {
  font-size: 20px;
  color: #fff;
}
.art-floating-card small {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 1024px) {
  .hero-columns-compact { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-content-left h1 { font-size: 36px; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-search-premium { margin: 0 auto 32px; }
  .hero-trust { justify-content: center; }
  .hero-artwork-composition-compact { margin: 0 auto; max-width: 400px; }
  .art-vinyl { right: -10%; }
}

/* Grids */
.card-grid-four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card-grid-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.split-chart-releases {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}
@media (max-width: 1024px) {
  .card-grid-four-col { grid-template-columns: repeat(2, 1fr); }
  .split-chart-releases { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .card-grid-four-col, .card-grid-two-col { grid-template-columns: 1fr; }
}

/* Empty States */
.empty-state.compact-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 32px;
  height: 200px;
}
.empty-state .empty-icon {
  font-size: 32px;
  color: var(--muted-light);
  margin-bottom: 12px;
}
.empty-state h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.empty-state p {
  font-size: 14px;
  color: var(--muted);
  max-width: 320px;
}

/* Chart Rows */
.chart-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chart-row {
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.chart-row:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--green-soft);
}
.chart-rank {
  font-size: 16px;
  font-weight: 800;
  color: var(--muted);
  width: 32px;
  text-align: center;
}
.chart-thumb {
  border-radius: 4px;
  margin-right: 16px;
}
.chart-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.chart-info strong {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 2px;
}
.chart-info span {
  font-size: 13px;
  color: var(--muted);
}
.btn-play-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-play-icon:hover {
  background: var(--green);
  color: #fff;
}

/* Artist Carousel (Real CSS override) */
.artist-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.artist-card-large {
  text-align: center;
}
.artist-img-wrapper {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--line);
  border: 4px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.artist-card-large:hover .artist-img-wrapper {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow);
}
.artist-meta h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-2);
}
.artist-meta p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.view-profile {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}
@media (max-width: 1024px) {
  .artist-carousel { grid-template-columns: repeat(2, 1fr); }
}

/* Magazine Grid */
.magazine-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}
.article-card-lead {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.article-card-lead img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-card-lead .article-content {
  padding: 24px;
}
.article-card-lead h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}
.article-list-supporting {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.article-card-compact a {
  display: flex;
  gap: 16px;
}
.article-card-compact img {
  border-radius: 8px;
  object-fit: cover;
}
.article-card-compact h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

/* Ad Slot Reset */
.ad-slot:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
}

/* CTA Strip */
.cta-strip {
  background: var(--green-deep);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-content h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
}
.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
}


/* -- SCREENSHOT VISUAL FIXES -- */
.hero-compact {
  /* Remove overflow hidden to let vinyl escape slightly if needed */
  overflow: visible !important;
}
.hero-compact .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.section-title-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}
.section-title-center h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink-2);
  margin-top: 8px;
  margin-bottom: 12px;
}
.section-title-center .lead {
  max-width: 600px;
  color: var(--muted);
  font-size: 16px;
}
.empty-state.compact-empty {
  height: 160px; /* Reduce empty space */
}
.ad-slot.placeholder {
  display: none !important;
}


/* -- HORIZONTAL SCROLL CAROUSEL FIX -- */
.artist-carousel {
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; 
  -ms-overflow-style: none;
  gap: 24px !important;
  padding-bottom: 16px;
}
.artist-carousel::-webkit-scrollbar {
  display: none;
}
.artist-card-large {
  flex: 0 0 calc(25% - 18px) !important;
  scroll-snap-align: start;
}
@media (max-width: 1024px) {
  .artist-card-large { flex: 0 0 calc(50% - 12px) !important; }
}
@media (max-width: 600px) {
  .artist-card-large { flex: 0 0 80% !important; }
}

/* ---------------------------------------------------------
   HOMEPAGE STRUCTURAL REFINEMENT CSS
   --------------------------------------------------------- */

/* 1. Hero Compact */
.hero-compact {
  position: relative;
  min-height: 480px;
  max-height: 540px;
  display: flex;
  align-items: center;
  padding: 60px 0 100px;
  overflow: hidden;
  background: linear-gradient(120deg, #063d26 0%, #0a5a35 48%, #dff7e8 100%);
  color: #fff;
}
.hero-columns-compact {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-artwork-composition-compact {
  position: relative;
  width: 100%;
  height: 420px;
  perspective: 1000px;
}
.art-main-compact {
  width: 340px;
  height: 340px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(1deg);
  z-index: 10;
}
.art-main-compact:hover {
  transform: translateY(-50%) rotate(0deg) scale(1.02);
}

/* Tight Sections */
.section-tight {
  padding: 72px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.section-head h2 { font-size: 32px; font-weight: 800; line-height: 1.1; margin: 0; color: var(--ink); }
.section-head .eyebrow { margin-bottom: 4px; }
.section-head > a { font-weight: 700; color: var(--green); }

/* Artist Carousel */
.artist-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.artist-carousel::-webkit-scrollbar { display: none; }
.artist-card-large {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
.artist-img-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.artist-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.artist-card-large:hover .artist-img-wrapper img {
  transform: scale(1.05);
}
.artist-meta {
  text-align: center;
}
.artist-meta h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.artist-meta p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.view-profile { font-size: 13px; font-weight: 700; color: var(--green); }
.badge-verified { color: var(--green); font-size: 14px; }

/* Splits & Grids */
.split-chart-releases {
  display: grid;
  grid-template-columns: 52% 44%;
  gap: 4%;
  align-items: start;
}
.card-grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.card-grid-four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Chart List */
.chart-list {
  display: flex;
  flex-direction: column;
}
.chart-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.chart-row:last-child { border-bottom: none; }
.chart-rank {
  font-size: 16px; font-weight: 800; color: var(--muted); width: 24px; text-align: center;
}
.chart-thumb {
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.chart-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.chart-info strong { font-size: 16px; font-weight: 700; color: var(--ink); }
.chart-info span { font-size: 14px; color: var(--muted); }
.btn-play-icon {
  background: var(--green-soft);
  color: var(--green);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-play-icon:hover { background: var(--green); color: #fff; transform: scale(1.1); }

/* Track list compact */
.track-list-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border: 1px solid var(--line);
}
.pricing-card h3 { font-size: 18px; color: var(--muted); margin-bottom: 12px; }
.pricing-card .price { font-size: 26px; font-weight: 900; color: var(--ink); margin-bottom: 16px; }
.pricing-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* Magazine Grid */
.magazine-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}
.article-card-lead {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border: 1px solid var(--line);
  transition: transform 0.3s;
}
.article-card-lead:hover { transform: translateY(-4px); }
.article-card-lead img { width: 100%; height: 320px; object-fit: cover; }
.article-content { padding: 24px; }
.article-content h3 { font-size: 28px; font-weight: 800; margin: 8px 0 12px; color: var(--ink); line-height: 1.2; }
.article-list-supporting {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.article-card-compact a {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}
.article-card-compact:hover a { transform: translateY(-4px); }
.article-card-compact img { border-radius: 12px; object-fit: cover; }
.article-card-compact .date { font-size: 13px; color: var(--green); font-weight: 700; margin-bottom: 16px; display: block; }
.article-card-compact h4 { font-size: 18px; font-weight: 700; line-height: 1.3; color: var(--ink); margin: 0; }

/* CTA Strip */
.cta-strip {
  background: var(--green-dark);
  color: #fff;
  padding: 80px 0;
}
.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-content h2 { font-size: 40px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-content p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 600px; }

/* Empty States */
.compact-empty {
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px dashed var(--line);
}
.compact-empty .empty-icon { width: 48px; height: 48px; font-size: 20px; margin-bottom: 16px; }
.compact-empty h3 { font-size: 18px; margin-bottom: 16px; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .split-chart-releases { grid-template-columns: 1fr; gap: 60px; }
  .card-grid-four-col { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .magazine-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .hero-compact { min-height: auto; padding: 120px 0 60px; }
  .hero-columns-compact { grid-template-columns: 1fr; text-align: center; }
  .hero-content-left { align-items: center; }
  .hero-artwork-composition-compact { height: 360px; margin-top: 20px; }
  .art-main-compact { left: 50%; transform: translateY(-50%) translateX(-50%) rotate(0deg); width: 280px; height: 280px; }
  .section-tight { padding: 48px 0; }
  .card-grid-four-col, .card-grid-two-col { grid-template-columns: repeat(2, 1fr); }
  .track-list-compact { grid-template-columns: 1fr; gap: 16px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 480px) {
  .card-grid-four-col, .card-grid-two-col { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .article-card-compact a { flex-direction: column; }
  .article-card-compact img { width: 100%; height: 200px; }
}


/* -- CATALOGUE FIRST HOMEPAGE REDESIGN -- */
body {
  padding-top: 76px;
}
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 76px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(1.5);
  z-index: 1000;
  border-bottom: 1px solid var(--line);
}
.container {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* Typography Base Overrides */
p { font-size: 16px; }
small, .meta { font-size: 13px; }

/* Sections */
.section {
  padding: 88px 0;
  position: relative;
}
.section.soft {
  background: var(--surface);
}
.section-tight {
  padding: 64px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.section-head h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  margin-top: 4px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-head h2 { font-size: 24px; }
}

/* Two-Column Hero Premium */
.hero-compact {
  padding: 80px 0 120px;
  position: relative;
  background: linear-gradient(135deg, #054523 0%, #0a6937 40%, #108548 100%);
  color: #fff;
  overflow: hidden;
}
.hero-columns-compact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content-left h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-search-premium {
  position: relative;
  max-width: 480px;
  margin-bottom: 32px;
  display: flex;
}
.hero-search-premium input {
  width: 100%;
  height: 56px;
  border-radius: 28px;
  border: none;
  padding: 0 140px 0 48px;
  font-size: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.hero-search-premium .search-icon {
  position: absolute;
  left: 16px;
  top: 17px;
  color: var(--muted);
}
.hero-search-premium .btn-search {
  position: absolute;
  right: 6px;
  top: 6px;
  height: 44px;
  border-radius: 22px;
  background: var(--green);
  color: #fff;
  border: none;
  padding: 0 24px;
  font-weight: 700;
}
.hero-trust {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
}

/* Vinyl Hero Artwork */
.hero-artwork-composition-compact {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}
.art-vinyl {
  position: absolute;
  top: 5%;
  right: -15%;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: repeating-radial-gradient(
    #111,
    #111 2px,
    #222 3px,
    #222 4px
  );
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  animation: spin 20s linear infinite;
  z-index: 1;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.art-main-compact {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  aspect-ratio: 1/1;
  background: #000;
}
.art-main-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.art-floating-card {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.art-floating-card .art-info {
  display: flex;
  flex-direction: column;
}
.art-floating-card strong {
  font-size: 20px;
  color: #fff;
}
.art-floating-card small {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 1024px) {
  .hero-columns-compact { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-content-left h1 { font-size: 36px; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-search-premium { margin: 0 auto 32px; }
  .hero-trust { justify-content: center; }
  .hero-artwork-composition-compact { margin: 0 auto; max-width: 400px; }
  .art-vinyl { right: -10%; }
}

/* Grids */
.card-grid-four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card-grid-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.split-chart-releases {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}
@media (max-width: 1024px) {
  .card-grid-four-col { grid-template-columns: repeat(2, 1fr); }
  .split-chart-releases { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .card-grid-four-col, .card-grid-two-col { grid-template-columns: 1fr; }
}

/* Empty States */
.empty-state.compact-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 32px;
  height: 200px;
}
.empty-state .empty-icon {
  font-size: 32px;
  color: var(--muted-light);
  margin-bottom: 12px;
}
.empty-state h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.empty-state p {
  font-size: 14px;
  color: var(--muted);
  max-width: 320px;
}

/* Chart Rows */
.chart-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chart-row {
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.chart-row:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--green-soft);
}
.chart-rank {
  font-size: 16px;
  font-weight: 800;
  color: var(--muted);
  width: 32px;
  text-align: center;
}
.chart-thumb {
  border-radius: 4px;
  margin-right: 16px;
}
.chart-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.chart-info strong {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 2px;
}
.chart-info span {
  font-size: 13px;
  color: var(--muted);
}
.btn-play-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-play-icon:hover {
  background: var(--green);
  color: #fff;
}

/* Artist Carousel (Real CSS override) */
.artist-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.artist-card-large {
  text-align: center;
}
.artist-img-wrapper {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--line);
  border: 4px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.artist-card-large:hover .artist-img-wrapper {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow);
}
.artist-meta h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-2);
}
.artist-meta p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.view-profile {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}
@media (max-width: 1024px) {
  .artist-carousel { grid-template-columns: repeat(2, 1fr); }
}

/* Magazine Grid */
.magazine-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}
.article-card-lead {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.article-card-lead img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-card-lead .article-content {
  padding: 24px;
}
.article-card-lead h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}
.article-list-supporting {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.article-card-compact a {
  display: flex;
  gap: 16px;
}
.article-card-compact img {
  border-radius: 8px;
  object-fit: cover;
}
.article-card-compact h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

/* Ad Slot Reset */
.ad-slot:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
}

/* CTA Strip */
.cta-strip {
  background: var(--green-deep);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-content h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
}
.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
}


/* -- SCREENSHOT VISUAL FIXES -- */
.hero-compact {
  /* Remove overflow hidden to let vinyl escape slightly if needed */
  overflow: visible !important;
}
.hero-compact .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.section-title-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}
.section-title-center h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink-2);
  margin-top: 8px;
  margin-bottom: 12px;
}
.section-title-center .lead {
  max-width: 600px;
  color: var(--muted);
  font-size: 16px;
}
.empty-state.compact-empty {
  height: 160px; /* Reduce empty space */
}
.ad-slot.placeholder {
  display: none !important;
}


/* -- FINAL HOMEPAGE COMPLETION FIXES -- */
body {
  padding-top: 84px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 84px;
}
.footer {
  padding: 60px 0 30px;
}
.footer-grid h3 {
  font-size: 16px;
}
.footer-grid p {
  font-size: 13px;
}
.footer-grid a {
  font-size: 14px;
}
.footer-cta {
  font-size: 14px;
}
.footer-bottom {
  font-size: 13px;
}
@media (max-width: 768px) {
  body { padding-top: 76px; }
  .site-header { height: 76px; }
}


/* -- HORIZONTAL SCROLL CAROUSEL FIX -- */
.artist-carousel {
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; 
  -ms-overflow-style: none;
  gap: 24px !important;
  padding-bottom: 16px;
}
.artist-carousel::-webkit-scrollbar {
  display: none;
}
.artist-card-large {
  flex: 0 0 calc(25% - 18px) !important;
  scroll-snap-align: start;
}
@media (max-width: 1024px) {
  .artist-card-large { flex: 0 0 calc(50% - 12px) !important; }
}
@media (max-width: 600px) {
  .artist-card-large { flex: 0 0 80% !important; }
}


/* Refined Section Head Spacing */
.section-head .eyebrow { display: block; margin-bottom: 16px; color: var(--green); font-size: 13px; letter-spacing: 0.05em; }
.section-head h2 { margin-top: 0; }

/* Refined Artist Page Cards */
.artist-grid.large { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 32px; }
.artist-card { padding: 24px 16px; border-radius: 24px; border: 1px solid transparent; }
.artist-card:hover { border-color: var(--line); box-shadow: 0 16px 40px rgba(0,0,0,0.06); transform: translateY(-4px); }
.artist-card img { border-width: 4px; margin-bottom: 16px; }
.artist-card:hover img { transform: scale(1.05); }
.artist-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; color: var(--ink-2); }
.artist-card p { font-size: 14px; margin-bottom: 8px; }
.artist-card .verified { font-size: 13px; font-weight: 700; background: var(--green-pale); padding: 4px 10px; border-radius: 20px; }

/* 4 Corner Style Artist Cards */
.artist-grid.large { grid-template-columns: repeat(4, 1fr); }
.artist-card img { border-radius: 12px; }
.artist-img-wrapper { border-radius: 12px; }

/* Spotify Style Cards */
.artist-grid.large { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 24px; }
.artist-card { padding: 16px; border-radius: 8px; border: none; text-align: left; background: transparent; transition: background 0.3s ease; }
.artist-card:hover { background: #f0f0f0; box-shadow: none; transform: none; }
.artist-card img { border: none; margin-bottom: 16px; border-radius: 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.artist-card:hover img { transform: none; }
.artist-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.artist-card p { font-size: 14px; margin-bottom: 8px; color: var(--muted); }
.artist-card .verified { font-size: 12px; font-weight: 600; background: transparent; padding: 0; color: var(--green); }

/* Edge-to-Edge Magazine Style Cards */
.artist-grid.large { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.artist-card { position: relative; border-radius: 16px; overflow: hidden; padding: 0; border: none; background: #000; aspect-ratio: 1; box-shadow: 0 12px 30px rgba(0,0,0,0.15); transition: transform 0.4s ease, box-shadow 0.4s ease; text-align: left; }
.artist-card:hover { background: #000; box-shadow: 0 20px 40px rgba(0,0,0,0.25); transform: translateY(-8px); }
.artist-card a { display: flex; flex-direction: column; justify-content: flex-end; width: 100%; height: 100%; padding: 20px; color: #fff; text-decoration: none; }
.artist-card img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; margin: 0; border-radius: 0; border: none; box-shadow: none; transition: transform 0.6s ease; z-index: 1; }
.artist-card:hover img { transform: scale(1.08); }
.artist-card a::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 75%; background: linear-gradient(transparent, rgba(0,0,0,0.9)); z-index: 2; pointer-events: none; }
.artist-card h3, .artist-card p, .artist-card .verified { position: relative; z-index: 3; margin: 0; }
.artist-card h3 { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 2px; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
.artist-card p { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.artist-card .verified { font-size: 12px; font-weight: 800; color: #1ed760; background: transparent; padding: 0; display: inline-flex; align-items: center; gap: 4px; }

/* Full Width Layout */
.container { max-width: 100% !important; padding: 0 48px !important; }
@media (max-width: 1024px) { .container { padding: 0 32px !important; } }
@media (max-width: 768px) { .container { padding: 0 20px !important; } }

/* Make Artist Cards Massive */
.artist-grid.large { grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)) !important; gap: 32px !important; }

/* Refined Release Hero */
.release-hero { background: linear-gradient(180deg, #111, #081409); padding: 120px 0 80px; color: #fff; }
.release-hero h1 { color: #fff; font-size: 56px; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 8px; }
.release-hero .eyebrow { color: rgba(255,255,255,0.7); display: block; margin-bottom: 12px; }
.release-hero .lead { color: var(--green); font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.release-hero .detail-list div { border-bottom-color: rgba(255,255,255,0.1); padding: 10px 0; }
.release-hero .detail-list dt { color: rgba(255,255,255,0.5); }
.release-hero .detail-list dd { color: rgba(255,255,255,0.9); font-weight: 500; }
.release-cover { border-radius: 12px; box-shadow: 0 32px 64px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); }
.track { padding: 16px 0; }
.track-stats { gap: 32px; opacity: 0.7; font-size: 13px; font-weight: 500; }

/* Spotify Style Release Hero */
@media (min-width: 769px) { .release-grid { grid-template-columns: 232px 1fr !important; gap: 32px !important; align-items: flex-start !important; } }
.release-cover { width: 232px !important; height: 232px !important; border-radius: 4px !important; box-shadow: 0 4px 60px rgba(0,0,0,0.5) !important; }

/* Song Action Buttons (Download, Like, Share) */
.mobile-action-bar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 32px; }
.btn-play, .btn-download, .btn-icon-action { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 800; font-size: 13px; padding: 8px 16px; border-radius: 30px; transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; border: none; }
.btn-play { background: var(--green); color: #fff; box-shadow: 0 8px 24px rgba(8,122,60,0.3); }
.btn-download { background: #fff; color: var(--ink); border: 2px solid var(--line); }
.btn-icon-action { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.2); padding: 8px 16px; }
.btn-play:hover, .btn-download:hover, .btn-icon-action:hover { transform: scale(1.05); }



@media (max-width: 768px) {
  .song-stats-bar, .song-actions { justify-content: center !important; }
  .song-actions .btn { flex: 1; min-width: calc(50% - 10px); }
  .detail-list div { font-size: 14px; grid-template-columns: 100px 1fr; }
  .release-cover { width: 100% !important; max-width: 260px !important; height: auto !important; aspect-ratio: 1; }
}

.release-hero h1 { margin-top: 0 !important; }
@media (min-width: 769px) { .release-hero .detail-list div { padding: 6px 0 !important; } .song-actions { margin-top: 24px; } }

/* Spotify Style Artist Page */
.spotify-hero { position: relative; height: 350px; background-size: cover; background-position: center 20%; display: flex; align-items: flex-end; padding-bottom: 24px; }
.spotify-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 20%, rgba(0,0,0,0.8) 100%); }
.spotify-artist-profile { position: relative; z-index: 2; display: flex; align-items: flex-end; gap: 24px; width: 100%; }
.artist-avatar { border-radius: 50%; box-shadow: 0 4px 60px rgba(0,0,0,0.5); object-fit: cover; }
.artist-meta-content { color: #fff; }
.verified-pill { display: inline-flex; align-items: center; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.giant-artist-name { font-size: clamp(48px, 6vw, 96px) !important; font-weight: 900 !important; letter-spacing: -0.04em !important; margin: 0 0 16px 0 !important; line-height: 1; }
.artist-monthly-listeners { font-size: 16px; font-weight: 500; opacity: 0.8; }
.artist-action-bar { padding: 24px 0; }
.artist-actions { display: flex; align-items: center; gap: 24px; }
.btn-play-giant { width: 56px; height: 56px; border-radius: 50%; background: #1ed760; color: #000; display: grid; place-items: center; border: none; cursor: pointer; transition: transform 0.2s; padding: 0; }
.btn-play-giant:hover { transform: scale(1.05); background: #1fdf64; }
.btn-follow { background: transparent; border: 1px solid #878787; color: var(--ink); padding: 6px 15px; border-radius: 4px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; transition: border-color 0.2s; }
.btn-follow:hover { border-color: var(--ink); transform: scale(1.02); }
.btn-more { background: transparent; color: #878787; border: none; cursor: pointer; padding: 0; }
.btn-more:hover { color: var(--ink); }
.popular-section .track-list { max-width: 800px; }
.popular-section .track { border-bottom: none; border-radius: 4px; }
.popular-section .track:hover { background: rgba(255,255,255,0.1); }
.about-card { max-width: 800px; background: rgba(255,255,255,0.05); border-radius: 12px; padding: 32px; transition: background 0.2s; }
.about-card:hover { background: rgba(255,255,255,0.1); }
@media (max-width: 768px) { .spotify-artist-profile { flex-direction: column; align-items: flex-start; } .artist-avatar { width: 140px; height: 140px; } .spotify-hero { height: auto; padding-top: 60px; } }
/* -- CLASSIC LAYOUT REDESIGN OVERRIDES -- */
body {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* 1. Solid Header */
.site-header {
  background: var(--green) !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
}
.site-header a, .site-header .nav-link {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-transform: none !important;
}
.site-header .btn {
  font-size: 13px !important;
  padding: 5px 12px !important;
  min-height: auto !important;
  border-radius: 4px !important;
  background: #50b0f7 !important;
  border: none !important;
  color: #fff !important;
  box-shadow: none !important;
}
.site-header .nav-link:hover, .site-header .nav-link.active {
  color: #e0e0e0 !important;
}

/* 2. Section Headers (Solid Banners) */
.section-head {
  display: block !important;
  background: var(--green) !important;
  padding: 12px 15px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.section-head h2 {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: bold !important;
  margin: 0 !important;
  text-transform: uppercase !important;
}
.section-head .eyebrow {
  display: none !important;
}
.section-head > a {
  display: none !important; /* Hide 'View all' link in header to match screenshot */
}

/* 3. Featured Artists (Text on Top, Circular Image) */
.artist-card-large > a, .artist-card > a {
  display: flex !important;
  flex-direction: column-reverse !important;
  align-items: center !important;
  text-align: center !important;
}
.artist-img-wrapper {
  margin-top: 15px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.artist-img-wrapper img, .artist-card img {
  border-radius: 50% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  border: none !important;
  box-shadow: none !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}
.artist-meta {
  width: 100% !important;
}
.artist-meta h3 {
  font-size: 16px !important;
  font-weight: bold !important;
  color: var(--ink) !important;
  margin: 0 0 5px 0 !important;
}
.artist-meta p {
  font-size: 13px !important;
  color: #666 !important;
  margin: 0 !important;
}
.view-profile {
  display: none !important;
}

/* 4. Top Rated / Latest Releases (Square covers, simple layout) */
.track-cover, .release-cover, .track-cover img, .release-cover img {
  border-radius: 0 !important;
  border: 1px solid #ddd !important;
}
.track-main h3, .release-meta h3 {
  font-size: 14px !important;
  font-weight: bold !important;
  margin: 8px 0 4px 0 !important;
}
.track-main p, .release-meta p {
  font-size: 12px !important;
  color: #666 !important;
}

/* 5. Top 10 Chart / Chart Rows */
.top-chart-col .chart-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}
.chart-row {
  display: flex !important;
  align-items: center !important;
  padding: 10px 0 !important;
  border: none !important;
  border-bottom: 1px solid #eee !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.chart-row:hover {
  box-shadow: none !important;
  border-color: #eee !important;
  background: #f9f9f9 !important;
}
.chart-rank {
  font-size: 16px !important;
  font-weight: bold !important;
  color: #000 !important;
  margin-right: 15px !important;
  width: 20px !important;
}
.chart-thumb {
  width: 50px !important;
  height: 50px !important;
  border-radius: 0 !important;
}
.chart-info {
  flex: 1 !important;
  margin-left: 15px !important;
  flex-direction: column !important;
}
.chart-info strong {
  font-size: 14px !important;
  font-weight: bold !important;
  color: var(--ink) !important;
}
.chart-info span {
  font-size: 12px !important;
  color: #666 !important;
}
.btn-play-icon {
  margin-left: auto !important;
  border: 2px solid #000 !important;
  border-radius: 50% !important;
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  color: #000 !important;
}
.btn-play-icon svg {
  width: 14px !important;
  height: 14px !important;
}

/* General Cleanup to remove heavy shadows */
.artist-card-large, .artist-card, .track, .release-card {
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.artist-card-large:hover, .artist-card:hover, .track:hover, .release-card:hover {
  box-shadow: none !important;
  transform: none !important;
}

/* 6. Carousel Slider Overrides */
.carousel-wrapper {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
}
.artist-carousel {
  overflow-x: hidden !important; /* Hide the scrollbar since we have arrows now */
  scroll-behavior: smooth !important;
  flex: 1 !important;
}
.carousel-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  color: white !important;
  border: none !important;
  font-size: 20px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s !important;
}
.carousel-arrow:hover {
  background: var(--green) !important;
}
.carousel-prev {
  left: -20px !important;
}
.carousel-next {
  right: -20px !important;
}
@media (max-width: 768px) {
  .carousel-prev { left: -10px !important; }
  .carousel-next { right: -10px !important; }
}

.brand img { height: 50px !important; }


.site-header .brand { font-size: 20px !important; font-weight: 900 !important; letter-spacing: 1px !important; color: #fff !important; text-transform: uppercase !important; text-decoration: none !important; }


.site-header .brand { display: flex !important; align-items: center !important; gap: 6px !important; text-decoration: none !important; } .site-header .brand-icon { width: 30px !important; height: 30px !important; color: #fff !important; } .site-header .brand-text { font-size: 22px !important; font-weight: 900 !important; letter-spacing: 0.5px !important; color: #fff !important; text-transform: uppercase !important; line-height: 1 !important; margin-top: 2px !important; } .site-header .brand-tld { font-size: 15px !important; font-weight: 600 !important; opacity: 0.8 !important; }


.site-header { background: #ffffff !important; padding: 0 !important; border-bottom: none !important; box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important; } .site-header .brand { gap: 8px !important; padding: 15px 20px 15px 0 !important; } .site-header .brand-text-wrapper { display: flex; flex-direction: column; align-items: flex-start; } .site-header .brand-icon { color: var(--green) !important; width: 40px !important; height: 40px !important; } .site-header .brand-text { color: var(--ink) !important; font-size: 20px !important; margin-top: 0 !important; } .site-header .brand-tld { opacity: 1 !important; color: var(--green) !important; } .site-header .brand-tagline { font-size: 11px !important; color: #555 !important; font-weight: 500 !important; margin-top: 2px !important; } .site-header .nav-wrap { padding: 0 15px !important; } .site-header .nav { background: var(--green) !important; position: relative; padding: 0 30px !important; align-self: center !important; display: flex !important; border-radius: 50px !important; margin: 10px 0 !important; box-shadow: 0 8px 24px rgba(60, 207, 142, 0.3) !important; } .site-header .nav::after { display: none !important; }


@media (max-width: 900px) { .site-header .nav { display: none !important; flex-direction: column !important; position: absolute !important; top: 100% !important; left: 0 !important; right: 0 !important; width: auto !important; padding: 20px !important; background: var(--green) !important; box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important; border-radius: 0 !important; margin: 0 !important; } .site-header .nav.open { display: flex !important; } .site-header .nav::after { display: none !important; } .site-header .nav-toggle { display: block !important; color: var(--ink) !important; margin-right: 15px !important; } .site-header .brand-text { font-size: 17px !important; } .site-header .brand-icon { width: 32px !important; height: 32px !important; } .site-header .brand-tagline { font-size: 10px !important; } }


.secondary-search-bar { background: #ffffff; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); } .header-search-form { display: flex; gap: 8px; max-width: 800px; } .header-search-form input { flex: 1; border: 1px solid var(--green) !important; padding: 10px 16px; border-radius: 4px; outline: none; font-size: 14px; color: var(--ink); } .header-search-form input:focus { box-shadow: 0 0 0 3px rgba(60, 207, 142, 0.2); } .header-search-form .btn-search { background: var(--green) !important; color: #fff !important; border-radius: 4px; padding: 10px 24px !important; font-weight: 600 !important; border: none !important; } .header-search-form .btn-playlist { background: var(--ink) !important; color: #fff !important; border-radius: 4px; padding: 10px 24px !important; font-weight: 600 !important; border: none !important; text-decoration: none !important; } @media (max-width: 600px) { .header-search-form { flex-wrap: wrap; } .header-search-form input { width: 100%; flex: 1 1 100%; } .header-search-form .btn { flex: 1; text-align: center; justify-content: center; } }


/* Premium Refined Artist Profile */
.spotify-hero { height: 400px !important; padding-bottom: 32px !important; }
.spotify-hero::before { background: linear-gradient(transparent 10%, rgba(8, 122, 60, 0.4) 60%, rgba(0, 0, 0, 0.9) 100%) !important; }
.spotify-artist-profile { gap: 32px !important; }
.artist-avatar { box-shadow: 0 10px 40px rgba(0,0,0,0.6) !important; border: 4px solid rgba(255, 255, 255, 0.15) !important; }
.verified-pill { font-weight: 600 !important; text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important; }
.giant-artist-name { text-shadow: 0 4px 20px rgba(0,0,0,0.5) !important; }
.artist-monthly-listeners { opacity: 0.9 !important; text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important; }
.artist-action-bar { background: #fff !important; border-bottom: 1px solid var(--line) !important; }
.btn-play-giant { background: var(--green) !important; color: #fff !important; box-shadow: 0 8px 24px rgba(8, 122, 60, 0.4) !important; }
.btn-play-giant:hover { background: var(--green-dark, #055a2b) !important; box-shadow: 0 12px 28px rgba(8, 122, 60, 0.5) !important; transform: scale(1.05) !important; }
.btn-follow { background: #fff !important; border: 2px solid var(--line) !important; color: var(--ink) !important; padding: 8px 24px !important; border-radius: 30px !important; font-size: 13px !important; font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: 0.05em !important; }
.btn-follow:hover { border-color: var(--ink) !important; }
.btn-more { color: var(--muted) !important; }
.btn-more:hover { color: var(--ink) !important; }
.popular-section .track { border-bottom: 1px solid var(--line) !important; border-radius: 0 !important; }
.popular-section .track:hover { background: #f9fafa !important; }
.about-card { background: #f0f3f1 !important; color: var(--ink) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important; }
.about-card:hover { background: #e8ece9 !important; }
.about-section .prose { color: var(--ink) !important; }


/* Make track artworks bigger as requested */
.track-cover img { width: 72px !important; height: 72px !important; }


/* Increase Top 10 Chart sizing as requested */
.chart-thumb { width: 72px !important; height: 72px !important; border-radius: 6px !important; }
.chart-info strong { font-size: 16px !important; margin-bottom: 4px !important; display: block !important; }
.chart-info span { font-size: 14px !important; }
.chart-rank { font-size: 20px !important; width: 36px !important; }
.chart-row { padding: 16px 0 !important; }


/* Second request: Make Top 10 Chart sizing EVEN BIGGER */
.chart-thumb { width: 100px !important; height: 100px !important; border-radius: 8px !important; }
.chart-info strong { font-size: 18px !important; margin-bottom: 6px !important; display: block !important; }
.chart-info span { font-size: 15px !important; }
.chart-rank { font-size: 24px !important; width: 44px !important; }
.chart-row { padding: 20px 0 !important; }


/* Second request: Make Latest Songs (track row) sizing EVEN BIGGER */
.track-cover img { width: 100px !important; height: 100px !important; border-radius: 8px !important; }
.track-main h3 { font-size: 18px !important; margin-bottom: 6px !important; }
.track-main p { font-size: 15px !important; }
.track-number { font-size: 24px !important; width: 44px !important; margin-right: 16px !important; }
.track { padding: 20px 0 !important; }


/* Accessible content modal */
.modal-open{overflow:hidden}.modal-backdrop{position:fixed;inset:0;z-index:10000;display:flex;align-items:center;justify-content:center;padding:24px;background:rgba(0,0,0,.72);backdrop-filter:blur(6px)}.modal-backdrop[hidden]{display:none}.modal-card{width:min(760px,100%);max-height:min(82vh,900px);overflow:auto;background:#fff;color:var(--ink);border-radius:20px;padding:28px;box-shadow:0 28px 90px rgba(0,0,0,.38)}.modal-head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;padding-bottom:16px;border-bottom:1px solid var(--line)}.modal-head h2{margin:.25rem 0 0}.lyrics-content{white-space:normal;padding-top:20px;line-height:1.9}.lyrics-card{scrollbar-gutter:stable}@media(max-width:640px){.modal-backdrop{padding:12px}.modal-card{padding:20px;border-radius:16px;max-height:90vh}}


/* Runtime notifications */
.toast-region{position:fixed;left:50%;bottom:24px;transform:translateX(-50%);z-index:10000;display:flex;flex-direction:column;gap:8px;max-width:min(92vw,520px);pointer-events:none}
.toast-region .toast{background:#111;color:#fff;border:1px solid rgba(255,255,255,.15);border-radius:999px;padding:12px 20px;box-shadow:0 12px 36px rgba(0,0,0,.24);font-weight:700;text-align:center;pointer-events:auto}
.toast-region .toast.success{background:#087a3c}.toast-region .toast.danger{background:#b42318}

/* -- V1.2.1 FOOTER BRAND, MOBILE GRID AND OFFLINE APP -------- */
.footer-grid-v2 {
  grid-template-columns: minmax(260px, 1.35fr) minmax(0, 2fr) !important;
  align-items: start;
  gap: clamp(36px, 6vw, 80px) !important;
}
.footer-intro { min-width: 0; }
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.footer-column { min-width: 0; }
.footer-column-links { min-width: 0; }
.footer-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  color: #fff !important;
  text-decoration: none !important;
}
.footer-brand .brand-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: #7de0a4;
}
.footer-brand .brand-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand .brand-text {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .5px;
  line-height: 1;
  text-transform: uppercase;
}
.footer-brand .brand-tld {
  color: #7de0a4;
  font-size: 15px;
  font-weight: 700;
}
.footer-brand .brand-tagline {
  margin-top: 3px;
  color: #9db4a6;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
}
.footer-app-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 18px;
}
.footer-app-actions a,
.footer-app-actions button {
  margin: 0 !important;
}
.footer-link {
  display: block;
  margin: 10px 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b0c4b8;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.footer-link:hover { color: #fff; }

.network-status {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 8px 16px;
  background: #9a3412;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.offline-hero { background: linear-gradient(135deg, #07180d, #0b6c38); color: #fff; }
.offline-hero h1, .offline-hero p { color: inherit; }
.offline-library { display: grid; gap: 28px; }
.offline-install-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, #f5fff8, #e9f7ee);
}
.offline-install-card h2 { margin: 6px 0 8px; }
.offline-install-card p { max-width: 720px; margin: 0; color: var(--muted); }
.offline-storage {
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
}
.offline-empty {
  padding: 48px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: 20px;
  text-align: center;
}
.offline-empty p { max-width: 650px; margin: 10px auto 22px; color: var(--muted); }
.offline-track-list { display: grid; gap: 14px; }
.offline-track-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(12, 35, 22, .05);
}
.offline-track-card > img { width: 96px; height: 96px; object-fit: cover; border-radius: 12px; }
.offline-track-copy { min-width: 0; }
.offline-track-copy h3 { margin: 0 0 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.offline-track-copy p { margin: 0 0 4px; color: var(--muted); }
.offline-track-copy small { color: var(--green); font-weight: 700; }
.offline-track-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.offline-save-button.is-saved { color: var(--green) !important; border-color: var(--green) !important; background: var(--green-soft) !important; }
.offline-save-button.is-working { opacity: .65; cursor: wait; }
.offline-static-page { padding-top: 0 !important; }
.offline-static-page .page-hero { padding-top: 80px; }

@media (max-width: 900px) {
  .footer-grid-v2 { grid-template-columns: 1fr !important; }
  .footer-links-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .footer-grid-v2 { gap: 34px !important; }
  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-column:last-child .footer-column-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }
  .footer-brand .brand-text { font-size: 17px; }
  .footer-brand .brand-tld { font-size: 12px; }
  .footer-brand .brand-icon { width: 34px; height: 34px; flex-basis: 34px; }
  .offline-install-card { align-items: flex-start; flex-direction: column; }
  .offline-install-card .btn { width: 100%; }
  .offline-track-card { grid-template-columns: 72px minmax(0, 1fr); gap: 12px; }
  .offline-track-card > img { width: 72px; height: 72px; }
  .offline-track-actions { grid-column: 1 / -1; justify-content: stretch; }
  .offline-track-actions > * { flex: 1; }
}

/* -- 28A. REGISTRATION VALIDATION ------------------------------ */
.form-error-summary {
  margin: 18px 0 4px;
  padding: 14px 16px;
  border: 1px solid #efb4b4;
  border-radius: var(--radius);
  background: #fff4f4;
  color: #8e2020;
  font-size: 13px;
  line-height: 1.5;
}
.form-error-summary strong { display: block; margin-bottom: 5px; }
.form-error-summary ul { margin: 0; padding-left: 20px; }
.auth-card .field-error {
  margin: 6px 0 0;
  color: var(--danger);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.auth-card .field-help {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.auth-card .field-optional {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}
.auth-card input.input-invalid,
.auth-card input[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(184, 40, 40, .08);
}
.auth-card .registration-consent {
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-pale);
  line-height: 1.45;
}
.auth-card .registration-consent input {
  flex: 0 0 auto;
  width: 18px !important;
  height: 18px;
  margin-top: 1px !important;
}
.auth-card .registration-consent a { color: var(--green); text-decoration: underline; }
.auth-card .auth-switch {
  margin: 16px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.auth-card .auth-switch a { color: var(--green); font-weight: 800; }

/* v1.2.8: safe advertising separation and social share menu */
.ad-slot{clear:both;isolation:isolate;margin:48px auto;padding:20px;max-width:min(100%,1100px);text-align:center;border:1px solid var(--line);border-radius:16px;background:var(--surface,#fff)}
.ad-slot>span{display:block;margin-bottom:12px;font-size:10px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:var(--muted)}
.ad-slot .ad-consent-note{font-size:13px;color:var(--muted)}
.ad-slot .ad-content{min-height:90px;overflow:hidden}
.share-menu{position:relative;display:inline-block}
.share-menu>summary{display:inline-flex;align-items:center;justify-content:center;gap:8px;list-style:none;cursor:pointer}
.share-menu>summary::-webkit-details-marker{display:none}
.share-menu-panel{position:absolute;z-index:90;right:0;top:calc(100% + 10px);display:grid;min-width:190px;padding:8px;border:1px solid var(--line);border-radius:14px;background:var(--surface,#fff);box-shadow:0 18px 50px rgba(0,20,10,.18)}
.share-menu-panel a,.share-menu-panel button{display:block;width:100%;padding:11px 12px;border:0;border-radius:9px;background:transparent;color:var(--ink);font:inherit;font-weight:700;text-align:left;text-decoration:none;cursor:pointer}
.share-menu-panel a:hover,.share-menu-panel button:hover,.share-menu-panel a:focus-visible,.share-menu-panel button:focus-visible{background:rgba(8,122,60,.09);outline:none}
@media(max-width:640px){.share-menu-panel{position:fixed;right:16px;left:16px;top:auto;bottom:18px;min-width:0}.ad-slot{margin:32px 16px}}

/* v1.3.0: Google account sign-in */
.google-auth-button {
  width: 100%;
  min-height: 50px;
  margin-top: 20px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1.5px solid #c8d0d8;
  border-radius: 999px;
  background: #fff;
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(15, 23, 42, .06);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.google-auth-button:hover {
  border-color: #9aa7b3;
  box-shadow: 0 7px 20px rgba(15, 23, 42, .1);
  transform: translateY(-1px);
}
.google-auth-button:focus-visible {
  outline: 3px solid rgba(0, 146, 83, .22);
  outline-offset: 3px;
}
.google-auth-button svg { flex: 0 0 auto; }
.auth-card .google-auth-terms {
  margin: 10px 4px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}
.google-auth-terms a { color: var(--green); font-weight: 750; text-decoration: underline; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: var(--line);
}
.auth-divider span { white-space: nowrap; }
@media (max-width: 520px) {
  .google-auth-button { min-height: 48px; }
  .auth-divider span { font-size: 10px; letter-spacing: .05em; }
}

/* Artist profile story layout */
.artist-avatar {
  width: 224px;
  height: 224px;
  border-radius: 24px !important;
}
.artist-hero-headline {
  max-width: 720px;
  margin: -4px 0 10px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 650;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}
.btn-play-giant:disabled {
  cursor: not-allowed;
  opacity: .42;
  box-shadow: none !important;
  transform: none !important;
}
.artist-empty-section { padding: 48px 0 !important; }
.artist-empty-section .empty-state {
  min-height: 150px;
  padding: 34px 24px;
  border: 1px solid rgba(8, 122, 60, .1);
  background: linear-gradient(135deg, #f7fbf8, #eef7f1);
}
.artist-about-layout {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.artist-facts-card {
  position: sticky;
  top: 24px;
  overflow: hidden;
  padding: 18px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(155deg, #0b4128, #087a3c 65%, #0f9d58);
  box-shadow: 0 18px 45px rgba(4, 67, 35, .2);
}
.artist-facts-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 24px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}
.artist-facts-card .eyebrow { color: #b9f3d1; }
.artist-facts-card h3 {
  margin: 8px 0;
  color: #fff;
  font-size: 26px;
  letter-spacing: -.02em;
}
.artist-facts-card > p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.6;
}
.artist-facts-card dl { margin: 0; }
.artist-facts-card dl div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.artist-facts-card dt {
  color: #b9f3d1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.artist-facts-card dd {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}
.about-card.artist-biography {
  max-width: none;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(8, 122, 60, .1);
  border-radius: 22px;
  background: #fff !important;
  box-shadow: 0 16px 45px rgba(11, 65, 40, .08) !important;
}
.about-card.artist-biography:hover { background: #fff !important; }
.artist-biography .prose { max-width: 780px; }
.artist-biography .prose p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.82;
}
.artist-biography .prose p:first-child {
  color: #143c2a;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.65;
}
.artist-biography .prose p:last-child { margin-bottom: 0; }
.artist-biography .artist-memorial {
  margin-top: 34px !important;
  padding: 22px 24px;
  border-left: 4px solid var(--green);
  border-radius: 0 14px 14px 0;
  color: #143c2a;
  background: #eef8f1;
  font-weight: 700;
}
.artist-biography .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 800px) {
  .spotify-hero {
    height: auto !important;
    min-height: 470px;
    padding: 52px 0 30px !important;
  }
  .spotify-artist-profile {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px !important;
  }
  .artist-avatar { width: 164px; height: 164px; border-radius: 20px !important; }
  .giant-artist-name { margin-bottom: 12px !important; font-size: clamp(42px, 13vw, 64px) !important; }
  .artist-about-layout { grid-template-columns: 1fr; }
  .artist-facts-card { position: relative; top: auto; }
  .artist-facts-card img { max-height: 440px; }
}

@media (max-width: 520px) {
  .artist-hero-headline { font-size: 15px; }
  .artist-monthly-listeners { font-size: 13px; line-height: 1.5; }
  .artist-actions { gap: 14px; }
  .artist-action-bar { padding: 18px 0 !important; }
  .artist-empty-section { padding: 36px 0 !important; }
  .about-card.artist-biography { padding: 24px 20px; border-radius: 16px; }
  .artist-biography .prose p { font-size: 16px; line-height: 1.75; }
  .artist-biography .prose p:first-child { font-size: 18px; }
  .artist-biography .artist-memorial { padding: 18px; }
}

/* Refined site footer */
.footer {
  position: relative;
  overflow: hidden;
  padding: 76px 0 26px !important;
  border-top: 1px solid rgba(125, 224, 164, .18);
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 157, 88, .2), transparent 32%),
    radial-gradient(circle at 92% 110%, rgba(8, 122, 60, .2), transparent 34%),
    #06140c !important;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 3px;
  background: linear-gradient(90deg, #7de0a4, var(--green));
}
.footer-grid-v2 {
  grid-template-columns: minmax(300px, 1.2fr) minmax(0, 2fr) !important;
  gap: clamp(48px, 7vw, 96px) !important;
}
.footer-intro { max-width: 430px; }
.footer-kicker {
  display: block;
  margin: 0 0 18px;
  color: #7de0a4;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.footer .footer-brand { margin-bottom: 18px !important; }
.footer-brand .brand-icon { color: #8ce8b0; }
.footer-brand .brand-tagline { color: #aec2b5; }
.footer .footer-description {
  max-width: 410px;
  margin: 0;
  color: #bdcec3;
  font-size: 15px;
  line-height: 1.75;
}
.footer .footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 0 !important;
  padding: 11px 17px;
  border: 1px solid rgba(125, 224, 164, .36);
  border-radius: 999px;
  color: #eafff1 !important;
  background: rgba(8, 122, 60, .2);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer .footer-cta:hover {
  border-color: #7de0a4;
  background: rgba(8, 122, 60, .42);
  transform: translateY(-2px);
}
.footer-app-actions {
  gap: 10px !important;
  margin-top: 18px !important;
}
.footer .footer-app-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 !important;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 9px;
  color: #b8c9bf;
  background: rgba(255, 255, 255, .035);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.footer .footer-app-link:hover {
  border-color: rgba(125, 224, 164, .45);
  color: #fff;
  background: rgba(125, 224, 164, .09);
}
.footer-links-grid { gap: clamp(28px, 4vw, 54px); }
.footer .footer-column h3 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 13px;
  color: #f3fff7;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  opacity: 1;
}
.footer .footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: #3fc47b;
}
.footer-column-links { display: grid; gap: 4px; }
.footer .footer-column-links a,
.footer .footer-column-links .footer-link {
  width: fit-content;
  margin: 0;
  padding: 6px 0;
  color: #b8c9bf;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.footer .footer-column-links a:hover,
.footer .footer-column-links .footer-link:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer a:focus-visible,
.footer button:focus-visible {
  outline: 3px solid rgba(125, 224, 164, .45);
  outline-offset: 4px;
}
.footer .footer-bottom {
  align-items: center;
  margin-top: 52px !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #8fa399;
  font-size: 12px;
  line-height: 1.55;
}
.footer-rights { text-align: right; }
.footer-rights a {
  display: inline;
  margin: 0 0 0 6px;
  color: #a9c6b5;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-rights a:hover { color: #fff; }

@media (max-width: 900px) {
  .footer { padding-top: 62px !important; }
  .footer-grid-v2 { grid-template-columns: minmax(0, 1fr) !important; }
  .footer-intro { max-width: 600px; }
  .footer-links-grid { width: 100%; padding-top: 4px; }
}

@media (max-width: 620px) {
  .footer { padding: 52px 0 24px !important; }
  .footer-grid-v2 { gap: 42px !important; }
  .footer-links-grid { gap: 34px 24px; }
  .footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 42px !important;
  }
  .footer-rights { max-width: 330px; text-align: left; }
}

/* Refined featured-artist carousel controls */
.featured-artists-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px;
}
.featured-artists-head .carousel-controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}
.featured-artists-head .carousel-arrow {
  position: static !important;
  transform: none !important;
  width: 34px !important;
  height: 34px !important;
  border: 1px solid rgba(255, 255, 255, .5) !important;
  background: rgba(255, 255, 255, .14) !important;
  color: #fff !important;
  box-shadow: none !important;
  transition: background .2s ease, border-color .2s ease, opacity .2s ease !important;
}
.featured-artists-head .carousel-arrow:hover:not(:disabled) {
  border-color: #fff !important;
  background: #fff !important;
  color: var(--green) !important;
}
.featured-artists-head .carousel-arrow:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .45);
  outline-offset: 3px;
}
.featured-artists-head .carousel-arrow:disabled {
  cursor: default !important;
  opacity: .4;
}
.featured-artists-head .carousel-arrow[hidden] {
  display: none !important;
}
.featured-artists-carousel-wrapper {
  display: block !important;
  overflow: hidden;
}
.featured-artists-carousel-wrapper .artist-carousel {
  display: flex !important;
  gap: 24px !important;
  overflow-x: auto !important;
  padding: 0 0 8px !important;
  scroll-snap-type: x mandatory;
}
.featured-artists-carousel-wrapper .artist-card-large {
  flex: 0 0 calc((100% - 72px) / 4) !important;
  min-width: 0;
}

@media (max-width: 900px) {
  .featured-artists-carousel-wrapper .artist-card-large {
    flex-basis: calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 560px) {
  .featured-artists-head { gap: 12px; }
  .featured-artists-head .carousel-arrow {
    width: 32px !important;
    height: 32px !important;
  }
  .featured-artists-carousel-wrapper .artist-card-large {
    flex-basis: min(78vw, 290px) !important;
  }
}

/* Refined public song page */
.song-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 7vw, 94px) 0 82px !important;
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(205, 164, 78, .17), transparent 30%),
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, .07), transparent 36%),
    linear-gradient(145deg, #171814 0%, #24231f 52%, #11120f 100%) !important;
}
.song-page-hero::after {
  content: '';
  position: absolute;
  right: -140px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(216, 183, 111, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(125, 224, 164, .025), 0 0 0 160px rgba(125, 224, 164, .018);
  pointer-events: none;
}
@media (min-width: 769px) {
  .song-page-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr) !important;
    gap: clamp(44px, 6vw, 78px) !important;
    align-items: start !important;
  }
}
.song-cover-panel { margin: 0; }
.song-page-cover {
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: 18px !important;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .52) !important;
}
.song-cover-panel figcaption {
  margin-top: 14px;
  color: rgba(220, 237, 226, .58);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .11em;
  text-align: center;
  text-transform: uppercase;
}
.song-hero-content { max-width: 860px; }
.song-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.song-verified-badge,
.song-content-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: #d9e9df;
  background: rgba(255, 255, 255, .06);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}
.song-verified-badge {
  gap: 5px;
  border-color: rgba(63, 196, 123, .34);
  color: #a3efbf;
  background: rgba(8, 122, 60, .22);
  text-transform: uppercase;
}
.song-page-hero h1 {
  max-width: 900px;
  margin: 0 0 12px !important;
  color: #fff;
  font-size: clamp(44px, 6vw, 76px) !important;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .98;
  text-wrap: balance;
}
.song-artist-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: #5cdb8e !important;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 800;
  text-decoration: none;
}
.song-artist-link:hover { color: #8ce8b0 !important; }
.song-description,
.song-description p {
  max-width: 720px;
  margin: 0 !important;
  color: rgba(235, 246, 239, .76) !important;
  font-size: 16px;
  line-height: 1.72;
}
.song-stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 0 !important;
}
.song-stats-bar > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  color: rgba(235, 246, 239, .72);
  background: rgba(255, 255, 255, .035);
  font-size: 12px;
  font-weight: 700;
}
.song-rating-count { opacity: .62; }
.song-page-hero .song-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px !important;
}
.song-page-hero .song-actions .btn,
.song-page-hero .song-actions summary {
  min-height: 44px;
  padding: 10px 17px !important;
  border-radius: 999px !important;
  font-size: 13px;
}
.song-page-hero .song-primary-action {
  padding-inline: 22px !important;
  color: #fff;
  background: #0b984b;
  box-shadow: 0 12px 30px rgba(8, 122, 60, .34);
}
.song-page-hero .song-primary-action:hover {
  background: #10aa57;
  transform: translateY(-2px);
}
.song-page-hero .btn-icon-action {
  border: 1px solid rgba(255, 255, 255, .2);
  color: #edf8f1;
  background: rgba(255, 255, 255, .055);
}
.song-page-hero .btn-icon-action:hover {
  border-color: rgba(125, 224, 164, .56);
  background: rgba(125, 224, 164, .12);
  transform: translateY(-2px);
}
.song-page-hero .btn-icon-action select {
  border: 0;
  color: inherit;
  background: transparent;
}
.song-page-hero .btn-icon-action select option { color: #111; }
.song-credits-card {
  max-width: 780px;
  padding: 22px 24px 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(8px);
}
.song-credits-card h2 {
  margin: 0 0 8px;
  color: #f3fff7;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.song-credits-card .detail-list div {
  grid-template-columns: 125px minmax(0, 1fr);
  gap: 18px;
  padding: 10px 0 !important;
  border-bottom-color: rgba(255, 255, 255, .08) !important;
}
.song-credits-card .detail-list div:last-child { border-bottom: 0; }
.song-credits-card .detail-list dt {
  color: rgba(220, 237, 226, .52) !important;
  font-size: 10px;
}
.song-credits-card .detail-list dd {
  color: rgba(245, 252, 247, .9) !important;
  font-size: 13px;
  font-weight: 650;
}

@media (max-width: 768px) {
  .song-page-hero { padding: 44px 0 58px !important; }
  .song-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 36px !important;
  }
  .song-cover-panel { width: min(100%, 420px); margin-inline: auto; }
  .song-page-cover { max-width: none !important; }
  .song-hero-content { text-align: left; }
  .song-status-row,
  .song-stats-bar,
  .song-page-hero .song-actions { justify-content: flex-start !important; }
  .song-page-hero h1 { font-size: clamp(40px, 12vw, 58px) !important; }
  .song-page-hero .song-actions .btn,
  .song-page-hero .song-actions details { flex: 0 1 auto; min-width: 0; }
}

@media (max-width: 480px) {
  .song-page-hero .song-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .song-page-hero .song-actions .song-primary-action { grid-column: 1 / -1; }
  .song-page-hero .song-actions .btn,
  .song-page-hero .song-actions details,
  .song-page-hero .song-actions summary { width: 100%; }
  .song-credits-card { padding: 20px 18px 8px; }
  .song-credits-card .detail-list div { grid-template-columns: 1fr; gap: 3px; }
}

/* Refined primary navigation */
.site-header {
  border-bottom: 1px solid #e7f0ea !important;
  background: rgba(255, 255, 255, .97) !important;
  box-shadow: 0 8px 28px rgba(6, 61, 38, .055) !important;
  backdrop-filter: blur(18px) saturate(1.25) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.25) !important;
}
.site-header .nav-wrap {
  min-height: 78px;
  padding: 0 28px !important;
}
.site-header .nav {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  align-self: center !important;
  gap: 2px !important;
  margin: 0 !important;
  padding: 5px !important;
  border: 1px solid #dcece2;
  border-radius: 14px !important;
  background: #f3f9f5 !important;
  box-shadow: none !important;
}
.site-header .nav > a:not(.btn) {
  position: relative;
  min-height: 38px;
  padding: 9px 12px !important;
  border-radius: 9px;
  color: #29483a !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 20px;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.site-header .nav > a:not(.btn):hover {
  color: var(--green) !important;
  background: #e5f3ea !important;
}
.site-header .nav > a.active:not(.btn) {
  color: var(--green) !important;
  background: #fff !important;
  box-shadow: 0 3px 12px rgba(6, 61, 38, .1);
}
.site-header .nav > a.active::after { display: none !important; }
.site-header .nav-sign-in { margin-left: 5px; }
.site-header .nav-cta {
  min-height: 38px !important;
  margin-left: 4px;
  padding: 9px 16px !important;
  border: 1px solid var(--green) !important;
  border-radius: 9px !important;
  color: #fff !important;
  background: var(--green) !important;
  box-shadow: 0 7px 18px rgba(8, 122, 60, .2) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 18px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease !important;
}
.site-header .nav-cta:hover {
  border-color: var(--green-dark) !important;
  background: var(--green-dark) !important;
  box-shadow: 0 9px 22px rgba(8, 122, 60, .27) !important;
  transform: translateY(-1px);
}
.site-header .nav > a:focus-visible,
.site-header .nav-toggle:focus-visible {
  outline: 3px solid rgba(8, 122, 60, .25);
  outline-offset: 2px;
}
.site-header .nav-toggle {
  width: 42px;
  height: 42px;
  margin-right: 0 !important;
  padding: 0 !important;
  border: 1px solid #dcece2;
  border-radius: 11px;
  color: var(--ink) !important;
  background: #f3f9f5;
}
.site-header .nav-toggle:hover { color: var(--green) !important; background: #e5f3ea; }

@media (max-width: 900px) {
  .site-header .nav-wrap { min-height: 72px; padding: 0 20px !important; }
  .site-header .nav-toggle { display: grid !important; place-items: center; }
  .site-header .nav {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    align-items: stretch !important;
    flex-direction: column !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 10px !important;
    border: 1px solid #dcece2 !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 24px 60px rgba(6, 45, 27, .18) !important;
  }
  .site-header .nav.open { display: flex !important; }
  .site-header .nav > a:not(.btn) {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px !important;
  }
  .site-header .nav-sign-in { margin: 5px 0 0; border-top: 1px solid #e7f0ea; border-radius: 0 !important; }
  .site-header .nav-cta {
    width: 100%;
    min-height: 44px !important;
    margin: 3px 0 0;
  }
}

@media (max-width: 420px) {
  .site-header .nav-wrap { padding: 0 16px !important; }
  .site-header .brand { padding-right: 8px !important; }
  .site-header .brand-text { font-size: 15px !important; }
  .site-header .brand-tld { font-size: 12px !important; }
  .site-header .brand-tagline { font-size: 9px !important; }
}

@media (max-width: 600px) {
  .public-site .track {
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
  }
  .public-site .track-stats { display: none; }
  .public-site .track-number { margin-right: 0 !important; }
  .public-site .track-main { min-width: 120px; }
}

/* v1.5.4: refined persistent music player */
.player {
  left: clamp(10px, 2vw, 28px);
  right: clamp(10px, 2vw, 28px);
  bottom: clamp(10px, 2vw, 22px);
  min-height: 92px;
  gap: clamp(14px, 2vw, 26px);
  padding: 12px 14px 12px 12px;
  border: 1px solid rgba(126, 224, 164, .2);
  border-radius: 22px;
  color: #fff;
  background: radial-gradient(circle at 8% 0%, rgba(42, 194, 101, .2), transparent 27%), linear-gradient(135deg, rgba(7, 27, 16, .985), rgba(9, 39, 22, .985));
  box-shadow: 0 20px 55px rgba(0, 20, 10, .34), 0 4px 14px rgba(0, 20, 10, .22);
}
.player::before { content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(100deg, rgba(255,255,255,.045), transparent 30%); }
.player-track { position: relative; z-index: 1; display: flex; align-items: center; gap: 13px; min-width: 280px; max-width: 380px; }
.player-artwork { position: relative; display: grid; flex: 0 0 58px; width: 58px; height: 58px; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; color: #d9f7e5; background: radial-gradient(circle at 35% 28%, #169955, #087a3c 54%, #064a28); box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 9px 22px rgba(0,0,0,.22); }
.player-artwork::after { content: ''; position: absolute; width: 24px; height: 24px; right: -7px; bottom: -7px; border: 5px solid rgba(255,255,255,.12); border-radius: 50%; }
.player-equalizer { position: absolute; right: 7px; bottom: 7px; display: flex; align-items: end; gap: 2px; height: 12px; }
.player-equalizer i { display: block; width: 2px; height: 5px; border-radius: 2px; background: #d8ffe7; transform-origin: bottom; animation: player-bar .75s ease-in-out infinite alternate; animation-play-state: paused; }
.player-equalizer i:nth-child(2) { height: 10px; animation-delay: -.35s; }
.player-equalizer i:nth-child(3) { height: 7px; animation-delay: -.55s; }
.player.is-playing .player-equalizer i { animation-play-state: running; }
@keyframes player-bar { from { transform: scaleY(.35); opacity: .6; } to { transform: scaleY(1); opacity: 1; } }
.player-title { min-width: 0; flex: 1 1 auto; }
.player-title small { display: flex; align-items: center; gap: 7px; margin-bottom: 5px; color: #91dbae; font-size: 9px; font-weight: 850; letter-spacing: .15em; }
.player-title strong { max-width: 300px; color: #fff; font-size: 14px; line-height: 1.3; }
.player-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #43d77d; box-shadow: 0 0 0 4px rgba(67,215,125,.11); }
.player audio { position: relative; z-index: 1; min-width: 260px; height: 52px; border-radius: 999px; color-scheme: light; background: #f5faf7; accent-color: var(--green); }
.player-close { position: relative; z-index: 1; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.065); }
.player-close:hover { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.13); transform: rotate(4deg); }

@media (max-width: 760px) {
  .player { display: grid; grid-template-columns: minmax(0, 1fr) 38px; gap: 10px 12px; min-height: 0; padding: 11px; border-radius: 19px; }
  .player-track { grid-column: 1; min-width: 0; max-width: none; }
  .player-artwork { flex-basis: 48px; width: 48px; height: 48px; border-radius: 13px; }
  .player-title strong { max-width: min(66vw, 390px); }
  .player audio { grid-column: 1 / -1; width: 100%; min-width: 0; height: 42px; }
  .player-close { position: static; grid-column: 2; grid-row: 1; align-self: center; width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .player-equalizer i { animation: none; }
}

/* v1.5.6: compact homepage platform statistics */
.home-stats-section { padding: clamp(42px, 5vw, 72px) 0; background: #fff; }
.split-chart-releases.home-ranking-single { grid-template-columns: minmax(0, 1fr); }

/* Compact homepage genre browser */
.home-genres-section { padding: clamp(42px, 5vw, 68px) 0 !important; border-block: 1px solid #e5ebe6; background: linear-gradient(135deg, #f7f8f4 0%, #faf8f2 100%) !important; }
.home-genres-shell { display: grid; grid-template-columns: minmax(270px, .72fr) minmax(0, 1.45fr); align-items: center; gap: clamp(34px, 6vw, 84px); }
.home-genres-head { display: block !important; margin: 0 !important; padding: 0 !important; color: inherit !important; background: none !important; box-shadow: none !important; }
.home-genres-head .eyebrow { display: block !important; margin: 0 0 8px !important; }
.home-genres-head h2 { margin: 7px 0 10px !important; color: var(--ink) !important; font-size: clamp(31px, 3.4vw, 46px) !important; letter-spacing: -.045em; line-height: 1.02; text-transform: none !important; }
.home-genres-head p { max-width: 420px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.home-genre-list { display: flex; flex-wrap: wrap; align-content: center; gap: 12px; }
.home-genre-chip { display: inline-flex; min-height: 58px; align-items: center; gap: 11px; padding: 9px 13px 9px 10px; border: 1px solid #d8e3db; border-radius: 999px; color: #183525; background: rgba(255,255,255,.9); box-shadow: 0 8px 22px rgba(18,60,36,.06); font-size: 14px; font-weight: 800; transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease; }
.home-genre-icon { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border-radius: 50%; color: var(--green); background: #e8f5ec; font-size: 16px; transition: color .2s ease, background .2s ease; }
.home-genre-chip > svg { margin-left: 3px; color: #7d8c83; transition: transform .2s ease; }
.home-genre-chip:hover { border-color: #a8c9b4; color: var(--green-dark); box-shadow: 0 12px 28px rgba(11,74,38,.11); transform: translateY(-2px); }
.home-genre-chip:hover .home-genre-icon { color: #fff; background: var(--green); }
.home-genre-chip:hover > svg { transform: translateX(3px); }
@media (max-width: 760px) {
  .home-genres-shell { grid-template-columns: 1fr; gap: 26px; }
  .home-genres-head p { max-width: 560px; }
  .home-genre-list { gap: 10px; }
}
.home-stats-panel { display: grid; grid-template-columns: minmax(270px, .85fr) minmax(0, 1.65fr); align-items: stretch; overflow: hidden; border: 1px solid #d7e8de; border-radius: 28px; background: linear-gradient(125deg, #eef9f2 0%, #f8fcf9 48%, #fff 100%); box-shadow: 0 18px 55px rgba(8, 78, 39, .07); }
.home-stats-intro { padding: clamp(30px, 4vw, 48px); }
.home-stats-intro .eyebrow { color: var(--green); }
.home-stats-intro h2 { max-width: 330px; margin: 8px 0 12px; font-size: clamp(30px, 3vw, 43px); line-height: 1.04; letter-spacing: -.04em; }
.home-stats-intro p { max-width: 390px; margin: 0; color: #587062; font-size: 14px; line-height: 1.7; }
.home-stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 18px; gap: 12px; }
.home-stat-card { position: relative; display: flex; min-width: 0; flex-direction: column; justify-content: center; min-height: 180px; padding: 25px 22px; overflow: hidden; border: 1px solid #deebe3; border-radius: 20px; background: rgba(255,255,255,.88); box-shadow: 0 9px 28px rgba(9, 67, 36, .055); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.home-stat-card:hover { transform: translateY(-3px); border-color: #b8d9c5; box-shadow: 0 15px 34px rgba(9, 67, 36, .1); }
.home-stat-card::after { content: ''; position: absolute; right: -30px; bottom: -42px; width: 105px; height: 105px; border: 18px solid rgba(8,122,60,.035); border-radius: 50%; }
.home-stat-icon { display: grid; width: 38px; height: 38px; margin-bottom: 18px; place-items: center; border-radius: 12px; color: var(--green); background: #e7f6ec; }
.home-stat-card strong { display: block; margin-bottom: 5px; color: #082d19; font-size: clamp(34px, 4vw, 52px); font-weight: 900; line-height: .95; letter-spacing: -.055em; }
.home-stat-card > span:last-child { color: #5f7769; font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }

@media (max-width: 960px) {
  .home-stats-panel { grid-template-columns: 1fr; }
  .home-stats-intro { padding-bottom: 18px; }
  .home-stats-intro h2, .home-stats-intro p { max-width: 650px; }
  .home-stats-grid { padding-top: 0; }
}

@media (max-width: 640px) {
  .home-stats-section { padding: 32px 0; }
  .home-stats-panel { border-radius: 21px; }
  .home-stats-intro { padding: 27px 22px 18px; }
  .home-stats-grid { grid-template-columns: 1fr; padding: 0 12px 12px; }
  .home-stat-card { display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto; align-items: center; min-height: 0; padding: 18px; column-gap: 14px; }
  .home-stat-icon { grid-row: 1 / 3; margin: 0; }
  .home-stat-card strong { font-size: 34px; }
}

/* v1.5.7: refined homepage artist onboarding callout */
.home-creator-cta { position: relative; overflow: hidden; padding: clamp(58px, 7vw, 92px) 0; color: var(--ink); text-align: left; border-top: 1px solid #e6e1d6; border-bottom: 1px solid #e2ddd2; background: radial-gradient(circle at 12% 18%, rgba(8,122,60,.065), transparent 29%), radial-gradient(circle at 91% 88%, rgba(196,155,66,.075), transparent 31%), linear-gradient(135deg, #f7f5ef 0%, #f2f5f0 56%, #faf8f3 100%); }
.home-creator-cta::before { content: ''; position: absolute; width: 360px; height: 360px; right: -150px; top: -180px; border: 54px solid rgba(8,122,60,.035); border-radius: 50%; }
.home-creator-cta .cta-strip-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 390px); flex-direction: initial; align-items: center; gap: clamp(44px, 8vw, 110px); text-align: left; }
.home-creator-cta .cta-content { max-width: 720px; }
.creator-kicker { display: inline-flex; align-items: center; min-height: 30px; margin-bottom: 20px; padding: 6px 12px; border: 1px solid #c5dccd; border-radius: 999px; color: var(--green); background: #eaf5ee; font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.home-creator-cta .cta-content h2 { max-width: 650px; margin: 0 0 17px; color: #10271b; font-size: clamp(39px, 5vw, 66px); font-weight: 900; line-height: .99; letter-spacing: -.055em; }
.home-creator-cta .cta-content p { max-width: 620px; margin: 0; color: #5e7066; font-size: 17px; line-height: 1.7; }
.creator-checklist { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 30px 0 0; padding: 0; list-style: none; }
.creator-checklist li { display: flex; align-items: center; gap: 8px; color: #294536; font-size: 13px; font-weight: 750; }
.creator-checklist li span { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 11px; font-weight: 900; }
.creator-action-card { padding: 30px; border: 1px solid #d8e3db; border-radius: 24px; background: rgba(255,255,255,.88); box-shadow: 0 24px 55px rgba(25,55,37,.1); backdrop-filter: blur(10px); }
.creator-action-card > span { display: block; margin-bottom: 10px; color: var(--green); font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.creator-action-card > strong { display: block; color: #10271b; font-size: 25px; line-height: 1.15; }
.creator-action-card > p { margin: 12px 0 23px; color: #63746a; font-size: 14px; line-height: 1.6; }
.creator-action-card .btn { display: flex; width: 100%; min-height: 50px; justify-content: space-between; padding-inline: 19px; border-radius: 14px; }
.creator-action-card .btn-white { border-color: var(--green); color: #fff; background: var(--green); }
.creator-action-card .btn-white:hover { border-color: var(--green-dark); color: #fff; background: var(--green-dark); box-shadow: 0 10px 24px rgba(8,122,60,.18); }

/* Refined Discover page */
.discover-hero { padding: clamp(48px, 6vw, 76px) 0; border-bottom: 1px solid #e2e9e4; background: radial-gradient(circle at 88% 14%, rgba(196,155,66,.1), transparent 30%), linear-gradient(135deg, #f8f7f2 0%, #f3f7f3 58%, #fff 100%); }
.discover-hero-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.discover-hero h1 { max-width: 760px; margin: 10px 0 14px; font-size: clamp(46px, 6vw, 76px); line-height: .98; letter-spacing: -.055em; }
.discover-hero p { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.discover-hero-note { display: flex; min-width: 190px; align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid #d9e6dd; border-radius: 18px; background: rgba(255,255,255,.82); box-shadow: 0 12px 34px rgba(17,64,37,.07); }
.discover-note-icon { display: grid; width: 46px; height: 46px; flex: 0 0 46px; place-items: center; border-radius: 14px; color: var(--green); background: #e9f5ed; }
.discover-hero-note strong, .discover-hero-note small { display: block; }
.discover-hero-note strong { color: var(--ink); font-size: 25px; line-height: 1; }
.discover-hero-note small { margin-top: 5px; color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.discover-section { padding-top: clamp(42px, 5vw, 70px); background: #fff; }
.discover-shell { min-width: 0; }
.discover-filter { display: grid; grid-template-columns: minmax(280px, 1.65fr) minmax(170px, .55fr) minmax(180px, .6fr) auto; align-items: end; gap: 14px; padding: 20px; border: 1px solid #dce8e0; border-radius: 22px; background: #fafcfb; box-shadow: 0 15px 42px rgba(9,66,35,.055); }
.discover-filter label { display: block; margin: 0 0 8px 3px; color: #506158; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.discover-filter input, .discover-filter select { width: 100%; height: 50px; padding: 11px 15px; border: 1px solid #d6e3da; border-radius: 13px; color: var(--ink); background: #fff; font: inherit; outline: 0; }
.discover-filter input:focus, .discover-filter select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(8,122,60,.09); }
.discover-search-field { position: relative; }
.discover-search-field > span { position: absolute; left: 15px; bottom: 15px; color: #738178; pointer-events: none; }
.discover-search-field input { padding-left: 44px; }
.discover-apply { min-height: 50px; padding-inline: 22px; border-radius: 13px; white-space: nowrap; }
.discover-results-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin: 48px 0 20px; }
.discover-results-head h2 { margin: 5px 0 0; font-size: clamp(28px, 3vw, 39px); letter-spacing: -.035em; }
.discover-result-meta { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 12px; font-weight: 700; }
.discover-result-meta a { color: var(--green); }
.discover-track-list { overflow: hidden; padding: 8px 18px; border: 1px solid #dce7df; border-radius: 20px; background: #fff; box-shadow: 0 14px 40px rgba(10,63,35,.055); }
.discover-track-list .track:last-child { border-bottom: 0; }
.discover-track-list .track:hover { margin-inline: -8px; padding-inline: 8px; }
.discover-pagination { margin-top: 24px; }
.discover-empty { border: 1px dashed #cbded2; border-radius: 22px; background: #f8fbf9; }
.discover-empty > span { display: grid; width: 52px; height: 52px; margin: 0 auto 16px; place-items: center; border-radius: 50%; color: var(--green); background: #e7f5ec; font-size: 22px; }
.discover-card-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.discover-song-card { min-width: 0; padding: 14px; border: 1px solid #e3e9e5; border-radius: 18px; background: #f8faf8; transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease; }
.discover-song-card:hover { z-index: 1; border-color: #d4e0d8; background: #fff; box-shadow: 0 18px 42px rgba(10,53,30,.13); transform: translateY(-5px); }
.discover-song-art { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 12px; color: #9fb6a8; background: radial-gradient(circle at 32% 24%, #edf6f0, #dfece4 70%); box-shadow: 0 8px 22px rgba(14,52,31,.1); }
.discover-song-art > a { position: relative; z-index: 1; display: block; width: 100%; height: 100%; }
.discover-song-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .25s ease; }
.discover-song-card:hover .discover-song-art img { filter: brightness(.82); transform: scale(1.035); }
.discover-art-fallback { position: absolute; inset: 0; display: grid; place-items: center; font-size: clamp(34px, 4vw, 58px); }
.discover-card-play { position: absolute; right: 12px; bottom: 12px; z-index: 3; display: grid; width: 50px; height: 50px; place-items: center; padding: 0 0 0 3px; border: 0; border-radius: 50%; color: #fff; background: var(--green); box-shadow: 0 12px 28px rgba(0,0,0,.3); cursor: pointer; opacity: 0; transform: translateY(10px) scale(.94); transition: opacity .2s ease, transform .2s ease, background .2s ease; }
.discover-song-card:hover .discover-card-play, .discover-card-play:focus-visible { opacity: 1; transform: translateY(0) scale(1); }
.discover-card-play:hover { background: #0a9149; transform: translateY(0) scale(1.06) !important; }
.discover-explicit { position: absolute; left: 10px; bottom: 10px; z-index: 3; display: grid; width: 21px; height: 21px; place-items: center; border-radius: 4px; color: #fff; background: rgba(16,25,19,.78); font-size: 10px; font-weight: 900; }
.discover-song-copy { padding: 15px 3px 4px; }
.discover-song-copy h3 { margin: 0 0 6px; overflow: hidden; color: var(--ink); font-size: 15px; font-weight: 800; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.discover-song-copy h3 a:hover { color: var(--green); }
.discover-song-copy p { min-height: 19px; margin: 0; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.discover-song-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 13px; padding-top: 11px; border-top: 1px solid #e2e9e4; color: #78867e; font-size: 10px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 1180px) { .discover-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 960px) {
  .discover-filter { grid-template-columns: 1fr 1fr; }
  .discover-search-field { grid-column: 1 / -1; }
  .discover-apply { width: 100%; }
  .discover-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .discover-hero-inner, .discover-results-head { align-items: flex-start; flex-direction: column; }
  .discover-hero-note { width: 100%; }
  .discover-filter { grid-template-columns: 1fr; padding: 16px; }
  .discover-search-field { grid-column: auto; }
  .discover-results-head { margin-top: 38px; gap: 12px; }
  .discover-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .discover-song-card { padding: 10px; border-radius: 15px; }
  .discover-song-art { border-radius: 10px; }
  .discover-card-play { right: 9px; bottom: 9px; width: 43px; height: 43px; opacity: 1; transform: none; }
  .discover-song-copy { padding: 12px 2px 3px; }
  .discover-song-meta { display: none; }
}

@media (max-width: 900px) {
  .home-creator-cta .cta-strip-inner { grid-template-columns: 1fr; text-align: left; }
  .home-creator-cta .cta-content { max-width: 760px; }
  .creator-action-card { max-width: 560px; }
}

@media (max-width: 560px) {
  .home-creator-cta { padding: 48px 0; }
  .home-creator-cta .cta-content h2 { font-size: 40px; }
  .creator-checklist { display: grid; gap: 10px; }
  .creator-action-card { padding: 24px 20px; border-radius: 20px; }
}

/* v1.5.8: aligned homepage editorial cards */
.home-editorial-section .section-head { align-items: center; margin-bottom: 28px; }
.home-editorial-section .section-head > a { display: inline-flex !important; align-items: center; min-height: 38px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; color: #fff; font-size: 12px; text-decoration: none; }
.home-editorial-section .section-head > a:hover { border-color: #fff; background: rgba(255,255,255,.13); }
.home-editorial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 20px; }
.home-editorial-card { min-width: 0; overflow: hidden; border: 1px solid #dce9e1; border-radius: 20px; background: #fff; box-shadow: 0 12px 34px rgba(8, 65, 33, .065); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.home-editorial-card:hover { transform: translateY(-4px); border-color: #b7d7c3; box-shadow: 0 20px 42px rgba(8, 65, 33, .11); }
.home-editorial-card > a { display: flex; height: 100%; flex-direction: column; color: inherit; text-decoration: none; }
.home-editorial-image { position: relative; overflow: hidden; background: #eaf3ed; }
.home-editorial-image img { display: block; width: 100%; height: 220px; object-fit: cover; transition: transform .45s ease; }
.home-editorial-card:hover .home-editorial-image img { transform: scale(1.035); }
.home-editorial-image > span { position: absolute; left: 14px; bottom: 14px; padding: 7px 10px; border-radius: 999px; color: #fff; background: rgba(5, 49, 25, .84); backdrop-filter: blur(8px); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.home-editorial-content { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.home-editorial-content time { color: var(--green); font-size: 11px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.home-editorial-content h3 { margin: 9px 0 11px; color: var(--ink); font-size: clamp(19px, 1.8vw, 24px); line-height: 1.2; letter-spacing: -.025em; }
.home-editorial-content p { display: -webkit-box; margin: 0 0 22px; overflow: hidden; color: #63776c; font-size: 14px; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.home-editorial-link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid #e5eee8; color: var(--green); font-size: 12px; font-weight: 850; }

@media (max-width: 900px) {
  .home-editorial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-editorial-card:last-child { grid-column: 1 / -1; }
  .home-editorial-card:last-child > a { display: grid; grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr); }
  .home-editorial-card:last-child .home-editorial-image img { height: 100%; min-height: 260px; }
}

@media (max-width: 620px) {
  .home-editorial-section .section-head { flex-direction: row; align-items: center; }
  .home-editorial-section .section-head > a { padding: 7px 11px; font-size: 10px; }
  .home-editorial-grid { grid-template-columns: 1fr; }
  .home-editorial-card:last-child { grid-column: auto; }
  .home-editorial-card:last-child > a { display: flex; }
  .home-editorial-card:last-child .home-editorial-image img, .home-editorial-image img { height: min(62vw, 250px); min-height: 0; }
}
