:root {
    --bg-dark: #1a234a;
    --card-bg: #232d5f;
    --accent-green: #28a745;
    --text-main: #ffffff;
    --text-muted: #a0a0c0;
    --border-color: #313d75;
}

.vote-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-main);
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header de Pontos */
.vote-header {
    background: linear-gradient(145deg, rgba(20,20,25,0.9), rgba(10,10,15,0.9));
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.points-badge {
    background: #f39c12;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.points-info span { color: var(--text-muted); font-size: 0.9rem; }
.points-info h2 { margin: 0; font-size: 2rem; }

/* Grid e Cards */
.vote-section-title h3 { margin-bottom: 5px; }
.vote-section-title p { color: var(--text-muted); margin-bottom: 20px; }

.vote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.vote-card {
    background: linear-gradient(145deg, rgba(20,20,25,0.9), rgba(10,10,15,0.9));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    transition: transform 0.2s;
}

.vote-card:hover { transform: translateY(-5px); }

.card-banner {
    background: linear-gradient(145deg, rgba(20,20,25,0.9), rgba(10,10,15,0.9));
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-badges {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.reward { background: rgba(40, 167, 69, 0.1); color: #4ade80; border: 1px solid #28a745; }
.cooldown { background: rgba(255, 255, 255, 0.05); color: var(--text-muted); }

.btn-vote {
    width: 100%;
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-vote:hover { background: #218838; }

/* Footer info */
.vote-footer {
    background: linear-gradient(145deg, rgba(20,20,25,0.9), rgba(10,10,15,0.9));
    border: 1px dashed var(--border-color);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
}

.info-icon { color: #3498db; font-size: 1.2rem; }
.info-text h5 { margin: 0 0 10px 0; }
.info-text ul { padding-left: 20px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }