.vote-wrap {
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeUp 0.8s ease 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.vote-intro {
    text-align: center;
    color: var(--secondary-txt);
    font-size: 14px;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

.vote-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: border-color 0.3s, background 0.3s, transform 0.2s;
}

.vote-card:hover {
    border-color: rgba(42, 187, 165, 0.4);
    background: rgba(42, 187, 165, 0.07);
    transform: translateX(4px);
}

.vote-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vote-card-name {
    font-size: 16px;
    font-weight: 900;
    color: var(--Background);
    letter-spacing: 1px;
}

.vote-card-desc {
    font-size: 12px;
    color: var(--secondary-txt);
    letter-spacing: 1px;
}

.vote-card-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    font-family: Title, Arial, sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(42, 187, 165, 0.3);
}

.vote-card-btn:hover {
    background: var(--Sidebar);
    transform: scale(1.05);
}

.vote-rewards {
    max-width: 650px;
    width: 100%;
    background: rgba(42, 187, 165, 0.08);
    border: 1px solid rgba(42, 187, 165, 0.25);
    border-radius: 16px;
    padding: 24px 28px;
    text-align: center;
    animation: fadeUp 0.8s ease 0.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.vote-rewards-title {
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.vote-rewards-text {
    font-size: 14px;
    color: var(--secondary-txt);
    line-height: 1.7;
}
