body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1c1c1c;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.captcha-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1c1c1c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    text-align: center;
}

.captcha-overlay h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.captcha-overlay p {
    margin-bottom: 20px;
    opacity: 0.8;
    max-width: 600px;
    line-height: 1.5;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 60px;
}

.main-content {
    text-align: center;
}

h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.discord-btn {
    display: inline-block;
    background-color: #5865F2;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.discord-btn:hover {
    background-color: #4752C4;
}

.turnstile-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    opacity: 0.7;
}
