.wbq-quiz {
  max-width: 800px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wbq-card {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 40px 32px;
  box-sizing: border-box;
}

.wbq-fade-in {
  animation: wbq-fade 0.35s ease;
}

@keyframes wbq-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wbq-back {
  background: none;
  border: none;
  color: #cccccc;
  font-size: 14px;
  cursor: pointer;
  padding: 0 0 20px 0;
  display: block;
}

.wbq-back:hover {
  color: #f0a500;
}

.wbq-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 28px 0;
  text-align: center;
  line-height: 1.3;
}

.wbq-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.wbq-option {
  flex: 1 1 200px;
  max-width: 260px;
  background: #1a1a1a;
  border: 2px solid #f0a500;
  border-radius: 6px;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.wbq-option:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

.wbq-option:active {
  background: #f0a500;
}

.wbq-option:active .wbq-option-label,
.wbq-option:active .wbq-option-sub {
  color: #1a1a1a;
}

.wbq-option-label {
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
}

.wbq-option-sub {
  color: #aaaaaa;
  font-size: 13px;
}

.wbq-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 400px;
  margin: 0 auto;
}

.wbq-form label {
  color: #ffffff;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wbq-form input {
  background: #2a2a2a;
  border: 1px solid #444444;
  border-radius: 4px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 15px;
}

.wbq-form input:focus {
  outline: none;
  border-color: #f0a500;
}

.wbq-form-msg {
  color: #ff6b6b;
  font-size: 13px;
  min-height: 16px;
}

.wbq-submit {
  background: #f0a500;
  color: #1a1a1a;
  border: none;
  border-radius: 4px;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wbq-submit:hover {
  background: #ffb733;
}

.wbq-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.wbq-thankyou {
  text-align: center;
}

.wbq-thankyou p {
  color: #cccccc;
  font-size: 16px;
}

@media (max-width: 600px) {
  .wbq-card {
    padding: 28px 18px;
  }
  .wbq-title {
    font-size: 22px;
  }
  .wbq-option {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
