/* -- RESET DI BASE -- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* -- STILE GENERALE -- */
  body {
    font-family: Arial, sans-serif;
    background: #ffe5e5; /* tono romantico */
    color: #333;
  }
  
  .hidden {
    display: none;
  }
  
  #app {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* -- SCHERMATA DI BENVENUTO -- */
  #welcome-screen {
    text-align: center;
    margin-top: 50px;
  }
  
  #welcome-screen h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  #welcome-screen p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  #language-select-container {
    margin-bottom: 20px;
  }
  
  #start-button {
    padding: 10px 20px;
    background: #ff7b7b;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  #start-button:hover {
    background: #e06666;
  }
  
  /* -- SEZIONE QUIZ -- */
  #quiz-section header {
    text-align: center;
    padding: 20px;
    background: #ff7b7b;
    color: white;
    margin-bottom: 20px;
    border-radius: 8px;
  }
  
  #main-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  
  /* -- CONTATORE LATERALE -- */
  #counter-aside {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  #counter-aside p {
    margin: 8px 0;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  /* -- AREA DOMANDE -- */
  #question-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #question-card {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 600px;
    text-align: center;
    min-height: 100px;
    margin-bottom: 20px;
  }
  
  #controls {
    display: flex;
    gap: 10px;
  }
  
  #controls button {
    padding: 10px 20px;
    background: #ff7b7b;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  #controls button:hover {
    background: #e06666;
  }
  
  #lives-container {
    margin-top: 20px;
  }
  
  .heart {
    font-size: 1.5rem;
    margin: 0 5px;
    transition: opacity 0.3s;
  }
  