.vote-list { margin-top: 2rem; }

.vote-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-secondary);
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vote-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.vote-card-logo {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  margin: 0 auto 0.75rem;
  display: block;
  padding: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
}

.vote-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.vote-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

.vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.vote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.vote-btn-blue {
  background: var(--accent);
  color: var(--text-on-accent);
  box-shadow: 0 4px 16px rgba(0,242,255,0.25);
}

.vote-btn-blue:hover {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,242,255,0.35);
}

.vote-why {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-secondary);
  text-align: left;
}

.vote-why h3 {
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: 1rem;
  text-align: center;
}

.vote-why-grid {
  display: grid;
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .vote-why-grid { grid-template-columns: repeat(3, 1fr); }
}

.vote-why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.375rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.vote-why-item:hover {
  background: var(--overlay);
}

.vote-why-item .icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,242,255,0.1);
}

.vote-why-item .icon-wrap svg {
  color: var(--accent-dark);
}

.dark .vote-why-item .icon-wrap svg {
  color: var(--accent);
}

.vote-why-item strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.vote-why-item span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
}