body {
    background: linear-gradient(135deg, #7289da, #5865f2, #99aab5);
    color: #ffffff;
    font-family: 'Whitney', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
}

.discord-login-button {
    background: #5865f2;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background 0.3s ease;
}

.discord-login-button:hover {
    background: #4752c4;
}