header, footer {
    display: none;
}
body, html {
    height: 100%;
    margin: 0;
    background: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}
.age-confirm-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.age-confirm-logo {
    margin-bottom: 40px;
}

.age-confirm-title {
    font-size: 32px;
    line-height: 1.5;
    font-family: "Roboto",serif;
    text-align: center;
}
.age-confirm-question {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.5;
}
.age-confirm-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    justify-content: center;
}
.age-confirm-btn {
    min-width: 174px;
    min-height: 68px;
    letter-spacing: 1px;
    padding: 22px 14px;
    font-size: 20px;
    font-weight: 400;
    background: #fff;
    color: #111110;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border: 1px solid transparent;
}
.age-confirm-btn:hover, .age-confirm-btn:focus {
    background: #111110;
    color: #fff;
    border: 1px solid #fff;
}
.age-confirm-exit {
    background: none;
    color: rgba(255, 255, 255, 0.75);
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding: 12px 13px 10px 13px;
    letter-spacing: 0.7px;
    font-weight: 500;
}
.age-confirm-exit:hover {
    color: #fff;
}
.age-confirm-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    color: #fff;
    text-align: left;
    line-height: 1.2;
}
.age-confirm-text a {
    color: rgba(255, 255, 255, .75);
}
.age-confirm-text a:hover {
    color: #fff;
}
.age-btn {
    display: inline-block;
    min-width: 220px;
    height: 54px;
    padding: 0 32px;
    font-size: 20px;
    font-weight: bold;
    color: #111;
    background: #fff;
    border: 2px solid transparent; /* завжди 2px! */
    border-radius: 8px;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    /* outline: none; */
}
.age-btn:hover, .age-btn:focus {
    background: #111;
    color: #fff;
    border-color: #fff; /* тільки колір змінюється! */
}

@media (max-width: 767.98px) {
    .age-confirm-logo {
        margin-bottom: 24px;
    }

    .age-confirm-title {
        font-size: 24px;
    }

    .age-confirm-question {
        font-size: 32px;
        margin-bottom: 24px;
    }
}
