  /* Reset base */
    * {
      box-sizing: border-box; /* Include padding e border nei calcoli delle dimensioni */
    }

    body {
      margin: 0;
      padding: 0;
      height: 100vh; /* Altezza dell’intera finestra */
      font-family: "Segoe UI", sans-serif;
      background-image:  url("../img/chusky.jpg"); /* Immagine di sfondo */
      background-size: cover; /* Copre tutta l’area */
      background-position: center;
      background-repeat: no-repeat;

      display: flex;
      flex-direction: column; /* Organizza header → contenuto → footer in colonna */
    }

    /* Stile del blocco header e footer */
    header, footer {
      background-color: rgba(0, 0, 0, 0.6); /* Sfondo nero trasparente */
      color: white;
      text-align: center;
      padding: 1rem;
      text-shadow: 0 0 6px #000;
    }

    header h1 {
      margin: 0;
      font-size: 2rem;
    }

    /* Contenitore centrale */
    .container {
      flex-grow: 1; /* Occupa tutto lo spazio tra header e footer */
      display: flex;
      justify-content: center; /* Centra orizzontalmente */
      align-items: center;     /* Centra verticalmente */
      padding: 2rem;
    }

    /* Box centrale trasparente */
    .content-box {
      background-color: rgba(0, 0, 0, 0.6);
      padding: 2rem 3rem;
      border-radius: 16px;
      text-align: center;
      max-width: 700px;
      color: white;
      text-shadow: 0 0 6px #000;
    }

    .content-box h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .content-box p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }

    /* Pulsante stile “Inizia il viaggio” */
    .button {
      background-color: #ffdd57;
      color: black;
      padding: 0.8rem 1.5rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .button:hover {
      background-color: #ffd000;
    }

    /* Link nel footer */
    footer a {
      color: #ffdd57;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    /* ANIMAZIONE GATTO CHE SI MUOVE IN CERCHIO */
    .cat-emoji {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 2.5rem;
      animation: rotateCat 6s linear infinite;
      pointer-events: none; /* Così non interferisce con clic */
    }

    @keyframes rotateCat {
      0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(120px) rotate(0deg);
      }
      100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(120px) rotate(-360deg);
      }
    }