.age-gate-content img {
width: 100%;
max-width: 150px !important;
}

#twenty-one-plus-age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    color: white;
    font-family: 'Inter', sans-serif; /* Using Inter as a common clean font */
}

.age-gate-content {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
}

.age-gate-title {
    font-size: 3em;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.age-gate-message {
    font-size: 1.2em;
    margin-bottom: 30px;
}

#age-gate-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#birth-year {
    padding: 10px 15px;
    font-size: 1.1em;
    border: 1px solid white;
    background-color: black;
    color: white;
    border-radius: 0px !important;
    width: 100%;
    text-align: center;
}

#birth-year::placeholder {
    color: #aaa;
}

#birth-year::-webkit-outer-spin-button,
#birth-year::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#birth-year[type=number] {
    -moz-appearance: textfield;
}

#verify-button {
width: 100%;
    background-color: transparent; /* Changed to transparent */
    color: white; /* Text color is white */
    border: 1px solid white; /* Border is white */
    padding: 12px 30px;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 0px !important;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Added border-color to transition */
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 1px; /* Added for a slightly wider look like the example */
}

#verify-button:hover {
background-color: white;
color: black;
}

@media screen and (min-width: 767px) {
    #birth-year {
        max-width: 130px !important;
    }
        #verify-button {
        max-width: 200px !important;
    }
}

.age-gate-error-message {
    color: white;
    margin-top: 20px;
    font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .age-gate-title {
        font-size: 2.5em;
    }
    .age-gate-message {
        font-size: 1em;
    }
}