.guessForm {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.guessForm input[type="text"] {
  outline: none;
  padding: 12px 16px;
  font-size: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  width: 300px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.guessForm input[type="text"]:focus {
  border-color: #fff800;
  box-shadow: 0 0 20px rgba(255, 248, 0, 0.3);
}

.guessForm input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.guessForm input[type="text"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.guessForm .guessButton {
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 24px;
  cursor: pointer;
  background: linear-gradient(135deg, #fff800 0%, #d3cd01 100%);
  color: #440041;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 248, 0, 0.3);
}

.guessForm .guessButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 248, 0, 0.4);
}

.button {
  margin: 20px 0;
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 30px;
  cursor: pointer;
  background: linear-gradient(135deg, #fff800 0%, #d3cd01 100%);
  color: #440041;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 248, 0, 0.3);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 248, 0, 0.4);
}

.button:active {
  animation: pulse 0.2s ease;
}

.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
