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

html {
    scroll-behavior: smooth;
}

body {
    background: #08080d;
    color: white;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}


/* PARTICLES */

#particles {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;

    z-index: 0;
}


/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 40px;

    background: #08080dcc;
    backdrop-filter: blur(10px);

    border-bottom: 1px solid #ffffff10;

    z-index: 10;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;

    opacity: 0.7;

    transition: 0.2s;
}

.nav-links a:hover {
    opacity: 1;
}


/* HERO */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 20px;

    z-index: 1;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    background: #5b4cff;

    border-radius: 50%;

    filter: blur(180px);

    opacity: 0.18;

    z-index: -1;
}

h1 {
    font-size: 64px;
    letter-spacing: 6px;

    text-shadow:
        0 0 10px #5b4cff,
        0 0 30px #5b4cff,
        0 0 60px #5b4cff;
}

.subtitle {
    margin-top: 15px;

    font-size: 22px;

    opacity: 0.7;
}

.ip {
    margin-top: 30px;

    font-size: 20px;

    letter-spacing: 2px;
}


/* BUTTONS */

.buttons {
    display: flex;

    gap: 15px;

    margin-top: 30px;
}

.button {
    padding: 14px 24px;

    border: 1px solid #6d5cff60;

    border-radius: 8px;

    background: #5b4cff18;

    color: white;

    text-decoration: none;

    font-size: 14px;

    cursor: pointer;

    box-shadow: 0 0 20px #5b4cff15;

    transition: 0.2s;
}

.button:hover {
    background: #5b4cff30;

    box-shadow: 0 0 30px #5b4cff40;

    transform: translateY(-2px);
}


/* FEATURES */

.features {
    position: relative;
    z-index: 1;

    padding: 100px 20px;

    max-width: 1100px;

    margin: auto;

    text-align: center;
}

.features h2 {
    font-size: 36px;

    margin-bottom: 50px;

    letter-spacing: 4px;
}

.feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.feature {
    padding: 30px;

    background: #ffffff08;

    border: 1px solid #ffffff12;

    border-radius: 12px;

    box-shadow: 0 0 25px #5b4cff08;

    transition: 0.25s;
}

.feature:hover {
    transform: translateY(-5px);

    background: #ffffff10;

    box-shadow: 0 0 30px #5b4cff20;
}

.feature h3 {
    margin-bottom: 15px;

    font-size: 18px;
}

.feature p {
    opacity: 0.65;

    line-height: 1.6;
}


/* ABOUT + DISCORD */

.about-discord {
    position: relative;
    z-index: 1;

    max-width: 1100px;

    margin: auto;

    padding: 80px 20px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;
}

.about,
.discord {
    padding: 50px 40px;

    text-align: center;

    background: #ffffff05;

    border: 1px solid #ffffff10;

    border-radius: 14px;

    transition: 0.25s;
}

.about:hover,
.discord:hover {
    transform: translateY(-5px);

    background: #ffffff09;

    box-shadow: 0 0 30px #5b4cff15;
}

.about h2,
.discord h2 {
    font-size: 30px;

    letter-spacing: 3px;

    margin-bottom: 25px;
}

.about p,
.discord p {
    line-height: 1.7;

    opacity: 0.65;

    margin-bottom: 15px;
}


/* FAQ */

.faq {
    position: relative;
    z-index: 1;

    padding: 120px 20px;

    max-width: 900px;

    margin: auto;
}

.faq h2 {
    text-align: center;

    font-size: 36px;

    letter-spacing: 4px;

    margin-bottom: 50px;
}

.faq-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.faq-item {
    padding: 25px;

    background: #ffffff08;

    border: 1px solid #ffffff12;

    border-radius: 10px;

    transition: 0.25s;
}

.faq-item:hover {
    transform: translateY(-4px);

    background: #ffffff0d;

    box-shadow: 0 0 25px #5b4cff12;
}

.faq-item h3 {
    font-size: 18px;

    margin-bottom: 10px;
}

.faq-item p {
    opacity: 0.6;

    line-height: 1.6;
}


/* FOOTER */

.footer {
    position: relative;
    z-index: 1;

    padding: 60px 20px 30px;

    text-align: center;

    border-top: 1px solid #ffffff10;

    background: #050509;
}

.footer-logo {
    font-size: 20px;

    font-weight: bold;

    letter-spacing: 4px;

    margin-bottom: 10px;
}

.footer p {
    opacity: 0.5;

    margin-bottom: 20px;
}

.footer-links {
    display: flex;

    justify-content: center;

    gap: 25px;

    margin-bottom: 30px;
}

.footer-links a {
    color: white;

    text-decoration: none;

    opacity: 0.6;

    transition: 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer .copyright {
    margin: 0;

    font-size: 13px;

    opacity: 0.35;
}


/* MOBILE */

@media (max-width: 700px) {

    .navbar {
        padding: 18px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    h1 {
        font-size: 38px;

        letter-spacing: 3px;
    }

    .subtitle {
        font-size: 18px;
    }

    .buttons {
        flex-direction: column;

        width: 100%;

        max-width: 250px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .about-discord {
        grid-template-columns: 1fr;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

}
.server-status {
    position: relative;
    z-index: 1;

    max-width: 900px;
    margin: auto;

    padding: 80px 20px;

    text-align: center;
}

.server-status h2 {
    font-size: 36px;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.status-card {
    padding: 40px;

    background: #ffffff08;

    border: 1px solid #ffffff12;

    border-radius: 14px;

    box-shadow: 0 0 30px #5b4cff10;

    transition: 0.25s;
}

.status-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 0 40px #5b4cff20;
}

.status-indicator {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 10px;

    font-size: 18px;
    font-weight: bold;
}

.status-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #35e88a;

    box-shadow: 0 0 15px #35e88a;
}

.status-ip {
    margin-top: 15px;

    opacity: 0.55;

    letter-spacing: 2px;
}

.status-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 35px;
}

.stat {
    padding: 20px;

    background: #ffffff05;

    border-radius: 10px;
}

.stat-value {
    display: block;

    font-size: 28px;

    font-weight: bold;

    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;

    opacity: 0.5;

    letter-spacing: 1px;
}
