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

body {
    min-height: 100vh;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background:
        radial-gradient(
            circle at top,
            #18243d 0%,
            #0b1020 45%,
            #060914 100%
        );

    color: #ffffff;

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

    padding: 30px;
}


.container {
    width: 100%;
    max-width: 900px;
}


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

    gap: 20px;

    margin-bottom: 35px;
}


.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}


.logo {
    width: 48px;
    height: 48px;

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

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);

    font-weight: 800;
    letter-spacing: 1px;
}


.brand h1 {
    font-size: 20px;
}


.brand p {
    color: #8f9bb5;
    margin-top: 3px;
}


.status-badge {
    padding: 9px 14px;

    border-radius: 30px;

    background: rgba(70, 200, 130, 0.1);

    border: 1px solid rgba(70, 200, 130, 0.2);

    color: #72e0a2;

    font-size: 13px;

    display: flex;
    align-items: center;
    gap: 8px;
}


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

    border-radius: 50%;

    background: #55d98b;

    display: inline-block;

    box-shadow: 0 0 10px rgba(85, 217, 139, 0.7);
}


.hero {
    text-align: center;

    padding: 55px 30px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    margin-bottom: 20px;
}


.hero-icon {
    width: 64px;
    height: 64px;

    margin: 0 auto 20px;

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

    border-radius: 50%;

    background: rgba(70, 200, 130, 0.12);

    color: #72e0a2;

    font-size: 30px;

    font-weight: bold;
}


.hero h2 {
    font-size: 30px;

    margin-bottom: 12px;
}


.hero p {
    max-width: 600px;

    margin: auto;

    color: #8f9bb5;

    line-height: 1.7;
}


.services {
    display: grid;

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

    gap: 12px;
}


.service {
    padding: 20px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.07);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;
}


.service h3 {
    font-size: 15px;

    margin-bottom: 5px;
}


.service span {
    color: #7f8aa3;

    font-size: 12px;
}


.service-status {
    color: #72e0a2 !important;

    white-space: nowrap;

    display: flex;

    align-items: center;

    gap: 7px;
}


.updated {
    margin-top: 18px;

    padding: 16px 20px;

    display: flex;

    justify-content: space-between;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.025);

    color: #7f8aa3;

    font-size: 13px;
}


.updated strong {
    color: #c5ccdb;
}


footer {
    margin-top: 30px;

    text-align: center;

    color: #68738b;

    font-size: 12px;

    line-height: 1.8;
}


@media (max-width: 650px) {

    body {
        padding: 18px;
    }

    .header {
        flex-direction: column;

        align-items: flex-start;
    }

    .status-badge {
        align-self: flex-start;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h2 {
        font-size: 24px;
    }

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

    .service {
        padding: 17px;
    }

    .updated {
        flex-direction: column;

        gap: 5px;
    }
}