body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background-color: #0d1117;
    color: #c9d1d9;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(114, 137, 218, 0.15) 0%, rgba(13, 17, 23, 0) 60%);
    z-index: 1;
    pointer-events: none;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.logo {
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: #8b949e;
}

.discord-button {
    background-color: #5865f2;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    display: flex;
    align-items: center;
}

.discord-button:hover {
    background-color: #4f5bda;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.discord-logo {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}