/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #f8f9fa, #e0e7ff);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
header {
  width: 100%;
  padding: 25px 0;
  background: #6c63ff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-transform: uppercase;
  text-align: center;
  color: white;
  font-size: 2rem;
  letter-spacing: 3px;
}

/* Section */
section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Game Area */
.gameArea {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  transition: all 0.3s ease;
}

.msg {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

input {
  width: 80%;
  padding: 12px 15px;
  border: 2px solid #6c63ff;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

input:focus {
  border-color: #4e47d0;
}

.hidden {
  display: none;
}

button {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  font-size: 1rem;
  background: #6c63ff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background: #4e47d0;
  transform: scale(1.05);
}
