    body {
      font-family: 'Arial', sans-serif;
      text-align: center;
      margin: 20px;
      background-color: #f9f9f9;
      padding: 20px;
    }

    h1 {
      font-size: 3rem;
      color: #333;
      margin-bottom: 10px;
    }

    #timer {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #d35400;
    }

    #main-word {
      font-size: 2.5rem;
      font-weight: bold;
      margin: 20px 0;
      color: #2c3e50;
    }
    
    #title {
      font-size: 1.5rem;
      font-weight: bold;
      margin: 20px 0;
      color: #2c3e50;
    }

    #forbidden-words {
      list-style: none;
      padding: 0;
      margin: 20px auto;
      max-width: 400px;
    }

    #forbidden-words li {
      background: #e74c3c;
      color: white;
      margin: 8px;
      padding: 14px;
      font-size: 1.2rem;
      border-radius: 8px;
    }

    .buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 25px;
    }

    button {
      padding: 14px 28px;
      font-size: 1.3rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      color: white;
      transition: 0.2s;
    }

    #correctBtn {
      background-color: #27ae60;
    }

    #correctBtn:hover {
      background-color: #219150;
    }

    #passBtn {
      background-color: #c0392b;
    }

    #passBtn:hover {
      background-color: #a93226;
    }

    .scoreboard {
      margin-top: 30px;
      font-size: 1.5rem;
    }

    #modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    #modal-content {
      background: white;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      width: 80%;
      max-width: 400px;
    }

    #modal-content h2 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    #modal-content p {
      font-size: 1.3rem;
      margin: 10px 0;
    }

    #restartBtn {
      background-color: #2980b9;
    }

    #restartBtn:hover {
      background-color: #1f6690;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 2.2rem;
      }

      #main-word {
        font-size: 2rem;
      }

      #forbidden-words li {
        font-size: 1rem;
        padding: 10px;
      }

      button {
        font-size: 1.1rem;
        padding: 10px 20px;
      }

      .scoreboard {
        font-size: 1.3rem;
      }
    }