body,
html {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'SF Pro Display', Arial, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #222;
}

.voting-engine {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.centered-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.centered-image img {
    max-width: 90vw;
    max-height: 60vh;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(60, 60, 60, 0.12), 0 1.5px 6px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.3s cubic-bezier(.4, 0, .2, 1);
}

.voting-buttons {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2vw 3rem 2vw;
    position: absolute;
    bottom: 0;
    left: 0;
}

.vote-btn {
    min-width: 120px;
    min-height: 56px;
    font-size: 1.3rem;
    border-radius: 2.5rem;
    border: none;
    outline: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: background 0.3s, color 0.2s, transform 0.12s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
    user-select: none;
}

.smash-btn {
    background: #222;
    color: #fff;
    margin-left: 1vw;
}

.pass-btn {
    background: #fff;
    color: #e53935;
    border: 2px solid #e53935;
    margin-right: 1vw;
}

.vote-btn:active {
    transform: scale(0.96);
}