.sac-age-gate {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    font-family: Arial, Helvetica, sans-serif;
    color: #f7f0e4;
}

.sac-age-gate.sac-show {
    display: block;
}

.sac-age-gate * {
    box-sizing: border-box;
}

.sac-age-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 4, 7, 0.86);
}

.sac-age-modal {
    position: relative;
    width: 1080px;
    max-width: 92vw;
    max-height: 88vh;
    margin: 6vh auto 0;
    background: #111014;
    border: 1px solid rgba(210, 170, 91, 0.55);
    border-radius: 14px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
    overflow-y: auto;
    overflow-x: hidden;
}

.sac-age-brand {
    padding: 22px 34px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #18161d, #111014);
}

.sac-age-logo-text {
    display: inline-flex;
    align-items: flex-end;
    gap: 5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 800;
}

.sac-age-logo-text span:first-child {
    color: #ffffff;
}

.sac-age-logo-text span:nth-child(2) {
    color: #d6aa5d;
}

.sac-age-logo-text small {
    color: #8f887d;
    font-size: 12px;
    margin-left: 2px;
}

.sac-age-content {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 28px;
    padding: 30px 40px 32px;
}

.sac-age-copy h2 {
    margin: 0 0 18px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
}

.sac-age-copy p {
    font-size: 14px;
    line-height: 1.72;
    color: #d8d0c5;
    margin: 0 0 16px;
}

.sac-age-copy h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    color: #d6aa5d;
    margin: 22px 0 12px;
    text-transform: uppercase;
}

.sac-age-copy ul {
    margin: 0 0 12px 20px;
    padding: 0;
    color: #eee2d2;
}

.sac-age-copy li {
    font-size: 14px;
    line-height: 1.55;
    margin: 4px 0;
}

.sac-age-final {
    color: #ffffff !important;
}

.sac-age-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 22px;
}

.sac-age-actions button {
    width: 230px;
    min-height: 56px;
    border-radius: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.16em;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease;
}

.sac-age-actions button:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.sac-age-enter {
    color: #08070a;
    background: linear-gradient(180deg, #e2bd72, #c99942);
    border: 1px solid rgba(214, 170, 91, 0.8);
    box-shadow: 0 10px 24px rgba(214, 170, 91, 0.18);
}

.sac-age-leave {
    color: #eeeeee;
    background: #242126;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
}

.sac-age-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.sac-age-glow {
    position: absolute;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 170, 91, 0.35), rgba(214, 170, 91, 0.08), transparent 70%);
}

.sac-age-card {
    position: relative;
    width: 230px;
    padding: 38px 24px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(214, 170, 91, 0.5);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.sac-age-card-title {
    font-size: 64px;
    font-weight: 900;
    color: #d6aa5d;
    letter-spacing: -0.04em;
}

.sac-age-card-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.sac-age-card-line {
    width: 70px;
    height: 2px;
    margin: 22px auto;
    background: #d6aa5d;
}

.sac-age-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #cfc5b6;
    margin: 0;
}

@media (max-width: 820px) {
    .sac-age-gate {
        overflow-y: auto;
        padding: 18px 0 26px;
    }

    .sac-age-modal {
        width: 94vw;
        max-width: 94vw;
        max-height: calc(100vh - 44px);
        max-height: calc(100svh - 44px);
        margin: 0 auto;
        border-radius: 14px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .sac-age-brand {
        padding: 18px 22px 12px;
        border-radius: 13px 13px 0 0;
    }

    .sac-age-content {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .sac-age-visual {
        display: none;
    }

    .sac-age-copy h2 {
        font-size: 24px;
    }

    .sac-age-copy h3 {
        font-size: 28px;
    }

    .sac-age-actions {
        flex-direction: column;
        gap: 12px;
        padding-bottom: 20px;
    }

    .sac-age-actions button,
    .sac-age-enter,
    .sac-age-leave {
        width: 100%;
        min-width: 0;
    }

    .sac-age-copy p,
    .sac-age-copy li {
        font-size: 13.5px;
    }
}
