body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(145deg, #0f2027, #203a43, #2c5364);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  padding: 20px;
}

.container {
  text-align: center;
  max-width: 600px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.live-icon {
  height: 40px;
}

.result-box {
  font-size: 3rem;
  padding: 20px 40px;
  border-radius: 15px;
  background: #111;
  border: 2px solid #555;
  display: inline-block;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.result-box.active {
  background: #00ffd5;
  color: #000;
  font-weight: bold;
  text-shadow: 0 0 10px #fff;
}

input[type="text"] {
  padding: 12px;
  font-size: 1.2rem;
  border-radius: 10px;
  border: none;
  width: 80%;
  max-width: 400px;
  text-align: center;
}

button {
  padding: 10px 25px;
  font-size: 1rem;
  background: #00ffd5;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #00c2a9;
}

.disclaimer {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 40px;
  text-align: justify;
}
