body {
    background-color: #2e0040;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.discord-button {
    background-color: #5865F2;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.discord-button:hover {
    background-color: #4753d5;
}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.custom-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #5865F2;
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"]:checked {
    background-color: #5865F2;
}

.custom-checkbox input[type="checkbox"]:checked::before {
    content: '\2713';
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 24px;
    font-size: 18px;
    color: #FFFFFF;
}

.checkbox-label {
    cursor: pointer;
}