<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100%;
}

@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1);
    }
}

.pop {
    animation: pop 0.2s ease-in-out;
    animation-fill-mode: forwards;
}

.access-message,
.static-message {
    color: #f9fafa;
    padding: 10px;
    border-radius: 8px;
    margin: 0 0 12px 0;
    width: fit-content;
    display: none;
    text-align: center;
}

.access-message {
    background-color: #13161f;
    color: #3399ff;
    border: 1.5px solid #3399ff;
    padding: 6px 8px;
}

.static-message {
    display: flex;
    flex-direction: column;
}

.static-message div {
    margin-bottom: 6px;
}

.benefits-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    background-color: #161a23;
    color: #d4dbe1;
    padding: 10px;
    border-radius: 8px;
    margin: 4px auto;
}

.access-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin: 10px auto 15px auto;
    line-height: 1.4;
    padding: 12px;
    border: 1px solid #293442;
    border-radius: 8px;
}

.email-help {
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(201, 201, 201, 0.8);
}

.email {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
    opacity: .6;
    transition: opacity 0.2s ease;
}

.ready {
    opacity: 1;
}

#confirm-email {
    font-size: 16px;
    white-space: nowrap;
    width: 115px;
    padding: 6px 12px;
    border-radius: 8px;
    background: #fcfcfd;
    color: #313745;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

#email-code {
    max-width: 90px;
    text-align: center;
}

.label-text {
    display: none;
    font-size: 16px;
    font-weight: 400;
    color: rgba(201, 201, 201, 0.8);
    margin: 2px 0;
}

.label {
    display: flex;
    flex-direction: column;
    margin-bottom: 6px;
    color: #e2e6e9;
    font-size: 18px;
}

.pass-but {
    font-size: 16px;
    color: #ffffff80;
    background: #202934;
    padding: 2px 6px;
    border-radius: 8px;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
}

.bottom-message {
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    color: #c6cbd2;
    padding: 14px 10px;
    width: 100%;
    word-break: break-word;
}

.bottom-message a {
    color: #66adff;
}

.redirect-con {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    margin-top: 20px;
    gap: 10px;
    color: #f1f2f4;
    text-align: center;
    padding: 14px;
    background-color: #00000045;
    border-radius: 10px;
    width: fit-content;
}

.redirect-con img {
    border-radius: 8px;
    max-height: 200px;
}

#turnstile-run {
    margin: 0 auto;
    height: auto;
}</pre></body></html>