@font-face {
  font-family: 'Calora';
  src: url('../assets/fonts/Calora.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

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

    :root {
      --black: #05070b;
      --white: #f4f0ea;
      --gold: #d8b57a;
      --gold-dim: rgba(216,181,122,0.14);
      --gold-mid: rgba(216,181,122,0.45);
      --ink: rgba(244,240,234,0.07);
      --ink2: rgba(244,240,234,0.16);
      --glass-top: rgba(15, 22, 32, 0.52);
      --glass-bottom: rgba(10, 14, 22, 0.34);
      --glass-edge: rgba(255, 255, 255, 0.15);
      --glass-shadow: rgba(4, 7, 13, 0.55);
    }

    html { scroll-behavior: smooth; }

    body {
      background:
        radial-gradient(1400px 900px at 10% -10%, rgba(84, 120, 165, 0.18), transparent 65%),
        radial-gradient(1100px 760px at 100% 30%, rgba(216, 181, 122, 0.1), transparent 68%),
        linear-gradient(170deg, #03060b 0%, #070d14 52%, #04070b 100%);
      color: var(--white);
      font-family: 'DM Mono', monospace;
      font-weight: 300;
      overflow-x: hidden;
      cursor: none;
    }

    /* CUSTOM CURSOR */
    #cursor {
      position: fixed; top: 0; left: 0; z-index: 9999;
      width: 10px; height: 10px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      transition: transform 0.12s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s;
      transform: translate(-50%, -50%);
    }
    #cursor-ring {
      position: fixed; top: 0; left: 0; z-index: 9998;
      width: 36px; height: 36px;
      border: 1px solid var(--gold-mid);
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), width 0.3s, height 0.3s, opacity 0.3s;
    }
    body:hover #cursor { opacity: 1; }

    /* UNICORN BG */
    #unicorn-bg {
      position: fixed; inset: 0; z-index: 0;
      width: 100%; height: 100%;
      opacity: 0.55;
    }
    #unicorn-bg > div {
      width: 100%; height: 100%;
    }

    /* GRAIN OVERLAY */
    #grain {
      position: fixed; inset: 0; z-index: 1;
      pointer-events: none;
      opacity: 0.045;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
    }

    /* MAIN LAYOUT */
    #app { position: relative; z-index: 2; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 28px 48px;
      border-bottom: 1px solid var(--ink2);
      backdrop-filter: blur(24px) saturate(125%);
      -webkit-backdrop-filter: blur(24px) saturate(125%);
      background: linear-gradient(160deg, rgba(20, 28, 41, 0.52), rgba(8, 12, 19, 0.34));
      box-shadow: 0 12px 35px var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    .nav-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      opacity: 0.9;
      transition: opacity 0.2s;
    }
    .nav-logo:hover { opacity: 1; }
    .nav-links {
      display: flex; gap: 40px; list-style: none;
    }
    .nav-links a {
      font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(240,237,232,0.5);
      text-decoration: none;
      transition: color 0.25s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-stream {
      display: flex; gap: 18px;
      align-items: center;
    }
    .nav-stream a {
      color: rgba(240,237,232,0.46);
      text-decoration: none;
      transition: color 0.25s, transform 0.25s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .nav-stream a:hover {
      color: var(--gold);
      transform: translateY(-1px);
    }
    .nav-stream svg {
      width: 19px;
      height: 19px;
      fill: currentColor;
    }

    /* HERO */
    #hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      justify-content: flex-end;
      padding: 0 48px 80px;
      position: relative;
    }
    .hero-kicker {
      font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 1s 0.4s forwards;
    }
    .hero-title {
      font-family: 'Calora', 'Cormorant Garamond', serif;
      font-weight: 400;
      font-style: normal;
      font-size: clamp(62px, 9vw, 132px);
      line-height: 0.88;
      letter-spacing: 0.01em;
      color: var(--white);
      opacity: 0;
      animation: fadeUp 1.2s 0.55s forwards;
    }
    .hero-tagline {
      margin-top: 28px;
      font-size: 13px; letter-spacing: 0.1em;
      color: rgba(240,237,232,0.45);
      max-width: 640px;
      line-height: 1.9;
      opacity: 0;
      animation: fadeUp 1s 0.75s forwards;
    }
    .hero-scroll {
      position: absolute; bottom: 80px; right: 48px;
      display: flex; flex-direction: column; align-items: center; gap: 12px;
      opacity: 0; animation: fadeIn 1s 1.2s forwards;
    }
    .hero-scroll span {
      font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
      color: rgba(240,237,232,0.3);
      writing-mode: vertical-rl;
    }
    .scroll-line {
      width: 1px; height: 60px;
      background: linear-gradient(to bottom, var(--gold-mid), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    /* MARQUEE */
    .marquee-wrap {
      border-top: 1px solid var(--ink2);
      border-bottom: 1px solid var(--ink2);
      overflow: hidden;
      padding: 14px 0;
      display: flex;
      align-items: center;
      background: linear-gradient(160deg, rgba(216,181,122,0.12), rgba(18,26,37,0.3));
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .marquee-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation: marquee 34s linear infinite;
      will-change: transform;
    }
    .marquee-content {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      white-space: nowrap;
    }
    .marquee-item {
      font-family: 'Unbounded', sans-serif;
      font-weight: 300;
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--gold);
      opacity: 0.6;
      transform: translateY(-1px);
      padding: 0 40px;
    }
    .marquee-sep {
      color: var(--gold);
      opacity: 0.25;
      padding: 0 8px;
      transform: translateY(-1px);
    }

    /* ALBUM SECTION */
    #album {
      padding: 120px 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .album-cover-wrap {
      position: relative;
      width: 100%;
      min-width: 0;
    }
    .album-cover {
      width: 100%;
      max-width: 560px;
      aspect-ratio: 1;
      background: transparent;
      border: none;
      display: block;
      position: relative;
      overflow: visible;
      transition: box-shadow 0.5s ease;
      will-change: transform;
      margin: 0 auto;
      --tilt-x: 0deg;
      --tilt-y: 0deg;
      transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
      box-shadow: 34px 40px 54px rgba(3, 7, 13, 0.45);
    }
    .album-glow {
      display: none;
    }

    .album-cover-image {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      border-radius: 3px;
      box-shadow: 0 0 0 1px rgba(244,240,234,0.18);
    }

    .album-info { padding-top: 12px; }
    .album-label {
      font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
    }
    .album-name {
      font-family: 'Calora', 'Cormorant Garamond', serif;
      font-weight: 400;
      font-size: clamp(44px, 6vw, 88px);
      line-height: 0.95;
      letter-spacing: 0.01em;
      margin-bottom: 24px;
    }
    .album-meta {
      font-size: 10px; letter-spacing: 0.12em;
      color: rgba(240,237,232,0.4);
      margin-bottom: 48px;
    }

    /* TRACK LIST */
    .tracklist { list-style: none; border-top: 1px solid var(--ink2); }
    .track-item {
      display: grid;
      grid-template-columns: 32px 1fr auto 24px;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid var(--ink);
      cursor: pointer;
      transition: all 0.2s;
      position: relative;
      overflow: hidden;
    }
    .track-item::before {
      content: '';
      position: absolute; left: -100%; top: 0; bottom: 0;
      width: 100%;
      background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
      transition: left 0.5s ease;
    }
    .track-item:hover::before { left: 100%; }
    .track-item:hover .track-name { color: var(--gold); }
    .track-item:hover .track-num { color: var(--gold); }
    .track-num {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      color: rgba(240,237,232,0.25);
      letter-spacing: 0.05em;
      transition: color 0.2s;
    }
    .track-name {
      font-size: 11px;
      letter-spacing: 0.08em;
      color: rgba(240,237,232,0.8);
      transition: color 0.2s;
    }
    .track-dur {
      font-size: 9px;
      color: rgba(240,237,232,0.25);
      letter-spacing: 0.05em;
    }
    .track-lyrics-btn {
      appearance: none;
      -webkit-appearance: none;
      border: none;
      background: transparent;
      color: rgba(240,237,232,0.35);
      width: 20px;
      height: 20px;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: color 0.2s, transform 0.2s;
      z-index: 2;
    }
    .track-lyrics-btn svg {
      width: 13px;
      height: 13px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      pointer-events: none;
    }
    .track-item:hover .track-lyrics-btn,
    .track-lyrics-btn:hover {
      color: var(--gold);
      transform: translateY(-1px);
    }
    .track-playing { color: var(--gold) !important; }
    .track-playing .track-name { color: var(--gold) !important; }
    .play-pulse {
      display: inline-block;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulseDot 1.2s ease-in-out infinite;
    }

    /* STREAMING LINKS */
    .stream-links {
      display: flex; gap: 12px; flex-wrap: wrap;
      margin-top: 36px;
    }
    .stream-btn {
      display: inline-flex; align-items: center; justify-content: center;
      width: 36px;
      height: 36px;
      padding: 0;
      border: 1px solid var(--ink2);
      border-radius: 50%;
      color: rgba(240,237,232,0.6);
      text-decoration: none;
      transition: all 0.25s;
      background: transparent;
      cursor: pointer;
    }
    .stream-btn:hover {
      color: var(--gold);
      border-color: var(--gold-mid);
      background: var(--gold-dim);
    }
    .stream-btn svg { width: 15px; height: 15px; fill: currentColor; }
    .stream-btn[aria-label="Spotify"] svg,
    .stream-btn[aria-label="YouTube Music"] svg { transform: translateX(1px); }
    .stream-btn[aria-label="Apple Music"] svg {
      width: 19px;
      height: 19px;
      transform: translateY(-0.8px) translateX(-1.5px);
    }

    /* PHILOSOPHY SECTION */
    #philosophy {
      padding: 120px 48px;
      border-top: 1px solid var(--ink2);
      display: grid;
      grid-template-columns: 0.8fr 1.55fr 1.15fr;
      gap: 80px;
      align-items: start;
      background: linear-gradient(155deg, rgba(20, 29, 42, 0.34), rgba(8, 12, 19, 0.2));
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }
    .phil-label {
      font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold); opacity: 0.7;
      padding-top: 8px;
    }
    .phil-main {
      grid-column: 2;
    }
    .phil-text {
      font-family: 'Calora', 'Cormorant Garamond', serif;
      font-weight: 400;
      font-size: clamp(30px, 3.8vw, 58px);
      line-height: 1.15;
      color: var(--white);
      letter-spacing: 0.01em;
    }
    .phil-manifesto {
      grid-column: 3;
      font-size: 12px;
      line-height: 1.75;
      color: rgba(240,237,232,0.56);
      display: grid;
      gap: 18px;
      max-width: 420px;
    }
    .phil-manifesto p {
      margin: 0;
    }
    .phil-quotes {
      grid-column: 1 / -1;
      margin-top: 20px;
    }

    /* QUOTE GALLERY */
    .quote-gallery {
      position: relative;
      min-height: 300px;
      border: none;
      background: transparent;
      border-radius: 0;
      padding: 36px 38px 84px;
      overflow: hidden;
      max-width: 820px;
      margin: 0 auto;
    }
    .quote-gallery::before {
      content: none;
      position: absolute;
      width: 380px;
      height: 380px;
      right: -120px;
      top: -170px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(216,181,122,0.2), transparent 68%);
      pointer-events: none;
    }
    .quote-gallery::after {
      content: none;
      position: absolute;
      inset: 0;
      background: linear-gradient(130deg, rgba(120, 163, 213, 0.06), transparent 45%, rgba(216, 181, 122, 0.08));
      pointer-events: none;
    }
    .quote-card {
      position: absolute;
      inset: 36px 38px 72px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.65s ease, transform 0.65s ease;
      pointer-events: none;
      z-index: 1;
    }
    .quote-card.is-active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .quote-text {
      font-family: 'Calora', 'Cormorant Garamond', serif;
      font-size: clamp(28px, 4.1vw, 54px);
      line-height: 1.08;
      letter-spacing: 0.01em;
      max-width: 640px;
      color: rgba(244,240,234,0.95);
      text-wrap: balance;
      margin: 0 auto;
    }
    .quote-meta {
      font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(244,240,234,0.45);
      margin-top: 28px;
      display: flex;
      gap: 14px;
      align-items: center;
      justify-content: center;
    }
    .quote-meta-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold-mid);
    }
    .quote-progress {
      height: 2px;
      width: min(220px, 40vw);
      background: rgba(244,240,234,0.12);
      border-radius: 2px;
      overflow: hidden;
      position: relative;
      z-index: 3;
    }
    .quote-progress-bar {
      height: 100%;
      width: 100%;
      transform-origin: left center;
      transform: scaleX(0);
      background: linear-gradient(90deg, rgba(216,181,122,0.85), rgba(244,240,234,0.9));
      animation: quoteProgress 7s linear infinite;
    }
    .quote-controls {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 22px;
      z-index: 4;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }
    .quote-nav {
      border: 1px solid var(--ink2);
      background: rgba(18, 24, 34, 0.46);
      color: rgba(244,240,234,0.76);
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Mono', monospace;
      font-size: 13px;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .quote-nav:hover {
      color: var(--gold);
      border-color: var(--gold-mid);
      background: rgba(26, 33, 45, 0.58);
    }

    /* ABOUT / CONNECT */
    #connect {
      padding: 200px 48px 200px;
      border-top: 1px solid var(--ink2);
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
      align-items: center;
      justify-items: center;
      text-align: center;
      background: linear-gradient(160deg, rgba(20, 29, 42, 0.36), rgba(8, 11, 18, 0.24));
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }
    .connect-cta {
      font-family: 'Calora', 'Cormorant Garamond', serif;
      font-size: clamp(62px, 9vw, 132px);
      line-height: 0.88;
      letter-spacing: 0.01em;
      color: rgba(244,240,234,0.95);
    }
    .connect-links {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
    }
    .connect-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 24px;
      border: 1px solid rgba(240,237,232,0.6);
      border-radius: 999px;
      background: transparent;
      text-decoration: none;
      color: rgba(240,237,232,1);
      font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
      transition: color 0.2s, border-color 0.2s, transform 0.2s, opacity 0.2s;
    }
    .connect-link:hover {
      color: var(--gold);
      border-color: var(--gold-mid);
      transform: translateY(-2px);
      opacity: 0.85;
    }
    .connect-link svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
      opacity: 0.92;
    }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--ink2);
      padding: 32px 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .footer-copy {
      font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(240,237,232,0.2);
    }
    .brand-name {
      font-family: 'Unbounded', sans-serif;
      font-weight: 200;
      letter-spacing: 0.18em;
    }
    /* PLAYER BAR */
    #player {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      background: linear-gradient(155deg, rgba(24, 35, 48, 0.68), rgba(11, 16, 24, 0.44));
      backdrop-filter: blur(30px) saturate(130%);
      -webkit-backdrop-filter: blur(30px) saturate(130%);
      border-top: 1px solid var(--ink2);
      padding: 0 48px;
      height: 72px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 24px;
      transform: translateY(100%);
      transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
      box-shadow: 0 -14px 40px var(--glass-shadow), inset 0 1px 0 var(--glass-edge);
    }
    #player.visible { transform: translateY(0); }
    .player-info { display: flex; flex-direction: column; gap: 4px; min-width: 180px; }
    .player-track-name {
      font-size: 11px; letter-spacing: 0.06em;
      color: var(--white); white-space: nowrap; overflow: hidden;
      text-overflow: ellipsis; max-width: 240px;
    }
    .player-artist {
      font-family: 'Unbounded', sans-serif;
      font-weight: 200;
      font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); opacity: 0.7;
    }
    .player-controls {
      display: flex; align-items: center; gap: 24px;
    }
    .player-btn {
      background: none; border: none; color: rgba(240,237,232,0.5);
      cursor: pointer; transition: color 0.2s; padding: 4px;
      font-size: 18px; line-height: 1;
    }
    .player-btn:hover { color: var(--gold); }
    .player-btn.active { color: var(--gold); }
    .player-lyrics-btn {
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      border: 1px solid transparent;
      border-radius: 50%;
    }
    .player-lyrics-btn svg {
      width: 14px;
      height: 14px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      pointer-events: none;
    }
    .player-lyrics-btn:hover,
    .player-lyrics-btn.is-open {
      border-color: var(--gold-mid);
      background: var(--gold-dim);
      color: var(--gold);
    }
    #playBtn {
      width: 40px; height: 40px;
      border: 1px solid var(--gold-mid);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
    }
    #playBtn:hover { background: var(--gold-dim); }
    .play-icon {
      display: inline-block;
      transform: translateX(1px);
    }
    .pause-icon {
      display: inline-block;
      transform: translateX(0);
    }
    .play-icon, .pause-icon {
      pointer-events: none;
    }
    .player-progress {
      flex: 1;
      display: flex; align-items: center; gap: 12px;
      max-width: 500px;
    }
    .player-time {
      font-size: 9px; letter-spacing: 0.05em;
      color: rgba(240,237,232,0.3);
      min-width: 36px;
    }
    #progressBar {
      flex: 1; height: 2px;
      background: var(--ink2);
      border-radius: 1px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    #progressFill {
      height: 100%;
      background: var(--gold);
      width: 0%;
      transition: width 0.1s linear;
      border-radius: 1px;
    }
    .player-vol {
      display: flex; align-items: center; gap: 8px;
    }
    .player-vol .player-lyrics-btn {
      margin-left: 4px;
      flex-shrink: 0;
    }
    .vol-icon { color: rgba(240,237,232,0.3); font-size: 13px; }
    #volSlider {
      appearance: none;
      -webkit-appearance: none; width: 80px; height: 2px;
      background: var(--ink2); border-radius: 1px; cursor: pointer;
    }
    #volSlider::-webkit-slider-thumb {
      -webkit-appearance: none; width: 10px; height: 10px;
      background: var(--gold); border-radius: 50%;
    }

    /* LYRICS PANEL */
    #lyricsPanel {
      position: fixed;
      right: 24px;
      bottom: 86px;
      z-index: 210;
      width: min(460px, calc(100vw - 48px));
      max-height: min(62vh, 620px);
      border: 1px solid var(--ink2);
      border-radius: 18px;
      padding: 18px 20px 20px;
      background: linear-gradient(155deg, rgba(24, 35, 48, 0.82), rgba(11, 16, 24, 0.64));
      backdrop-filter: blur(26px) saturate(140%);
      -webkit-backdrop-filter: blur(26px) saturate(140%);
      box-shadow: 0 20px 52px rgba(3, 8, 14, 0.48), inset 0 1px 0 rgba(230, 215, 188, 0.14);
      opacity: 0;
      transform: translateY(16px) scale(0.98);
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease;
      display: grid;
      gap: 10px;
    }
    #lyricsPanel.is-open {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .lyrics-panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }
    .lyrics-panel-kicker {
      font-size: 8px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(240,237,232,0.4);
    }
    .lyrics-panel-close {
      appearance: none;
      -webkit-appearance: none;
      width: 26px;
      height: 26px;
      border: 1px solid var(--ink2);
      border-radius: 50%;
      background: rgba(10, 14, 22, 0.4);
      color: rgba(240,237,232,0.6);
      font-size: 12px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .lyrics-panel-close:hover {
      color: var(--gold);
      border-color: var(--gold-mid);
      background: rgba(26, 33, 45, 0.58);
    }
    .lyrics-panel-title {
      margin: 0;
      font-family: 'Calora', 'Cormorant Garamond', serif;
      font-size: clamp(28px, 3.1vw, 42px);
      line-height: 0.94;
      color: rgba(244,240,234,0.95);
      letter-spacing: 0.01em;
    }
    .lyrics-panel-body {
      font-size: 11px;
      line-height: 1.75;
      letter-spacing: 0.05em;
      color: rgba(240,237,232,0.72);
      white-space: pre-line;
      overflow: auto;
      padding-right: 4px;
      max-height: min(43vh, 420px);
      scrollbar-width: thin;
      scrollbar-color: rgba(216,181,122,0.55) rgba(27, 35, 48, 0.35);
    }
    .lyrics-panel-body::-webkit-scrollbar {
      width: 8px;
    }
    .lyrics-panel-body::-webkit-scrollbar-track {
      background: rgba(27, 35, 48, 0.35);
      border-radius: 8px;
    }
    .lyrics-panel-body::-webkit-scrollbar-thumb {
      background: rgba(216,181,122,0.55);
      border-radius: 8px;
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; } to { opacity: 1; }
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.1); }
    }
    @keyframes pulseDot {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(0.5); opacity: 0.4; }
    }
    @keyframes quoteProgress {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }

    /* REVEAL ANIMATION */
    .reveal {
      opacity: 0; transform: translateY(32px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }
    .reveal.in-view { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      nav { padding: 20px 24px; }
      .nav-links { display: none; }
      .nav-stream {
        display: flex;
        gap: 14px;
      }
      .nav-stream a {
        pointer-events: auto;
      }
      #hero { padding: 0 24px 80px; }
      #album { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
      #philosophy { grid-template-columns: 1fr; padding: 80px 24px; gap: 30px; }
      .phil-main, .phil-manifesto { grid-column: auto; }
      .phil-manifesto { max-width: none; }
      #connect { padding: 120px 24px 120px; }
      .quote-gallery { min-height: 320px; padding: 28px 22px 80px; border-radius: 16px; }
      .quote-card { inset: 28px 22px 66px; }
      .quote-text { max-width: 90vw; }
      .quote-progress { width: min(150px, 40vw); }
      .quote-text { font-size: clamp(24px, 8vw, 40px); }
      .connect-cta { font-size: clamp(48px, 14vw, 88px); }
      #connect { gap: 40px; }
      .connect-links { justify-content: center; }
      #player { padding: 0 24px; }
      #lyricsPanel {
        left: 16px;
        right: 16px;
        width: auto;
        bottom: 82px;
        max-height: min(58vh, 500px);
        padding: 16px 16px 18px;
      }
      .lyrics-panel-body {
        max-height: min(36vh, 320px);
      }
      footer { padding: 24px; }
    }
