/* CSS Document */

  <style>
    :root {
      --bg: #000000;
      --fg: #f5f5f5;
      --accent: #ffeb3b;
      --muted: #bdbdbd;
      --border: #222;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: var(--bg);
      color: var(--fg);
    }

    a {
      color: var(--accent);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    header {
      border-bottom: 1px solid var(--border);
      background: #050505;
    }

    .nav {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.75rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .nav-title {
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-size: 0.95rem;
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      font-size: 0.9rem;
    }

    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1.5rem 4rem;
    }

    .track-header {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
      gap: 2rem;
      align-items: center;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--border);
    }

    .track-title {
      font-size: 2rem;
      margin: 0 0 0.35rem;
      color: var(--accent);
    }

    .track-subtitle {
      font-size: 1rem;
      color: var(--muted);
      margin: 0 0 0.75rem;
    }

    .track-meta-list {
      list-style: none;
      padding: 0;
      margin: 0 0 1rem;
      font-size: 0.95rem;
    }

    .track-meta-list li {
      margin-bottom: 0.2rem;
    }

    .track-cover img {
      max-width: 320px;
      width: 100%;
      height: auto;
      border-radius: 16px;
      display: block;
    }

    .streaming-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
      font-size: 0.9rem;
      margin-top: 0.5rem;
    }

    .section {
      padding-block: 2rem;
      border-bottom: 1px solid var(--border);
    }

    .section:last-of-type {
      border-bottom: none;
    }

    .section h2 {
      font-size: 1.6rem;
      margin: 0 0 0.75rem;
      color: var(--accent);
    }

    .section h3 {
      font-size: 1.1rem;
      margin: 1.25rem 0 0.4rem;
    }

    .section p {
      max-width: 780px;
      line-height: 1.7;
      margin: 0 0 0.75rem;
    }

    .festival-meta {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 0.75rem 1.5rem;
      margin-bottom: 1rem;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .festival-meta div span {
      display: block;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .producer-list,

    .lyrics-source {
      font-size: 0.95rem;
    }

    .lyrics-block {
      max-width: 780px;
      padding: 1rem 1.25rem;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: #050505;
      white-space: pre-wrap;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .nav {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-links {
        flex-wrap: wrap;
      }

      .track-header {
        grid-template-columns: minmax(0, 1fr);
      }

      .track-cover {
        order: -1;
      }
    }

  </style>