.mge-poll {
  max-width: 520px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 28px 24px 24px;
  background: linear-gradient(160deg, #7a0e6e 0%, #7c3fb0 45%, #4338ca 100%);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-shadow: 0 12px 32px rgba(30, 10, 60, 0.35);
}

.mge-poll__question {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 18px;
  line-height: 1.35;
}

.mge-poll__option {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
  line-height: 1.35;
  transition: background 0.15s ease;
}

.mge-poll__option:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.24);
}

.mge-poll__option:disabled {
  cursor: default;
}

.mge-poll__option-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: rgba(255, 255, 255, 0.18);
  transition: width 0.6s ease;
  z-index: 0;
}

.mge-poll__option-label,
.mge-poll__option-stats {
  position: relative;
  z-index: 1;
}

.mge-poll__option-label {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.mge-poll__option-stats {
  flex-shrink: 0;
}

.mge-poll__option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.mge-poll__option-stats {
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

.mge-poll__option--voted {
  outline: 2px solid rgba(255, 255, 255, 0.7);
}

.mge-poll__footer {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 8px;
}

.mge-poll__thanks {
  text-align: center;
  font-weight: 700;
  margin-top: 12px;
}

.mge-poll__error {
  text-align: center;
  font-size: 0.85rem;
  color: #ffd6d6;
  margin-top: 10px;
}
