/********************
 Age Gate — Polished
********************/

/* Wrapper — fullscreen center + breathing room */
.age-gate__wrapper {
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
}

/* Inner container with gold inset border */
.age-gate-inner {
    background: #00315e;
    border: 5px inset #d3a94a;
    border-radius: 6px;
    padding: 12px;
    max-width: 430px;
    width: 90%;
    text-align: center;
}

/* Logo — centered + proper spacing */
.age-gate__logo {
    max-width: 70%;
    height: auto;
    margin: 20px auto;
    padding-top: 5%;
    display: block;
}

/* Headings */
.age-gate__heading,
.age-gate__subheading {
    font-size: 1.15rem;
    line-height: 1.2;
    margin: 8px 0 16px;
    color: #fff;
}

/* Fields layout */
.age-gate__fields {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 2%;
}

.age-gate__fields label {
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #fff;
    text-align: center;
    display: block;
}

.age-gate__fields input,
.age-gate__fields select {
    width: 48px;
    height: 32px;
    padding: 0;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Submit button */
.age-gate__submit {
    width: 120px;
    height: 36px;
    margin: 10px auto 0;
    font-size: 0.9rem;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* UL container — center alignment */
.age-gate-form__elements {
    margin: 2%;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*********************************
 Responsive
*********************************/
@media (max-width: 480px) {

    .age-gate-inner {
        padding: 10px;
        max-width: 360px;
    }

    .age-gate__fields input,
    .age-gate__fields select {
        width: 42px;
        height: 30px;
    }

    .age-gate__submit {
        width: 105px;
        height: 34px;
    }
}