.status-section {
    width: 980px;
    position: absolute;
    left: 50%;
    top: 750px;
    transform: translateX(-50%);
    z-index: 10;
    font-family: "IBM Plex Sans Thai", "Kanit", sans-serif;
}

.status-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.status-row,
.stat-row {
    position: relative;

    width: 170px;
    height: 170px;
    padding: 18px 14px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

    text-align: center;

    clip-path: polygon(
        28% 0%,
        72% 0%,
        100% 28%,
        100% 72%,
        72% 100%,
        28% 100%,
        0% 72%,
        0% 28%
    );

    background:
        linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(170,230,255,0.9) 10%, transparent 18%),
        linear-gradient(315deg, rgba(255,255,255,0.9) 0%, rgba(120,220,255,0.75) 12%, transparent 22%),
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.98) 0%, rgba(135,225,255,0.9) 24%, rgba(20,120,205,0.95) 62%, rgba(5,45,120,0.98) 100%);

    border: none;

    box-shadow:
        inset 0 0 0 3px rgba(255,255,255,0.92),
        inset 0 0 0 6px rgba(45,205,255,0.65),
        inset 0 0 22px rgba(255,255,255,0.85),
        inset 0 -14px 24px rgba(0,45,120,0.55),
        0 0 0 2px rgba(210,245,255,0.95),
        0 0 18px rgba(70,210,255,0.95),
        0 10px 18px rgba(0,40,100,0.35);

    overflow: hidden;
}

.status-row::before,
.stat-row::before {
    content: "";
    position: absolute;
    inset: 10px;

    clip-path: polygon(
        28% 0%,
        72% 0%,
        100% 28%,
        100% 72%,
        72% 100%,
        28% 100%,
        0% 72%,
        0% 28%
    );

    border: 2px solid rgba(160,245,255,0.9);

    background:
        linear-gradient(135deg, rgba(255,255,255,0.55), transparent 26%),
        linear-gradient(315deg, rgba(100,230,255,0.35), transparent 35%);

    box-shadow:
        inset 0 0 12px rgba(120,230,255,0.7),
        0 0 10px rgba(80,220,255,0.65);

    pointer-events: none;
}

.status-row::after,
.stat-row::after {
    content: "◆";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);

    color: #eaffff;
    font-size: 18px;

    text-shadow:
        0 0 6px #ffffff,
        0 0 12px #5de6ff,
        0 0 20px #1faeff;
}

/* Text */
.status-name,
.stat-title {
    position: relative;
    z-index: 2;

    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.7px;

    text-shadow:
        0 1px 0 #062f70,
        0 2px 0 #021d4a,
        0 0 8px rgba(130,230,255,1),
        0 0 16px rgba(55,170,255,0.85);
}

.status-name::before,
.stat-title::before {
    display: block;
    margin-bottom: 8px;

    font-size: 30px;
    line-height: 1;

    color: #fff8cf;

    text-shadow:
        0 0 6px #ffffff,
        0 0 12px #8ce8ff,
        0 0 20px #57cfff;
}

.status-row .status-name::before {
    content: "◈";
}

.stat-row:nth-child(2) .stat-title::before {
    content: "✦";
}

.stat-row:nth-child(3) .stat-title::before {
    content: "❖";
}

.stat-row:nth-child(4) .stat-title::before {
    content: "✧";
}

/* Value Box */
.status-text,
.stat-number {
    position: relative;
    z-index: 2;

    min-width: 96px;
    padding: 5px 12px;

    color: #124c9b;
    font-size: 15px;
    font-weight: 900;
    text-align: center;

    background:
        linear-gradient(180deg, #ffffff 0%, #dff6ff 45%, #b9e9ff 100%);

    border: 2px solid rgba(255,255,255,0.95);

    clip-path: polygon(
        12% 0%,
        88% 0%,
        100% 25%,
        100% 75%,
        88% 100%,
        12% 100%,
        0% 75%,
        0% 25%
    );

    box-shadow:
        inset 0 0 8px rgba(255,255,255,0.95),
        0 0 8px rgba(140,230,255,0.8);
}

.online-text {
    color: #008c47;
}

.offline-text {
    color: #d22b2b;
}

@media (max-width: 650px) {
    .status-section {
        position: relative;
        width: 95%;
        left: auto;
        top: auto;
        transform: none;
        margin: 25px auto;
    }

    .status-list {
        flex-wrap: wrap;
        gap: 14px;
    }

    .status-row,
    .stat-row {
        width: 145px;
        height: 145px;
    }
}