body {
  background: #0f1115;
  color: #f0f0f0;
  font-family: Inter, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.crowd-captcha {
  background: #181b20;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  width: 340px;
  text-align: center;
}

.crowd-captcha h2 {
  margin-top: 0;
  font-size: 22px;
  color: #fff;
}

.crowd-captcha p {
  font-size: 15px;
  color: #d1d1d1;
  margin-bottom: 16px;
}

.crowd-captcha img {
  width: 85%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.crowd-captcha input[type="number"] {
  width: 80%;
  padding: 10px 12px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #444;
  background: #22252b;
  color: #fff;
  outline: none;
}

.crowd-captcha input[type="number"]:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 4px rgba(74, 144, 226, 0.5);
}

.crowd-captcha button {
  margin-top: 14px;
  width: 84%;
  padding: 10px;
  background: #2d7cff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.crowd-captcha button:hover {
  background: #1a5fe0;
}

.result {
  margin-top: 16px;
  font-size: 14px;
  color: #ccc;
}
