.poll-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.poll-card.closed { opacity: 0.75; }

.poll-question {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.poll-meta {
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.poll-status-open  { color: var(--green); font-weight: 600; }
.poll-status-closed { color: var(--text2); }

.poll-option {
  margin-bottom: 10px;
}

.poll-option-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 4px;
}

.poll-option-name { font-weight: 500; }
.poll-option-count { color: var(--text2); }

.poll-bar-bg {
  height: 10px;
  background: var(--bg4);
  border-radius: 5px;
  overflow: hidden;
}

.poll-bar {
  height: 100%;
  border-radius: 5px;
  background: var(--gold);
  transition: width 0.4s ease;
  min-width: 2px;
}

.poll-bar.leading { background: var(--green); }

.poll-no-votes {
  font-size: 13px;
  color: var(--text2);
  font-style: italic;
}

.polls-section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 32px auto 12px;
  max-width: 680px;
}
