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

/* Hard reset: stops the theme's global text effects (glitch/gradient/
   text-shadow/letter animations) from bleeding into the quiz text. */
.wohr-quiz,
.wohr-quiz *,
.wohr-quiz *::before,
.wohr-quiz *::after {
  text-shadow: none !important;
  -webkit-text-fill-color: currentColor !important;
  background-image: none !important;
  filter: none !important;
  letter-spacing: normal !important;
  -webkit-text-stroke: 0 !important;
  animation: none !important;
}

/* Re-enable only the intentional fade-in on the card itself. */
.wohr-quiz .wohr-fade-in {
  animation: wohr-fade 0.35s ease !important;
}

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

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

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

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

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

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

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

.wohr-option {
  flex: 0 0 auto;
  width: auto;
  min-width: 160px;
  max-width: 100%;
  background: #1a1a1a;
  border: 2px solid #f0a500;
  border-radius: 6px;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap !important;
}

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

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

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

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

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

.wohr-intro {
  text-align: center;
}

.wohr-title-big {
  font-size: 34px;
}

.wohr-subtitle {
  color: #dddddd !important;
  font-size: 16px;
  margin: 0 0 8px 0;
}

.wohr-note {
  color: #f0a500 !important;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 28px 0;
}

.wohr-text-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
  margin: 0 auto;
}

.wohr-text-input {
  background: #2a2a2a;
  border: 2px solid #f0a500;
  border-radius: 6px;
  padding: 14px 16px;
  color: #ffffff !important;
  font-size: 16px;
}

.wohr-text-input:focus {
  outline: none;
  border-color: #ffb733;
}

.wohr-consent {
  display: flex;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
}

.wohr-consent input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.wohr-consent span {
  color: #aaaaaa !important;
  font-size: 12px;
  line-height: 1.5;
}

.wohr-nospam {
  color: #777777 !important;
  font-size: 12px;
  text-align: center;
  margin: 8px 0 0 0;
}

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

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

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

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

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

.wohr-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;
}

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

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

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

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

@media (max-width: 600px) {
  .wohr-card {
    padding: 28px 18px;
  }
  .wohr-title {
    font-size: 22px;
  }
  .wohr-option {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    white-space: normal !important;
  }
}
