body {
  margin: 0;
  font-family: 'Helvetica', sans-serif;
  min-height: 100vh;
  color: #fff;
  background: linear-gradient(90deg, #2A7B9B 0%, #57C785 50%, #EDDD53 100%);
}

/* HEADER */
.logo-container {
  text-align: center;
  padding: 20px 0;
}

.site-logo {
  max-width: 180px;
  height: auto;
}

.site-title {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
}

/* MARQUEE RDS - versione più leggera */
.rds-marquee {
    background: linear-gradient(90deg, #e0f7fa 0%, #80deea 100%);
    color: #004d40;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 20px;
    overflow: hidden;
    position: relative;
    user-select: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin: 20px auto;
    max-width: 450px;
    text-align: center;
  }

  .rds-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scrollText 20s linear infinite;
  }

  @keyframes scrollText {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  .rds-text::before {
    content: "🎙️ ";
    margin-right: 8px;
    font-size: 1.3rem;
  }

  .rds-marquee:hover .rds-text {
    animation-play-state: paused;
  }

/* MAIN PLAYER */
.main-content {
  text-align: center;
  margin: 2rem auto;
}

.player-section audio {
  width: 90%;
  max-width: 500px;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 0.9em;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
  margin: 0 0.5rem;
}

/* OPTIONAL - BOX */
.background-box {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 10px;
}

 /* Aggiungi stile per il banner dei cookie */
    .cookie-banner {
      background-color: rgba(0, 0, 0, 0.8);
      color: white;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 15px;
      text-align: center;
      z-index: 1000;
    }
    .cookie-banner button {
      background-color: #4CAF50;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
    }
    .cookie-banner button:hover {
      background-color: #45a049;
    }

