.vote-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.vote-section {
    padding: 40px 0 100px;
}

.vote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.vote-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.vote-card:hover {
    border-color: var(--neon-blue, #00ccff);
    transform: translateY(-4px);
}

.vote-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.vote-card-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 92px;
    padding: 0.75rem 1rem;
    margin: 0 auto 1.1rem;
    background: #f3f5f7;
    border-radius: 12px;
}

.vote-card-logo {
    max-height: 72px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.vote-card-logo--pixel {
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.vote-card-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white, #fff);
}

.vote-card-desc {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.vote-card-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    background: var(--gradient-primary, linear-gradient(135deg, #003399, #0066ff, #00ccff));
    color: #fff;
    transition: opacity 0.2s;
}

.vote-card-btn:hover {
    opacity: 0.9;
}

.vote-note {
    text-align: center;
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.vote-empty,
.vote-error {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto;
}
