@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #070707;
    --card: #101010;
    --border: #252525;
    --text: #f5f5f5;
    --muted: #929292;
    --accent: #ffffff;
    --green: #4ade80;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% -10%,
            #242424 0%,
            #0d0d0d 35%,
            #070707 65%
        );

    color: var(--text);

    font-family: "Inter", sans-serif;

    line-height: 1.6;
}


.container {
    width: min(100% - 40px, 1050px);
    margin: auto;
    padding: 100px 0 50px;
}


/* HERO */

.hero {
    margin-bottom: 70px;
}

.eyebrow,
.label {
    color: var(--muted);

    font-family: "JetBrains Mono", monospace;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.15em;
}

.eyebrow {
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 88px);

    line-height: 0.98;

    letter-spacing: -0.055em;

    font-weight: 800;
}

.hero h1 span {
    color: #777;
}

.intro {
    max-width: 650px;

    margin-top: 30px;

    color: var(--muted);

    font-size: 18px;
}


/* SERVER CARD */

.server-card {
    background: rgba(16, 16, 16, 0.85);

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 32px;

    backdrop-filter: blur(10px);
}

.card-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding-bottom: 30px;

    border-bottom: 1px solid var(--border);
}

.card-header h2 {
    margin-top: 6px;

    font-size: 25px;

    letter-spacing: -0.02em;
}

.status {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #bbb;

    font-size: 14px;
}

.status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--green);

    box-shadow: 0 0 12px var(--green);
}


/* DETAILS */

.details {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 0;
}

.detail {
    padding: 22px 10px;

    border-bottom: 1px solid var(--border);
}

.detail:nth-child(odd) {
    border-right: 1px solid var(--border);
    padding-left: 0;
}

.detail:nth-child(even) {
    padding-left: 30px;
}

.detail span {
    display: block;

    color: var(--muted);

    font-size: 13px;

    margin-bottom: 5px;
}

.detail strong {
    font-size: 16px;

    font-weight: 600;
}

.ip {
    font-family: "JetBrains Mono", monospace;

    font-size: 14px !important;
}


/* STACK */

.stack {
    margin-top: 70px;
}

.tags {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;
}

.tags span {
    padding: 9px 14px;

    border: 1px solid var(--border);

    border-radius: 8px;

    background: #0e0e0e;

    color: #ccc;

    font-family: "JetBrains Mono", monospace;

    font-size: 12px;
}


/* ABOUT */

.about {
    max-width: 700px;

    margin-top: 70px;
}

.about > p:not(.label) {
    margin-top: 18px;

    color: #aaa;

    font-size: 16px;
}


/* FOOTER */

footer {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 100px;

    padding-top: 25px;

    border-top: 1px solid var(--border);

    color: #666;

    font-size: 13px;
}

.terminal {
    font-family: "JetBrains Mono", monospace;
}


/* MOBILE */

@media (max-width: 650px) {

    .container {
        padding-top: 60px;
    }

    .hero {
        margin-bottom: 50px;
    }

    .server-card {
        padding: 22px;
    }

    .card-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .details {
        grid-template-columns: 1fr;
    }

    .detail:nth-child(odd) {
        border-right: none;

        padding-left: 0;
    }

    .detail:nth-child(even) {
        padding-left: 0;
    }

    footer {
        flex-direction: column;
    }
}