body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    color: #5865f2;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #7289da 0%, #5865f2 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
}

.discord-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.discord-button:hover {
    background: linear-gradient(90deg, #5865f2 0%, #7289da 100%);
}
