.wfgq-quiz {
  max-width: 640px;
  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. */
.wfgq-quiz,
.wfgq-quiz *,
.wfgq-quiz *::before,
.wfgq-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;
  box-sizing: border-box;
}

.wfgq-card {
  background: #6e727a;
  border-radius: 10px;
  padding: 36px 28px;
}

.wfgq-fade-in {
  animation: wfgq-fade 0.35s ease !important;
}

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

.wfgq-back {
  background: none;
  border: none;
  color: #e8e8e8 !important;
  font-size: 14px;
  cursor: pointer;
  padding: 0 0 20px 0;
  display: block;
}

.wfgq-back:hover {
  color: #ffffff !important;
}

.wfgq-title {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em !important;
  margin: 0 0 18px 0;
  text-align: left;
  line-height: 1.3;
}

.wfgq-title-big {
  font-size: 24px;
  text-transform: none;
  text-align: center;
}

.wfgq-subtitle {
  color: #f0f0f0 !important;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 28px 0;
  text-align: center;
}

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

/* Vertical stack of full-width white pill buttons, matching the screenshot. */
.wfgq-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wfgq-option {
  width: 100%;
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 8px;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.1s ease, background 0.15s ease;
}

.wfgq-option:hover,
.wfgq-option:focus {
  background: #2c5a8c;
  border-color: #2c5a8c;
  transform: translateY(-1px);
}

.wfgq-option:hover .wfgq-option-label,
.wfgq-option:focus .wfgq-option-label {
  color: #ffffff !important;
}

.wfgq-option:active {
  background: #21456b;
  border-color: #21456b;
}

.wfgq-option-label {
  color: #2b2b2b !important;
  font-weight: 500;
  font-size: 16px;
}

.wfgq-text-form,
.wfgq-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wfgq-textarea,
.wfgq-form input {
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 8px;
  padding: 16px 18px;
  color: #2b2b2b !important;
  font-size: 15px;
  font-family: inherit;
}

.wfgq-textarea {
  min-height: 100px;
  resize: vertical;
}

.wfgq-textarea:focus,
.wfgq-form input:focus {
  outline: none;
  border-color: #f0a500;
}

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

.wfgq-form-msg {
  color: #ffd6d6 !important;
  font-size: 13px;
  min-height: 16px;
}

.wfgq-submit {
  background: #f0a500;
  color: #2b2b2b !important;
  border: none;
  border-radius: 8px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
}

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

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

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

.wfgq-thankyou p {
  color: #f0f0f0 !important;
  font-size: 16px;
}

@media (max-width: 600px) {
  .wfgq-card {
    padding: 26px 18px;
  }
  .wfgq-title-big {
    font-size: 20px;
  }
}
