
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

body {
  min-height: 100vh;
  background: url('audio/sfondo.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #e0e0e0;
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  position: relative;
}
body {
  animation: zoomBg 20s ease-in-out infinite alternate;
}

@keyframes zoomBg {
  from { background-size: 100%; }
  to   { background-size: 110%; }
}
    body::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
    }

    .container {
      position: relative;
      width: 100%;
      max-width: 700px;
      text-align: center;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      letter-spacing: 3px;
      margin-bottom: 1.5rem;
      color: #6abf29;
    }

    h2 {
      margin-bottom: 1rem;
    }

    .subtitle {
      color: #ccc;
      margin-bottom: 2rem;
    }

    .tracks {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 2rem;
    }

    .track-card {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(20,20,20,0.8);
      border: 1px solid rgba(106,191,41,0.3);
      border-radius: 12px;
      padding: 14px;
      transition: 0.25s;
      max-width: 650px;
    }

    .track-card:hover {
      transform: translateY(-2px);
      border-color: #6abf29;
    }

    .cover {
      width: 90px;
      height: 90px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
      box-shadow: 0 0 12px rgba(0,0,0,0.6);
    }

    .track-content {
      flex: 1;
      text-align: left;
        min-width: 0;
    }

    .track-title {
      font-weight: bold;
      margin-bottom: 6px;
      color: #fff;
    }

    .track-desc {
      font-size: 0.9rem;
      color: #aaa;
      margin-bottom: 8px;
    }

audio {
  display: block;
  width: 100%;
  min-width: 0;
  height: 48px;
  filter: none;
}

    .contact {
      display: inline-block;
      color: #6abf29;
      border: 2px solid #6abf29;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      transition: 0.3s;
    }

    .contact:hover {
      background: #6abf29;
      color: #111;
    }

    footer {
      margin-top: 30px;
      font-size: 0.8rem;
      color: #888;
    }

@media (max-width: 600px) {

  body {
    background: #0d0d0d !important;
    animation: none !important;
  }

  body::before {
    background: rgba(0, 0, 0, 0.9);
  }

  .track-card {
    flex-direction: column;
    align-items: stretch;
  }

  .cover {
    width: 100%;
    height: auto;
  }

  audio {
    width: 100%;
    height: 48px;
  }
}
.socials {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 84px;
}

.socials i {
  font-size: 38px;      /* doppie */
  color: #ffffff;       /* bianche */
  transition: 0.25s;
  opacity: 0.85;
}

.socials i:hover {
  transform: scale(1.2);
  color: #6abf29;       /* verde al passaggio */
  opacity: 1;
}
