.wea-quiz-wrapper {
  background-color: #181818;
  min-height: 100vh;
  padding: 60px 0;
  color: #fefefe;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wea-quiz-container-wrapper {
  grid-template-columns: 1fr !important;
}

.wea-quiz-title {
  color: #fefefe !important;
  margin-bottom: 40px;
}

.wea-quiz-question-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.wea-quiz-q-number {
  background: #fefefe;
  color: #181818;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.wea-quiz-q-text {
  margin: 0;
  word-break: break-word;
  color: #fefefe !important;
}

.wea-quiz-interaction-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.wea-quiz-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.wea-quiz-btn:hover,
.wea-quiz-btn:focus {
  transform: scale(1.05);
  outline: 2px solid #fefefe;
}

.wea-quiz-btn svg {
  width: 30px;
  height: 30px;
}

.wea-quiz-btn-no {
  background-color: #ff2d55;
}

.wea-quiz-btn-yes {
  background-color: #00c853;
}

.wea-quiz-image-wrapper {
  width: 100%;
  max-width: 650px;
  height: auto;
  overflow: hidden;
  position: relative;
  transform: skewX(-9deg);
}

.wea-quiz-image-wrapper img {
  width: calc(100% + 80px);
  height: 100% !important;
  margin-left: -40px;
  object-fit: cover;
  transform: skewX(9deg);
  display: block;
  max-width: unset !important;
}

.wea-quiz-hidden {
  display: none;
}

.wea-quiz-active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.wea-quiz-result-content h3 {
  color: #fefefe !important;
  margin-bottom: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .wea-quiz-wrapper {
    min-height: auto !important;
  }

  .wea-quiz-interaction-area {
    flex-direction: column;
  }

  .wea-quiz-image-wrapper {
    order: 3;
    margin-bottom: 20px;
    transform: none;
  }

  .wea-quiz-image-wrapper img {
    transform: none;
    margin: 0;
    width: 100%;
  }

  .wea-quiz-btn-no,
  .wea-quiz-btn-yes {
    margin-left: 4px;
    margin-right: 4px;
  }

  .wea-quiz-btn-no {
    order: 1;
    margin-right: auto;
  }

  .wea-quiz-btn-yes {
    order: 2;
    margin-left: auto;
  }

  .wea-quiz-interaction-area {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .wea-quiz-q-text {
    font-size: 24px !important;
    text-align: left;
  }

  .wea-quiz-question-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
