.cwq-vn-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  padding: 30px;
  background: #ffffff66;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
  font-family: "Poppins", sans-serif;
  min-height: 70vh;
}

.cwq-avatar-section {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 30%;
}

.cwq-avatar {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.cwq-dialogue-area {
  flex: 1;
  background: rgba(0,0,0,0.5);
  border-radius: 10px;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60%;
}

.cwq-question-text {
  font-size: 1.3em;
  margin-bottom: 15px;
  font-weight: 500;
}

.cwq-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cwq-option {
  background: #dddddd66;
  padding: 10px 15px;
  border-radius: 6px;
  transition: background 0.3s;
  cursor: pointer;
}

.cwq-option:hover {
  background: #dddddd;
}

.cwq-controls {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cwq-counter {
  font-size: 0.9em;
  color: #bbb;
}

.cwq-result p, .cwq-result h2{
  color: #fff;
  font-size: 1.3em;
  margin-bottom: 15px;
  font-weight: 500;
}
