    /* Base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Exo 2', sans-serif;
    }
    body {
      background: #0a0a0a;
      color: #fff;
      overflow-x: hidden;
    }
    /* Navbar (stile originale) */
    .nav-menu {
      position: fixed;
      top: 0; /* default: se nessun banner, la navbar resta in cima */
      width: 100%;
      padding: 1.5rem;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(15px);
      border-bottom: 2px solid #ff444455;
      transform: translateY(-100%);
      z-index: 1000;
      transition: top 0.3s;
    }
    .nav-links {
      display: flex;
      justify-content: center;
      gap: 3rem;
    }
    .nav-links a {
      color: #fff;
      text-decoration: none;
      font-size: 1.1rem;
      padding: 0.5rem 1rem;
      background: linear-gradient(45deg, #ff4444, #ff6b6b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: 0.3s;
    }
    .nav-links a:hover {
      text-shadow: 0 0 15px #ff4444;
    }
    /* Banner Evento DJ */
    #serverContainer {
      position: fixed;
      top: 60px; /* su desktop, se DJ è presente, banner si posiziona a 60px dal top */
      left: 0;
      width: 100%;
      padding: 0.75rem 2rem;
      background: linear-gradient(90deg, #ff4444, #ff6b6b);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      z-index: 1100;
    }
    /* Contenitore per il nome DJ (per effetto marquee su mobile) */
    .serverName-container {
      overflow: hidden;
      flex: 1;
    }
    /* Stile per il nome DJ */
    #serverName {
      font-size: 1.5rem;
      font-weight: 700;
      background: linear-gradient(45deg, #fff, #ffe600);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      white-space: nowrap;
    }
    /* Immagine DJ */
    .dj-image {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 3px solid #fff;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
    /* Pulsante Ascoltaci */
    .listen-button {
      background: #fff;
      color: #ff4444;
      border: none;
      padding: 0.7rem 1.5rem;
      border-radius: 30px;
      font-weight: bold;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      text-decoration: none;
    }
    .listen-button:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
    }
    /* Hero Section */
    .hero {
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      background: radial-gradient(circle at 50% 50%, #2a0808, #0a0a0a);
      text-align: center;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.5;
    }
    .logo {
      font-size: 3rem;
      margin-bottom: 1rem;
      position: relative;
      z-index: 2;
    }
    .tagline {
      font-size: 1.2rem;
      margin-bottom: 3rem;
      position: relative;
      z-index: 2;
    }
    /* Effetto Plasma */
    .plasma-effect {
      position: absolute;
      top: 0;
      left: 0;
      width: 200vw;
      height: 200vh;
      background: radial-gradient(circle, #ff4444 0%, transparent 70%);
      opacity: 0.1;
      animation: plasma 20s infinite linear;
      z-index: -1;
    }
    @keyframes plasma {
      0% { transform: rotate(0deg) scale(1); }
      50% { transform: rotate(180deg) scale(1.5); }
      100% { transform: rotate(360deg) scale(1); }
    }
    /* Canvas Fuoco */
    #fireCanvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -2;
      opacity: 0.7;
    }
    /* Sezione Features */
    .features {
      padding: 4rem 2rem;
      background: #111;
      text-align: center;
    }
    .features h2 {
      margin-bottom: 2rem;
      font-size: 2rem;
      color: #ff4444;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    .feature-card {
      background: rgba(255, 68, 68, 0.05);
      border: 1px solid #ff444433;
      padding: 2rem;
      border-radius: 20px;
      backdrop-filter: blur(10px);
      transition: 0.3s;
    }
    .feature-card:hover {
      background: rgba(255, 68, 68, 0.1);
      transform: translateY(-10px);
    }
    /* Sezioni Aggiuntive */
    section {
      padding: 4rem 2rem;
      text-align: center;
    }
    section h2 {
      margin-bottom: 2rem;
      font-size: 2rem;
      color: #ff4444;
    }
    /* FAQ */
    #faq {
      padding: 4rem 2rem;
      background: #111;
      text-align: center;
    }
    #faq h2 {
      margin-bottom: 2rem;
      font-size: 2rem;
      color: #ff4444;
    }
    .faq-container {
      max-width: 800px;
      margin: auto;
      text-align: left;
    }
    .faq-item {
      background: rgba(255, 68, 68, 0.05);
      border: 1px solid #ff444433;
      margin-bottom: 1rem;
      border-radius: 10px;
      overflow: hidden;
      transition: 0.3s;
    }
    .faq-question {
      padding: 1rem;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
      transition: 0.3s;
    }
    .faq-question:hover {
      background: rgba(255, 68, 68, 0.2);
    }
    .faq-answer {
      display: none;
      padding: 1rem;
      border-top: 1px solid #ff444455;
      color: #ccc;
    }
    .faq-item.active .faq-answer {
      display: block;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    /* Footer */
    .advanced-footer {
      background: linear-gradient(45deg, #1a0505, #2a0808);
      padding: 4rem 2rem;
      margin-top: 5rem;
      position: relative;
    }
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
    }
    .footer-section h3 {
      color: #ff4444;
      margin-bottom: 1.5rem;
      font-size: 1.3rem;
    }
    .footer-links a {
      color: #fff;
      text-decoration: none;
      display: block;
      margin: 0.8rem 0;
      transition: 0.3s;
    }
    .footer-links a:hover {
      color: #ff4444;
      transform: translateX(10px);
    }
    .social-icons {
      display: flex;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    .social-icons a {
      font-size: 1.5rem;
      color: #fff;
      transition: 0.3s;
    }
    .social-icons a:hover {
      color: #ff4444;
      transform: scale(1.2);
    }
    .footer-bottom {
      text-align: center;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid #ff444433;
    }

    /* Mobile specific adjustments */
    @media (max-width: 768px) {
        .nav-links {
            flex-direction: column;
            gap: 1rem;
        }
        .hero h1 {
            font-size: 2rem;
        }
        .features-grid {
            grid-template-columns: 1fr;
        }
        .slanted-marquee {
            height: 230px;
        }
        /* In modalità mobile il banner DJ (serverContainer) è un compact banner */
        #serverContainer {
            top: 0; /* banner in cima */
            height: 38px;
            padding: 0.2rem 0.8rem;
            gap: 0.5rem;
            justify-content: space-between;
        }
        .dj-image {
            width: 20px;
            height: 20px;
            border-width: 1px;
            flex-shrink: 0;
        }
        .serverName-container {
            flex: 1;
            min-width: 0;
            margin: 0 0.3rem;
            overflow: hidden;
        }
        #serverName {
            font-size: 0.7rem;
            /* Se il DJ è presente, anima il nome con marquee */
            animation: compactMarquee 10s linear infinite;
            padding-left: 100%;
            display: inline-block;
            line-height: 1.2;
        }
        .listen-button {
            padding: 0.25rem 0.7rem;
            font-size: 0.65rem;
            border-radius: 12px;
            flex-shrink: 0;
            min-width: max-content;
        }
        /* La navbar: se non c'è banner, la navbar rimane in cima; 
           se c'è banner, la navbar verrà spostata in basso tramite JS */
    }

    @keyframes compactMarquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }
/* Sezione App Download */
.app-download {
  padding: 4rem 2rem;
  background: #111;
  text-align: center;
}

.app-download .section-title {
  font-size: 2rem;
  color: #ff4444;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.app-download .section-description {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Tasto Scarica Ora */
.cta-scarica {
  display: inline-block;
  background: #ff4444;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  margin-top: 1rem;
    max-width: 400px;             /* Larghezza massima impostata a 400px */
  text-align: center;
}

.cta-scarica:hover {
  background: #ff6b6b;
  transform: scale(1.05);
}

.slanted-marquee {
  position: relative;
  margin: 5rem 0;
  transform: rotate(-3deg);
  overflow: hidden;
  height: 290px;
  // background: linear-gradient(45deg, #ff444422, #ff6b6b22);
}

/* Imposta il container come flex e applica l'animazione continua */
.marquee-content {
  display: flex;
  position: absolute;
  white-space: nowrap;
  /* Rimuovo gli spazi interni, così le immagini scorrono una accanto all'altra */
  animation: marquee 20s linear infinite;
}

/* Rimuovo il margin per non creare spazi tra le immagini */
.marquee-item {
  width: 150px;
  height: 240px;
  margin: 0; /* Eliminato per non avere spazi tra le immagini */
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  transform: rotate(3deg);
  box-shadow: 0 10px 20px rgba(255, 68, 68, 0.3);
  transition: 0.3s;
}
.marquee-item:hover {
  transform: rotate(3deg) scale(1.05);
}

/* L'animazione sposta il blocco di immagini di una lunghezza pari alla prima serie (50% del totale) */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
