<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  font-family: "Segoe UI", sans-serif;
  background: #fef6ff;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 80px auto;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 30px;
}

button {
  background-color: #8e44ad;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #732d91;
}

.result-box {
  margin-top: 30px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #2c3e50;
  min-height: 60px;
}

.disclaimer {
  font-size: 0.85rem;
  margin-top: 40px;
  color: #999;
}
</pre></body></html>