/* Age Gate Frontend CSS */
.age-gate-overlay {
    --age-gate-main-color: #FFFFFF;
    --age-gate-background-color: #000000;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--age-gate-background-color);
    color: var(--age-gate-main-color);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: flex-start;

    opacity: 1;
    transition: opacity 0.4s ease;

    font-family: 'Stroig-Regular';
}

.age-gate-overlay.fade-out {
    opacity: 0;
}

.age-gate-container {
    text-align: center;
    color: var(--age-gate-main-color);
    max-width: 800px;
    width: 90%;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 20px;
    padding-top: 110px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.age-gate-content {
    position: relative;
    z-index: 95;
}

.age-gate-background {
    position: absolute;
    top: -16%;
    left: 16%;
    right: 0;
    width: 130%;
    height: 130%;
}

.age-gate-background img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100% !important;
}

.age-gate-logo {
    /* padding-bottom: 290px; */
    padding-bottom: 22vh;
}

.age-gate-logo img {
    width: 237px;
    height: auto;
}

.age-gate-logo-sub {
    position: absolute;
    bottom: 16vh;
    left: 0;
    right: 0;
}

.age-gate-logo-sub img {
    width: 312px;
    height: auto;
}

.age-gate-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-top: 1px solid #8c704c;
    padding: 40px 60px;
    display: flex;
}

.age-gate-copyright {
    font-size: 14px;
}

.age-gate-lang-switcher {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin-bottom: 41px;
    font-size: 18px;
}

.age-gate-language-option {
    text-decoration: underline;
    padding: 4px 20px;
}

.age-gate-language-option.active {
    text-decoration: none;
    opacity: 0.3;
    pointer-events: none;
}

.age-gate-language-option:hover {
    text-decoration: none;
}

.age-gate-language-option a {
    color: var(--age-gate-main-color) !important;
    font-weight: 400 !important;
    text-decoration: inherit;
}

.age-gate-message {
    max-width: 424px;
    line-height: 1.2;
    margin-bottom: 35px;
    text-wrap: balance;
}

.age-gate-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.age-gate-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    
    padding: 12px 20px;
    border: 0;
    background: var(--age-gate-main-color);
    color: var(--age-gate-background-color);
    cursor: pointer;
    font-size: 18px;
    max-width: 60px;
    line-height: 1;
    transition: all 0.3s ease;

    font-family: 'BebasNeuePro-Bold', BebasNeuePro-Bold;
    font-weight: 700;
}

.age-gate-btn:hover {
    background: #8C704C;
}

/* When Age Gate is active */
body.simple-age-gate-active {
    overflow: hidden; /* Prevent scrolling when age gate is shown */
}

/* When Age Gate has been closed */
body.simple-age-gate-closed {
    /* Add any styles to apply after the age gate has been closed */
    overflow: inherit;
}

/* Responsive styles */

@media (min-width: 1000px) and (max-height: 800px) {
    .age-gate-logo {
        padding-bottom: 12vh;
    }
}

@media (max-width: 479px) {
    .age-gate-container {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 0px;
        padding-top: 42px;
        width: 100%;
    }

    .age-gate-logo {
        padding-bottom: 14vh;
    }

    .age-gate-lang-switcher {
        gap: 0px;
        margin-bottom: 51px;
    }

    .age-gate-message {
        width: 100%;
        padding: 0 20px;
    }

    .age-gate-logo img {
        width: 200px;
        height: auto;
    }

    .age-gate-logo-sub {
        /* bottom: 11vh; */
        bottom: 132px;
    }

    .age-gate-logo-sub img {
        width: 282px;
    }

    .age-gate-footer {
        padding: 22px 28px;
    }
    
}

@media (max-width: 479px) and (max-height: 650px) {
    .age-gate-logo {
        padding-bottom: 8vh;
    }
}