@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap');

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, #fff 0%, #e53935 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

header {
    background: #111;
    color: #fff;
    padding: 40px 0 20px 0;
    text-align: center;
    box-shadow: 0 4px 16px rgba(229,57,53,0.08);
    animation: fadeInDown 1s;
}

h1 {
    margin: 0;
    font-size: 3em;
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: 2px;
    text-shadow: 2px 4px 12px rgba(229,57,53,0.15);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(229,57,53,0.15);
    padding: 40px 32px 32px 32px;
    max-width: 480px;
    margin: 32px 0;
    text-align: center;
    animation: fadeInUp 1.2s;
    border: 2px solid #e53935;
}

p {
    margin: 20px 0 32px 0;
    font-size: 1.25em;
    color: #111;
    font-weight: 500;
}

.vote-button, a.vote-button {
    display: inline-block;
    background: linear-gradient(90deg, #e53935 0%, #b71c1c 100%);
    color: #fff;
    border: none;
    padding: 18px 48px;
    font-size: 1.3em;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(229,57,53,0.18);
    text-decoration: none;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    animation: popIn 1.5s;
}

.vote-button:hover, a.vote-button:hover {
    background: linear-gradient(90deg, #b71c1c 0%, #e53935 100%);
    transform: scale(1.07);
    box-shadow: 0 8px 32px rgba(229,57,53,0.25);
}

.responsive-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto 24px auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(229,57,53,0.10);
}

@media (max-width: 600px) {
    .card {
        padding: 24px 8px 24px 8px;
        max-width: 95vw;
    }
    h1 {
        font-size: 2em;
    }
    .vote-button, a.vote-button {
        padding: 14px 24px;
        font-size: 1em;
    }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px);}
    to { opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.7);}
    80% { opacity: 1; transform: scale(1.05);}
    100% { opacity: 1; transform: scale(1);}
}