body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'ARHIVELO', 'Segoe UI', 'Roboto', sans-serif;
    background-color: #000000;     /* Gray background */
    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.12) 0%, rgba(31, 36, 40, 0) 70%);
    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;
    padding: 20px;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 50%;                    /* Round edges */
    filter: drop-shadow(0 0 25px rgba(138, 43, 226, 0.8));
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.6)); }
    to { filter: drop-shadow(0 0 45px rgba(192, 132, 252, 0.95)); }
}

h1 {
    font-size: 4.2rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #c084fc, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(192, 132, 252, 0.5);
}

p {
    font-size: 1.35rem;
    margin-bottom: 50px;
    max-width: 620px;
    color: #a5b4fc;
    line-height: 1.5;
}

/* Black & White Discord Button */
.discord-button {
    background-color: #0A0B0B;
    color: #ffffff;
    padding: 15px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.discord-button:hover {
    background-color: #ffffff;
    color: #1f2428;
    transform: translateY(-4px) scale(1.03);
    border-color: #ffffff;
}

.discord-logo {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.discord-button:hover .discord-logo {
    fill: #1f2428;
}