
    :root {
      --black: #060608;
      --near-black: #0b0b0e;
      --panel: rgba(16, 16, 19, 0.72);
      --hairline: rgba(255, 255, 255, 0.14);
      --fog: #b0b2bb;
      --fog-dim: #6b6c74;
      --white: #efeef0;
      --beam: #d8d6cb;
      --amber: #b98f4a;
      --amber-dim: rgba(185, 143, 74, 0.35);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Space Grotesk', sans-serif;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* film grain overlay */
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 80;
      opacity: 0.05;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    }

    /* ============ NAV ============ */
    nav {
      width: 100%;
      top: 0;
      left: 0;
      right: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 30px clamp(20px, 5vw, 64px);
      z-index: 60;
      mix-blend-mode: difference;
    }

    .logo-mark img {
      width: clamp(34px, 6vw, 45px);
      height: clamp(34px, 6vw, 45px);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: clamp(8px, 2vw, 16px);
      font-size: clamp(10px, 2.4vw, 12px);
      letter-spacing: 0.22em;
      font-weight: 500;
      color: var(--white);
    }

    .nav-right span {
      font-size: clamp(15px, 4vw, 22px);
    }

    .nav-right svg {
      width: clamp(17px, 4vw, 23px);
      height: clamp(17px, 4vw, 23px);
    }

    .follow-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }

    /* ============ HERO ============ */
    .hero {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 30px;
      background-image:
        linear-gradient(to bottom, rgba(4, 4, 5, 0.35) 0%, rgba(4, 4, 5, 0.15) 30%, rgba(4, 4, 5, 0.55) 88%, var(--black) 100%),
        url("./assets/images/bg-img.png");
      background-size: cover;
      background-position: center 38%;
      background-repeat: no-repeat;
      height: 100%;
      min-height: 100vh;
    }

    .hero-inner {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 24px;
      width: 100%;
    }

    .wordmark img {
          margin-top: 170px;

      max-width: 720px;
      width: min(80vw, 720px);
      height: auto;
    }

    .eyebrow {
      font-family: 'Syncopate', sans-serif;
      font-size: clamp(8.5px, 1.8vw, 12px);
      letter-spacing: clamp(0.28em, 1.2vw, 0.5em);
      color: var(--fog);
      margin: 34px 12px;
      animation: fadeUp 1.1s ease forwards 0.2s;
    }

    .divider {
      width: 41px;
      height: 3px;
      background: linear-gradient(to bottom, transparent, var(--fog) 40%, transparent);
      margin: 30px 0 clamp(50px, 12vw, 115px);

      animation: fadeIn 1s ease forwards 1s;
    }

    /* vertical beam line with a glowing dot at the base, matching the closing motif of the hero beam */
    .bottom-divider {
      position: relative;
      width: 1px;
      height: 46px;
      margin: 10px auto clamp(50px, 12vw, 90px);
      background: linear-gradient(to bottom, transparent, var(--fog) 65%, var(--white));
      animation: fadeIn 1.2s ease forwards 0.2s;
    }

    .bottom-divider::after {
      content: "";
      position: absolute;
      bottom: -4px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--white); 
      /* box-shadow: 0 0 10px 2px rgba(239, 238, 240, 0.55); */
    }

    .subtitle {
      font-size: 11px;
      letter-spacing: 0.5em;
      color: var(--fog);
      font-weight: 400;
      opacity: 0;
      animation: fadeUp 1.1s ease forwards 0.75s;
    }

    .meta-row {
      margin-top: clamp(28px, 6vw, 54px);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: clamp(9px, 2.2vw, 10.5px);
      letter-spacing: clamp(0.16em, 1vw, 0.28em);
      color: var(--fog-dim);
      animation: fadeIn 1.2s ease forwards 1.3s;
      padding: 0 12px;
    }

    .meta-row a{
      color: var(--fog-dim);
      text-decoration: none;
      transition: color .3s;
      font-size: 11px;
    }

    .meta-row a:hover {
      color: var(--white);
    }
  
/* Bottom Indicator Pulse Animations */
@keyframes indicatorPulseBob {
 
  0%,
  100% {
    transform: translateY(0);
   
  }
 
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}
 
@keyframes dotGlowPulse {
 
  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3);
    transform: scale(1);
  }
 
  50% {
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.95), 0 0 22px rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
  }
}
 
.bottom-line-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
  animation: indicatorPulseBob 2.4s ease-in-out infinite;
}
 
.bottom-line-indicator::before {
  content: '';
  width: 1.5px;
  height: 26px;
}
 
.bottom-line-indicator::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-top: 1px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  animation: dotGlowPulse 2.4s ease-in-out infinite;
}
 
 

    /* ============ PLAYER SECTION ============ */
    .player-section {
      position: relative;
      max-width: 720px;
      margin: 0px auto 0;
      padding: 0 20px 20px;
      z-index: 10;
    }

    .player-section iframe {
      width: 100%;
      display: block;
    }

    .player-card {
      background: var(--panel);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid var(--hairline);
      border-radius: 4px;
      padding: clamp(16px, 4vw, 26px);
      box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7);
    }

    .now-playing {
      display: flex;
      align-items: center;
      gap: clamp(12px, 3vw, 20px);
      padding-bottom: 24px;
      border-bottom: 1px solid var(--hairline);
      margin-bottom: 18px;
      flex-wrap: wrap;
    }

    .cover-art {
      width: clamp(58px, 12vw, 78px);
      height: clamp(58px, 12vw, 78px);
      flex-shrink: 0;
      background:
        radial-gradient(circle at 30% 20%, rgba(185, 143, 74, 0.5), transparent 60%),
        linear-gradient(135deg, #141416, #050506);
      border: 1px solid var(--hairline);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .cover-art::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 10px);
      z-index: 1;
      pointer-events: none;
    }

    .cover-art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .np-info {
      flex: 1;
      min-width: 0;
    }

    .np-label {
      font-size: 9.5px;
      letter-spacing: 0.3em;
      color: var(--fog-dim);
      margin-bottom: 8px;
    }

    .np-title {
      font-family: 'Syncopate', sans-serif;
      font-size: clamp(13px, 3vw, 16px);
      letter-spacing: 0.04em;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .np-sub {
      font-size: 12px;
      color: var(--fog);
      font-weight: 300;
    }

    .play-toggle {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      background: transparent;
      transition: all .35s ease;
    }

    .play-toggle:hover {
      background: var(--white);
    }

    .play-toggle svg {
      width: 14px;
      height: 14px;
      fill: var(--white);
      transition: fill .35s ease;
      margin-left: 2px;
    }

    .play-toggle:hover svg {
      fill: var(--black);
    }

    .progress-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
      font-size: 10px;
      letter-spacing: 0.05em;
      color: var(--fog-dim);
    }

    .progress-track {
      flex: 1;
      height: 1px;
      background: var(--hairline);
      position: relative;
    }

    .progress-track::after {
      content: "";
      position: absolute;
      left: 0;
      top: -1.5px;
      width: 0%;
      height: 4px;
      background: var(--white);
      border-radius: 2px;
    }

    .progress-track .dot {
      position: absolute;
      left: 0%;
      top: 50%;
      width: 8px;
      height: 8px;
      background: var(--white);
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    .tracklist {
      display: flex;
      flex-direction: column;
    }

    .track {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 13px 6px;
      border-radius: 3px;
      cursor: pointer;
      transition: background .25s ease;
    }

    .track:hover {
      background: rgba(255, 255, 255, 0.035);
    }

    .track-index {
      font-size: 11px;
      color: var(--fog-dim);
      width: 16px;
      font-variant-numeric: tabular-nums;
    }

    .track.active .track-index {
      color: var(--amber);
    }

    .track-names {
      flex: 1;
      min-width: 0;
    }

    .track-title {
      font-size: 13.5px;
      color: var(--white);
      font-weight: 400;
    }

    .track.active .track-title {
      color: var(--amber);
    }

    .track-artist {
      font-size: 11px;
      color: var(--fog-dim);
      margin-top: 2px;
    }

    .track-time {
      font-size: 11px;
      color: var(--fog-dim);
      font-variant-numeric: tabular-nums;
    }

    /* ============ STREAM LINKS ============ */
    .platforms {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 ;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(16px, 4vw, 40px);
      flex-wrap: wrap;
    }

    .platforms img {
      height: clamp(22px, 5vw, 32px);
      width: auto;
      cursor: pointer;
    }

    .platforms img:hover {
      opacity: 1;
      transform: translateY(-2px);
      transition: opacity .3s ease, transform .3s ease;
    }
.bottom-divider {
  width: 1px;
  height: 46px;
   background: linear-gradient(to bottom, transparent, var(--fog) 5%, var(--white));
}
.bottom-divider::after {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--white);
  /* box-shadow: 0 0 10px 2px rgba(239,238,240,0.55); */
}

    /* ============ RESPONSIVE ============ */

    @media (max-width: 640px) {
      nav {
        padding: 20px 18px;
      }

      .hero {
        padding-bottom: 20px;
      }

      .wordmark img {
        margin: 0;
        width: min(86vw, 480px);
      }

      .divider {
        margin: 0px 0 clamp(40px, 22vw, 70px);
        margin-bottom: 100px;
      }

      .bottom-divider {
        margin: 30px auto clamp(40px, 14vw, 70px);
      }

      .meta-row {
        margin-top: 100px;
      }

      .player-section {
        padding: 0 14px 14px;
      }

      .player-card {
        border-radius: 6px;
      }

      .now-playing {
        gap: 12px;
        padding-bottom: 18px;
        margin-bottom: 14px;
      }

      .np-title {
        font-size: 13.5px;
      }

      .track {
        padding: 11px 4px;
        gap: 12px;
      }

      .track-title {
        font-size: 12.5px;
      }

      .platforms {
        gap: 20px 26px;
      }
    }

    @media (max-width: 380px) {
      .wordmark img {
        width: 92vw;
      }

      .nav-right {
        gap: 8px;
      }

      .now-playing {
        flex-wrap: nowrap;
      }

      .np-title {
        font-size: 12px;
      }

      .np-sub {
        font-size: 10.5px;
      }
    }