#protectionWrapper {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background-color: #FF6600;
    color: #fff;
    font-family: sans-serif;

    /* scrolling */
    overflow-y: auto;

    /* layout */
    display: flex;
    justify-content: center;
    padding: 40px 0;
}


.buttonContainer {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.buttonContainer button {
    padding: 15px 40px;
    font-size: 20px;
    border: none;
    border-radius: 6px;
    background: #fff;
    color: #FF6600;
    cursor: pointer;
    font-weight: bold;
}

.enterBtn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 20px;
    border-radius: 6px;
    background: #fff;
    color: #FF6600;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}
.enterBtn:hover {
    transform: scale(1.05);
}

.youtubeBtn {
    padding: 15px 40px;
    font-size: 20px;
    border: none;
    border-radius: 6px;
    background: #fff;
    color: #FF6600;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}
.youtubeBtn:hover {
    transform: scale(1.05);
}
/* === PAGE LAYOUT === */
#protectionWrapper {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background-color: #FF6600;
    color: #fff;
    font-family: sans-serif;

    /* scrolling */
    overflow-y: auto;

    /* layout */
    display: flex;
    justify-content: center;
    padding: 40px 0;
}


#protectionPage {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* === CONTENT CARD === */
#protectionPage {
    text-align: center;
    margin: auto;
}

/* === LOGO === */
#protectionPage #protectionLogo {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
}


/* === BUTTONS === */
.buttonContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap; /* mobile-safe */
}

.enterBtn,
.youtubeBtn {
    min-height: 44px; /* good for mobile */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gate-text {
    max-width: auto;   /* readable line length */
    margin: 0 auto 20px;
    padding: 0 20px;    /* breathing room on mobile */
}

.gate-text h3 {
    text-align: center;
    line-height: 1.5;
    word-wrap: break-word;
}

body.gate-active {
    overflow: hidden;
}