  body {
      background: linear-gradient(to bottom, #0f172a, #1e293b);
      color: white;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow: hidden;
       height: 90vh; 
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 30px;
    }

    h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #38bdf8;
    }

    #game-area {
      position: relative;
      width: 90%;
      max-width: 800px;
      height: 70vh;
      border: 2px solid #38bdf8;
      border-radius: 15px;
      overflow: hidden;
      background-color: #0f172a;
    }

    .word {
      position: absolute;
      top: -50px;
      font-size: 24px;
      font-weight: bold;
      color: #facc15;
      animation: fall 6s linear forwards;
    }

    @keyframes fall {
      to {
        transform: translateY(100vh);
        opacity: 0;
      }
    }

    #input-area {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    input[type="text"] {
      padding: 10px 20px;
      font-size: 18px;
      border-radius: 8px;
      border: none;
      outline: none;
      background-color: #1e293b;
      color: white;
      width: 300px;
      text-align: center;
    }

    #restart-btn {
      padding: 10px 20px;
      font-size: 16px;
      background-color: #38bdf8;
      color: #0f172a;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    #restart-btn:hover {
      background-color: #0ea5e9;
    } 
    .stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 10px 0;
  color: white;
  font-size: 18px;
}


    