html {
    scroll-behavior: smooth;
}

/* Container for the mobile-screen look */
.voting-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background-color: #f0f0f0;
}

.mobile-container {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    border: 2px solid #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-height: 80vh;
}

.prominent-header {
    background: #000;
    color: #fff;
    padding: 25px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
}

.form-control-prominent {
    border: 2px solid #000 !important;
    border-radius: 0;
    padding: 15px;
    font-size: 18px;
    margin-bottom: 15px;
}

.captcha-box {
    border: 2px dashed #000;
    padding: 20px;
    background: #fafafa;
    margin-bottom: 20px;
}

.btn-vote-large {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 18px;
    font-size: 24px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.vote-counter-header {
    background: linear-gradient(90deg, #8a4418 0%, #b3682c 50%, #c57c39 100%);
    box-shadow: 0 4px 0 rgba(0,0,0,0.35), inset 0 -2px 0 rgba(0,0,0,0.2);
    color: #fff;
    width: 100%;
}

.vote-header-inner .counter-label {
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.odometer-container .digit-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    box-shadow: 0 6px 12px rgba(0,0,0,0.35), inset 0 6px 12px rgba(255,255,255,0.06), inset 0 -4px 8px rgba(0,0,0,0.5);
    border: 1px solid rgba(0,0,0,0.6);
}

.odometer-container .digit-number {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #ffdf4a;
    text-shadow: 0 0 6px rgba(255,220,60,0.9), 0 0 12px rgba(255,200,40,0.5), 0 2px 0 rgba(0,0,0,0.6);
    animation: dialPop 180ms ease-out;
}

@keyframes dialPop {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10%);
    }

    100% {
        transform: translateY(0);
    }
}
