* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0b0b0b;
    color: white;
}


/* NAVBAR */

.navbar {
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 8%;

    background: rgba(10, 10, 10, 0.95);

    border-bottom: 1px solid #222;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #aaa;
    text-decoration: none;

    transition: 0.2s;
}

.nav-links a:hover {
    color: white;
}


/* HERO */

.hero {
    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(circle at center, #252525, #080808 70%);
}

.hero h1 {
    font-size: 80px;
    font-weight: 900;

    letter-spacing: 4px;
}

.hero p {
    margin-top: 15px;

    color: #aaa;

    font-size: 18px;

    letter-spacing: 5px;
}


/* BUTTONS */

.buttons {
    margin-top: 40px;

    display: flex;

    justify-content: center;

    gap: 15px;
}

button {
    padding: 14px 28px;

    border: none;

    border-radius: 6px;

    font-weight: bold;

    cursor: pointer;

    background: white;

    color: black;

    transition: 0.2s;
}

button:hover {
    transform: translateY(-2px);
}

.discord {
    background: #5865F2;

    color: white;
}


/* STATUS */

.status-section {
    display: flex;

    justify-content: center;

    margin-top: -40px;
}

.status-card {
    width: 350px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 15px;

    background: #151515;

    border: 1px solid #252525;

    border-radius: 10px;
}

.status-dot {
    width: 12px;
    height: 12px;

    background: #35d05f;

    border-radius: 50%;
}

.status-card h2 {
    font-size: 18px;
}

.status-card p {
    color: #888;

    margin-top: 5px;
}


/* ABOUT */

.about {
    max-width: 800px;

    margin: 100px auto;

    text-align: center;

    padding: 0 20px;
}

.about h2 {
    font-size: 35px;

    margin-bottom: 20px;
}

.about p {
    color: #999;

    line-height: 1.7;
}


/* FOOTER */

footer {
    text-align: center;

    padding: 40px;

    border-top: 1px solid #222;

    color: #666;
}