/* === ABOUT PAGE FIX === */
#ventCanvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

.about-page {
  position: relative; z-index: 10;
  min-height: 85vh; /* Lascia spazio sotto */
  display: flex; justify-content: center; align-items: center;
  padding: 1rem; box-sizing: border-box;
}

.about-content {
  background: linear-gradient(to bottom right, rgba(15, 20, 22, 0.9), rgba(10, 15, 18, 0.8));
  backdrop-filter: blur(10px);
  border-radius: 18px;
  width: 100%; max-width: 700px;
  padding: 3rem 2rem;
  text-align: center; color: #e6edf3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.about-content h1 {
  color: #00d400; margin: 0 0 1.5rem;
  font-size: 2rem;
}

.about-content p {
  line-height: 1.7; margin-bottom: 1rem; font-size: 1.05rem;
}

/* === MOBILE SPECIFIC FIX === */
@media (max-width: 600px) {
  .about-page {
    /* Sposta il box in alto per lasciare libero il vulcano sotto */
    align-items: flex-end; 
    padding-bottom: 20vh; /* Spazio vuoto sotto */
  }

  .about-content {
    padding: 1.2rem 1rem; /* Padding minimo */
    background: rgba(15, 20, 22, 0.95); /* Più scuro */
    border: 1px solid rgba(0, 212, 0, 0.15); /* Bordo verde sottile */
  }

  .about-content h1 {
    font-size: 1.3rem; /* Titolo piccolo */
    margin-bottom: 0.8rem;
    text-transform: uppercase; letter-spacing: 1px;
  }

  .about-content p {
    font-size: 0.85rem; /* Testo compatto */
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }
}