/* ===== TEXT ===== */
h1, h5, div {
    text-align: center;
}
h1 { font-size: 150%; }
/* ===== TITRE COULEUR ===== */
.title_site { color: #106EBE; }
/* ===== VOTES ===== */
.vote-section {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.vote-card {
    width: 340px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.4),
        0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vote-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.18),
        0 6px 20px rgba(0,0,0,0.12);
}
.vote-icon {
    font-size: 42px;
    margin-bottom: 20px;
}
.vote-card h3 {
    font-size: 26px;
    margin: 0;
}
.vote-card p {
    color: #b6b6c2;
    margin: 10px 0 30px;
}
/* ===== BOUTON ===== */
.vote-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7b6cff, #ff6ec7);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vote-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(255,110,199,0.5);
}
