*, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html, body {
        height: 100%;
        font-family: 'Inter', -apple-system, sans-serif;
        background: #000;
        color: #fff;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
      }

      /* ---- NAV ---- */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
        padding: 18px 32px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
      }

      nav a {
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.04em;
        padding: 8px 16px;
        border-radius: 4px;
        transition: all 0.2s;
        font-family: 'Inter', sans-serif;
      }

      nav a:hover {
        background: rgba(255,255,255,0.12);
      }

      /* ---- HERO ---- */
      .hero {
        position: relative;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }

      .hero-bg {
        position: absolute;
        inset: 0;
        background-image: url('assets/images/hero.png');
        background-size: cover;
        background-position: center;
        filter: brightness(0.85) saturate(1.1);
      }

      .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(0,0,0,0.1) 0%,
          rgba(0,0,0,0.0) 40%,
          rgba(0,0,0,0.4) 80%,
          rgba(0,0,0,0.9) 100%
        );
      }

      .hero-content {
        position: relative;
        z-index: 10;
        text-align: center;
        padding: 20px;
      }

      .hero-title {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-style: italic;
        font-size: clamp(48px, 10vw, 120px);
        line-height: 0.95;
        letter-spacing: -0.02em;
        color: #fff;
        text-shadow: 0 4px 40px rgba(0,0,0,0.5);
        margin-bottom: 8px;
      }

      .hero-title span {
        display: block;
        font-size: 0.35em;
        font-style: normal;
        font-weight: 400;
        font-family: 'Inter', sans-serif;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.7);
        margin-bottom: 12px;
      }

      .hero-subtitle {
        position: absolute;
        bottom: 48px;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 10;
      }

      .hero-subtitle p {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: clamp(16px, 3vw, 28px);
        color: rgba(255,255,255,0.7);
        letter-spacing: 0.05em;
      }

      /* ---- SECTIONS ---- */
      .section {
        padding: 80px 24px;
        max-width: 900px;
        margin: 0 auto;
      }

      .section-title {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: 36px;
        margin-bottom: 24px;
        color: #fff;
      }

      .section p {
        font-size: 15px;
        line-height: 1.8;
        color: rgba(255,255,255,0.55);
        max-width: 600px;
      }

      .tracklist {
        list-style: none;
        margin-top: 32px;
      }

      .tracklist li {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        color: rgba(255,255,255,0.5);
        transition: color 0.2s;
      }

      .tracklist li:hover {
        color: rgba(255,255,255,0.85);
      }

      .tracklist .track-num {
        width: 32px;
        color: rgba(255,255,255,0.2);
        font-size: 12px;
      }

      .tracklist .track-name {
        flex: 1;
        font-weight: 500;
        color: rgba(255,255,255,0.7);
      }

      .tracklist .track-dur {
        font-size: 12px;
        color: rgba(255,255,255,0.25);
      }

      /* ---- FOOTER ---- */
      footer {
        padding: 40px 24px;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.05);
      }

      footer p {
        font-size: 11px;
        color: rgba(255,255,255,0.2);
        letter-spacing: 0.1em;
      }

      /* ---- ANIMATION ---- */
      @keyframes fadeUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
      }

      .hero-content {
        animation: fadeUp 1.2s ease-out;
      }

