.vote-page { padding-bottom: calc(80px + var(--safe-bottom)); }

.vote-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  color: #fff;
  font-weight: 600;
  position: relative;
}

.vote-header .back {
  position: absolute;
  left: 16px;
  font-size: 14px;
  opacity: 0.9;
}

.vote-body { padding: 0 16px 16px; }

.poll-header {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 20px 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.poll-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
  margin-top: 8px;
}

.poll-desc {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
  line-height: 1.5;
}

.poll-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

.option-list { display: flex; flex-direction: column; gap: 12px; }

.option-item {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  border: 2px solid transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.option-item.selected {
  border-color: var(--accent, var(--primary));
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.25);
}

.option-item.disabled { opacity: 0.85; cursor: default; }

.option-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.option-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 12px;
  color: #fff;
  flex-shrink: 0;
}

.option-item.selected .option-check {
  background: var(--accent, var(--primary));
  border-color: var(--accent, var(--primary));
}

.option-text { font-size: 16px; font-weight: 500; color: #333; }

.bar-track {
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s ease;
}

.option-stats {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.vote-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px calc(12px + var(--safe-bottom));
  background: linear-gradient(transparent, rgba(102, 126, 234, 0.95));
}

.voted-tip {
  text-align: center;
  padding: 20px;
  color: #fff;
  font-size: 14px;
}
