.poll-hero {
    padding: 2rem 0 1rem;
}
.poll-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
    height: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
}
.poll-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    color: inherit;
}
.poll-option-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-glass);
    cursor: pointer;
    transition: border-color 0.15s;
}
.poll-option-row:hover {
    border-color: var(--primary);
}
.poll-option-row input {
    flex-shrink: 0;
}
.poll-result-row {
    margin-bottom: 1rem;
}
.poll-result-bar {
    height: 8px;
    border-radius: 4px;
    background: rgba(99, 102, 241, 0.15);
    overflow: hidden;
    margin-top: 0.35rem;
}
.poll-result-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.5s ease;
}
.poll-result-fill.user-choice {
    background: linear-gradient(90deg, #10b981, #06b6d4);
}
.poll-guest-lock {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-color);
    background: rgba(99, 102, 241, 0.06);
}
.poll-share-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}
.poll-share-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-right: 0.25rem;
}
.poll-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-glass);
    color: var(--text-primary);
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
}
.poll-share-btn:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}
.poll-share-wa:hover { border-color: #25d366; color: #25d366; }
.poll-share-li:hover { border-color: #0a66c2; color: #0a66c2; }
.poll-share-fb:hover { border-color: #1877f2; color: #1877f2; }
.poll-share-ig:hover { border-color: #e4405f; color: #e4405f; }
