* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 2rem;
    color: #2444D9;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    color: #2444D9;
    margin-bottom: 30px;
}

.discord-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: #FFC0CB;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.discord-button:hover {
    background-color: #FF7F7F;
}