* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #00aaff;
    --dark: #0f0f0f;
    --gray: #1a1a1a;
    --light-gray: #aaaaaa;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0a0a0a, #1b1b1b);
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 850px;

    background: rgba(20, 20, 20, 0.95);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    padding: 50px;

    text-align: center;

    box-shadow:
        0 0 40px rgba(0,0,0,0.6),
        0 0 80px rgba(0,170,255,0.08);

    backdrop-filter: blur(10px);
}

h1 {
    font-size: 4rem;
    margin-bottom: 20px;

    color: white;

    text-shadow: 0 0 20px rgba(0,170,255,0.4);
}

p {
    color: var(--light-gray);
    line-height: 1.7;

    margin-bottom: 40px;

    font-size: 1.1rem;
}

.status {
    display: flex;
    gap: 20px;

    justify-content: center;
    flex-wrap: wrap;

    margin-bottom: 40px;
}

.card {
    background: #181818;

    border: 1px solid rgba(255,255,255,0.05);

    padding: 20px;

    border-radius: 16px;

    min-width: 220px;

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);

    border-color: rgba(0,170,255,0.3);

    box-shadow: 0 0 20px rgba(0,170,255,0.15);
}

.card h2 {
    margin-bottom: 10px;

    color: var(--blue);
}

.card span {
    color: #d4d4d4;
}

button {
    background: var(--blue);

    border: none;

    color: white;

    padding: 15px 30px;

    border-radius: 12px;

    font-size: 1rem;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);

    box-shadow: 0 0 25px rgba(0,170,255,0.4);
}
.discord-btn {
    display: inline-block;

    margin-top: 20px;

    background: #5865F2;

    color: white;

    padding: 14px 28px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s;
}

.discord-btn:hover {
    transform: scale(1.05);

    box-shadow: 0 0 25px rgba(88,101,242,0.5);
}
.ip {
    margin-top: 20px;

    color: #8c8c8c;

    font-size: 0.95rem;
}