    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html, body {
      font-family: 'Orbitron', sans-serif;
      color: #e0d6f9;
    }

    #bg-img {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      background: url('./File/src/site_cover.jpg') center/cover no-repeat;
    }

    .overlay {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5);
    }

    h1 {
      font-size: 4rem;
      margin-bottom: 1rem;
      color: #e0d6f9;
      text-shadow:
        0 0 8px #c27fff,
        0 0 20px #c27fff,
        0 0 30px #d86eff,
        0 0 40px #d86eff;
    }

    p {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      color: #d8b7ff;
      text-shadow:
        0 0 6px #cfa7ff,
        0 0 12px #cfa7ff;
    }

    .buttons a {
      text-decoration: none;
      color: #1a0033;
      background: #d86eff;
      padding: 0.75rem 1.5rem;
      margin: 0 10px;
      border-radius: 5px;
      transition: 0.3s;
      font-weight: bold;
      box-shadow:
        0 0 5px #d86eff,
        inset 0 0 8px #ffbbff;
    }

    .buttons a:hover {
      background: #c05ee6;
      color: #fff;
      box-shadow:
        0 0 15px #c05ee6,
        inset 0 0 10px #ffbbff;
    }

    @keyframes flicker {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.8; }
    }

    h1, p {
      animation: flicker 2s infinite;
    }

    .music-player-container {
      background: rgba(0, 0, 0, 0.5);
      width: 100%;
      padding: 1rem 2rem 2rem 2rem;
      display: flex;
      gap: 2rem;
      align-items: stretch;
      min-height: 400px;
    }

    .music-player {
      max-width: 700px;
      padding: 1rem;
      background: rgba(20, 5, 40, 0.7);
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(210, 150, 255, 0.5);
      text-align: center;
      color: #e0d6f9;
      text-shadow:
        0 0 6px #cfa7ff,
        0 0 12px #cfa7ff;
      flex-shrink: 0;
      margin-left: 1rem;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .music-player h2 {
      margin-bottom: 1rem;
      color: #d86eff;
      text-shadow:
        0 0 10px #d86eff,
        0 0 15px #d86eff;
    }

    .music-player button {
      background: #d86eff;
      border: none;
      margin: 0 5px;
      padding: 0.5rem 1rem;
      font-size: 1.2rem;
      cursor: pointer;
      border-radius: 6px;
      box-shadow:
        0 0 8px #d86eff,
        inset 0 0 8px #ffbbff;
      color: #1a0033;
      font-weight: bold;
      transition: 0.3s;
    }

    .music-player button:hover {
      background: #c05ee6;
      color: #fff;
      box-shadow:
        0 0 15px #c05ee6,
        inset 0 0 12px #ffbbff;
    }

    #seek-bar {
      width: 100%;
      margin: 1rem 0;
      height: 8px;
      background: #2e004a;
      border-radius: 4px;
      appearance: none;
      outline: none;
      cursor: pointer;
      box-shadow: 0 0 6px #cfa7ff;
    }

    #seek-bar::-webkit-slider-thumb,
    #volume-bar::-webkit-slider-thumb {
      appearance: none;
      width: 14px;
      height: 14px;
      background: #d86eff;
      border-radius: 50%;
      border: none;
      box-shadow: 0 0 10px #ffbbff;
    }

    #seek-bar::-moz-range-thumb,
    #volume-bar::-moz-range-thumb {
      width: 14px;
      height: 14px;
      background: #d86eff;
      border: none;
      border-radius: 50%;
      box-shadow: 0 0 10px #ffbbff;
    }

    #volume-bar {
      width: 150px;
      height: 8px;
      background: #2e004a;
      border-radius: 4px;
      appearance: none;
      outline: none;
      cursor: pointer;
      vertical-align: middle;
      box-shadow: 0 0 6px #cfa7ff;
    }

    .album-art {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 1rem;
      margin: 1rem auto;
      display: block;
      box-shadow: 0 0 12px #cfa7ff;
    }

    .right-column {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      gap: 2rem;
      height: 100%;
    }

    .upcoming-shows,
    .blog-post {
      background: rgba(20, 5, 40, 0.7);
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(210, 150, 255, 0.5);
      color: #e0d6f9;
      padding: 1rem 2rem;
      font-size: 1rem;
      line-height: 1.5;
      text-align: left;
      flex-grow: 1;
      min-width: 0;
      overflow-y: auto;
    }

    .upcoming-shows h3,
    .blog-post h3 {
      color: #d86eff;
      text-shadow:
        0 0 10px #d86eff,
        0 0 15px #d86eff;
      margin-bottom: 1rem;
    }

    .upcoming-shows ul,
    .blog-post ul {
      list-style-type: none;
      padding-left: 0;
}


    .footy {
      background: rgba(0, 0, 0, 0.5);
      width: 100%;
      padding: 2rem 0;
    }

    .footy h4 {
      font-size: small;
      text-align: center;
    }

    .socials p {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .socials p a {
      margin-right: 10px;
    }

    .kofi {
      display: flex;
      justify-content: center;
      align-items: center;
    }

@media (max-width: 1000px) {
  .music-player-container {
    flex-direction: column !important;
    align-items: stretch;
    padding: 1rem;
  }

  .music-player {
    width: 100%;
    margin: 0 0 1.5rem 0;
  }

  .right-column {
    flex-direction: column !important;
    width: 100% !important;
  }

  .upcoming-shows,
  .blog-post {
    width: 100% !important;
    margin-top: 1rem;
  }

  .album-art {
    width: 100px;
    height: 100px;
  }

  #seek-bar,
  #volume-bar {
    width: 100%;
  }

  .buttons a {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .socials p {
    flex-wrap: wrap;
    justify-content: center;
  }

  .kofi img {
    width: 100%;
    height: auto;
  }
}