    :root {
      --text-color: #F1F0EB;
      --text-color-dark: #888;
      --text-color-darker: #666;
      --font-primary: 'Cuprum', sans-serif;
      --font-secondary: 'Bebas Neue', sans-serif;
    }   

    html {
      font-size: 16px;
    }
    
    body {
      margin: 0;
      background: linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 100%);
      color: var(--text-color);
      background-attachment: fixed;
      background-size: cover;
      font-family: var(--font-primary);
    }

    header {
      text-align: center;
      padding: 4rem 1rem 2rem;
    }

    header img {
      max-width: 90%;
      width: 900px;
      height: auto;
      filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.1));
    }

    nav {
      text-align: center;
      margin-bottom: 3rem;
      text-transform: uppercase;
      font-family: var(--font-secondary);
    }

    nav a {
      margin: 0 1rem;
      color: var(--text-color-dark);
      text-decoration: none;
      font-size: 2rem;
      transition: color 0.3s, letter-spacing 0.3s;
    }

    nav a:hover {
      letter-spacing: 1px;
      color: var(--text-color-darker);
    }

    .section {
      padding: 0rem 2rem 2rem;
    }

    .section h2 {
      margin-bottom: 0.25rem;
      padding-bottom: 0.25rem;
      font-size: 2rem;
      color: var(--text-color);
    }

    .releases {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-top: 2rem;
    }

    @media (min-width: 768px) {
      .releases {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    .album {
      flex: 1;
      display: flex;
      flex-direction: column;
      border-top: 1px solid #333;
      padding: 2rem;
      background: rgba(255, 255, 255, 0.01);
      border-radius: 0px;
      transition: background 0.3s ease;
    }

    .album:hover {
      background: rgba(255, 255, 255, 0.03);
    }

    .album h3 {
      margin: 0;
      font-size: 2rem;
      letter-spacing: .05rem;
      font-family: var(--font-secondary);
    }

    .album iframe {
      margin-top: 1rem;
      width: 100%;
      height: 120px;
      border: none;
    }

    .album .links {
      font-family: var(--font-secondary);
      font-size: 1.25rem;
    }

    .album .links a {
      margin-right: 1rem;
      color: var(--text-color);
      text-transform: uppercase;
      text-decoration: none;
      transition: color 0.3s, letter-spacing 0.3s;
      color: var(--text-color-dark);
    }

    .album .links a:hover {
      letter-spacing: 1px;
      color: var(--text-color-darker);      
    }

    footer {
      text-align: center;
      padding: 3rem 1rem;
      font-size: 0.8rem;
      color: var(--text-color-darker);
    }
      .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .album img.cover {
      width: 100%;
      max-width: 600px;
      height: auto;
      margin-top: 1rem;
      border-radius: 4px;
      object-fit: cover;
    }

    .tracklist {
      display: none;
    }    

    .track-notes {
      font-size: 0.8em; 
      color: var(--text-color-darker);
    }