.status-section {
    width: 600px;
    position: absolute;
    left: 170px;
    top: 1020px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Kanit', sans-serif;
}

/* Main Frozen Fantasy Panel */
.status-panel {
    position: relative;
    padding: 18px 20px 20px 20px;
    border-radius: 12px;

    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 32%),
        radial-gradient(circle at bottom right, rgba(95, 210, 255, 0.45), transparent 38%),
        linear-gradient(180deg, rgba(245, 253, 255, 0.94), rgba(200, 235, 250, 0.9));

    border: 2px solid rgba(72, 180, 235, 0.95);

    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.65) inset,
        inset 0 0 20px rgba(255, 255, 255, 0.75),
        0 0 15px rgba(70, 190, 255, 0.65),
        0 8px 18px rgba(30, 120, 180, 0.22);

    color: #285c7c;
    overflow: hidden;
}

.status-panel::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(95, 190, 240, 0.5);
    border-radius: 8px;
    pointer-events: none;
}

.status-panel::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 6px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, transparent, #69dfff, transparent);
    box-shadow: 0 0 10px rgba(105, 223, 255, 0.95);
    pointer-events: none;
}

/* Header */
.status-header {
    position: relative;
    z-index: 1;
    width: 80%;
    margin: -8px auto 14px auto;
    padding: 6px 10px;

    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;

    color: #ffffff;
    text-shadow:
        1px 1px 0 #2378a3,
        0 0 8px rgba(90, 220, 255, 0.95);

    background:
        linear-gradient(180deg, #9eefff 0%, #43bce9 45%, #1676a8 100%);

    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 18px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -4px 8px rgba(0, 80, 140, 0.35),
        0 0 12px rgba(70, 190, 255, 0.85),
        0 3px 6px rgba(0, 80, 130, 0.25);
}

.status-header::before,
.status-header::after {
    content: "❄";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #eaffff;
    font-size: 15px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 1);
}

.status-header::before {
    left: 14px;
}

.status-header::after {
    right: 14px;
}

.status-header.small {
    width: 72%;
}

/* Table Header */
.status-table-head {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: 1fr 140px;
    padding: 7px 12px;
    margin-bottom: 8px;

    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;

    background:
        linear-gradient(180deg, rgba(68, 170, 215, 0.95), rgba(20, 100, 150, 0.95));

    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 8px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        0 0 7px rgba(75, 190, 240, 0.45);

    text-shadow: 1px 1px 0 #145a82;
}

/* Rows */
.status-row,
.stat-row {
    position: relative;
    z-index: 1;

    display: grid;
    align-items: center;
    gap: 10px;

    min-height: 36px;
    margin-bottom: 6px;
    padding: 6px 8px;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(200, 235, 250, 0.58));

    border: 1px solid rgba(70, 170, 220, 0.45);
    border-radius: 8px;

    box-shadow:
        inset 0 0 8px rgba(255, 255, 255, 0.85),
        0 1px 4px rgba(50, 140, 190, 0.25);
}

.status-row {
    grid-template-columns: 145px 1fr 70px;
}

.stat-row {
    grid-template-columns: 145px 1fr 110px;
}

.status-name,
.stat-title {
    color: #2c6688;
    font-size: 14px;
    font-weight: bold;
    text-shadow:
        1px 1px 0 #ffffff,
        0 0 5px rgba(120, 220, 255, 0.7);
}

/* Bar Frame */
.status-bar-wrap,
.stat-bar-wrap {
    height: 18px;
    padding: 2px;

    background:
        linear-gradient(180deg, #b9efff, #4aaed7);

    border: 1px solid rgba(20, 105, 155, 0.75);
    border-radius: 12px;

    box-shadow:
        inset 0 0 6px rgba(0, 70, 120, 0.55),
        0 0 6px rgba(95, 210, 255, 0.65);

    overflow: hidden;
}

/* Bar Fill */
.status-bar,
.stat-bar {
    height: 100%;
    border-radius: 10px;

    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.45) 0px,
            rgba(255, 255, 255, 0.45) 2px,
            transparent 2px,
            transparent 9px
        ),
        linear-gradient(90deg, #79ff9c 0%, #f9f871 58%, #ff8d45 100%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 8px rgba(120, 255, 200, 0.8);
}

.bar-online {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.45) 0px,
            rgba(255, 255, 255, 0.45) 2px,
            transparent 2px,
            transparent 9px
        ),
        linear-gradient(90deg, #79ff9c 0%, #f9f871 58%, #ff8d45 100%);
}

.bar-offline {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.25) 0px,
            rgba(255, 255, 255, 0.25) 2px,
            transparent 2px,
            transparent 9px
        ),
        linear-gradient(90deg, #ff6b6b, #b91f1f);
}

/* Text */
.status-text,
.stat-number {
    text-align: right;
    font-size: 13px;
    font-weight: bold;
}

.online-text {
    color: #009f58;
    text-shadow:
        1px 1px 0 #ffffff,
        0 0 5px rgba(0, 220, 110, 0.85);
}

.offline-text {
    color: #d92c2c;
    text-shadow:
        1px 1px 0 #ffffff,
        0 0 5px rgba(255, 80, 80, 0.75);
}

/* Statistics */
.status-stat-panel {
    padding-top: 18px;
}

.stat-number {
    color: #275f82;
    text-shadow:
        1px 1px 0 #ffffff,
        0 0 6px rgba(90, 210, 255, 0.85);
}

/* Responsive */
@media (max-width: 1200px) {
    .status-section {
        width: 95%;
        left: 2.5%;
        top: 980px;
    }
}

@media (max-width: 650px) {
    .status-section {
        position: relative;
        width: 95%;
        left: auto;
        top: auto;
        margin: 25px auto;
    }

    .status-row,
    .stat-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .status-text,
    .stat-number {
        text-align: center;
    }

    .status-table-head {
        grid-template-columns: 1fr;
        text-align: center;
    }
}