/* Fonts and body */
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

/* Main container card */
.container {
  background: rgba(0,0,0,0.6);
  padding: 2rem 3rem;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Headings and text */
h1 {
  margin-bottom: 1rem;
  font-weight: 600;
}
p {
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Input and buttons */
input {
  padding: 0.5rem;
  border-radius: 6px;
  border: none;
  margin-right: 0.5rem;
}

button {
  background-color: #ffb347;
  background-image: linear-gradient(315deg, #ffb347 0%, #ffcc33 74%);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Stats block */
.stats {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 1rem;
}

/* Links and lists */
a {
  color: #ffcc33;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
li {
  padding: 0.5rem 0;
}

/* Optional: style messages for consent/log */
.message {
  font-size: 1rem;
  margin-top: 1rem;
}
