﻿.ageGateOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
}

.ageGateBox {
    max-width: 700px;
    width: 100%;
    text-align: center;
    color: #000000;
}

.ageGateLogo {
    max-width: 200px;
    margin-bottom: 40px;
}

.ageGateBox h2 {
    color: #36177E;
    font-size: 40px;
    margin-bottom: 20px;
}

.ageGateBox p {
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 18px;
}

.ageGateButtons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

    .ageGateButtons .btn {
        min-width: 120px;
        padding: 10px 30px;
        border-radius: 4px;
        background-color: transparent;
        color: #36177E;
        border: 1px solid #36177E;
    }

        .ageGateButtons .btn:hover {
            background-color: #36177E;
            color: #ffffff;
        }

body.ageGateActive {
    overflow: hidden;
}
