body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Mono', monospace;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    box-sizing: border-box;
}

.captcha-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    opacity: 1;
    transition: opacity 0.6s ease-out;
}

.captcha-box {
    text-align: center;
    padding: 30px;
    background-color: rgba(10, 10, 10, 0.8);
    border-radius: 10px;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.captcha-checkbox {
    transform: scale(1.5);
    margin-right: 15px;
    accent-color: #ffffff;
    cursor: pointer;
}

.captcha-label {
    font-size: 1.1em;
    cursor: pointer;
    color: #ccc;
}
.captcha-label:hover {
    color: #fff;
}