#ageBar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    padding: 12px 18px;

    background: rgba(10, 10, 12, 0.97);
    border-top: 1px solid rgba(255,255,255,.14);

    color: #fff;
    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

#ageBar button {
    border: 0;
    border-radius: 7px;
    padding: 9px 15px;

    background: #fff;
    color: #111;

    font: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}

#ageBar button:hover {
    opacity: .88;
}

@media (max-width: 640px) {
    #ageBar {
        gap: 10px;
        padding: 10px 12px;
        font-size: 12px;
    }

    #ageBar button {
        padding: 8px 10px;
        font-size: 11px;
    }
}
