* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    background: #050505;
    color: #fff;
}

body {
    overflow-x: hidden;
}

.page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 50% -15%, rgba(217, 171, 94, .18), transparent 34%),
        radial-gradient(circle at 15% 80%, rgba(217, 171, 94, .08), transparent 30%),
        linear-gradient(180deg, #101010 0%, #060606 48%, #020202 100%);
}

.page-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 80%);
}

.page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 22px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel {
    width: 100%;
    max-width: 430px;
    padding: 22px;
    border-radius: 30px;
    background:
        linear-gradient(
            180deg,
            rgba(20, 20, 20, .88),
            rgba(8, 8, 8, .92)
        );
    border: 1px solid rgba(255, 255, 255, .09);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, .62),
        inset 0 1px 0 rgba(255, 255, 255, .05);
    backdrop-filter: blur(18px);
}

.top {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
}

.logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 18px;
    background:
        linear-gradient(135deg, #e8c27b, #9f6b2f);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 14px 36px rgba(217, 171, 94, .18);
    overflow: hidden;
}

.logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.title-box {
    min-width: 0;
}

.title-box h1 {
    margin: 0;
    font-size: 27px;
    font-weight: 850;
    letter-spacing: .4px;
}

.title-box p {
    margin: 7px 0 0;
    color: #9b9b9b;
    font-size: 13px;
}

.notice {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .06);
    color: #b8b8b8;
    font-size: 13px;
    line-height: 1.55;
}

.entry-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.entry {
    min-height: 84px;
    padding: 15px;
    border-radius: 22px;
    text-decoration: none;
    color: #fff;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.025)
        );
    border: 1px solid rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: .22s ease;
}

.entry-main {
    border-color: rgba(232, 194, 123, .42);
    background:
        linear-gradient(
            135deg,
            rgba(232, 194, 123, .18),
            rgba(255,255,255,.045)
        );
    box-shadow:
        0 18px 50px rgba(217, 171, 94, .10),
        inset 0 1px 0 rgba(255,255,255,.06);
}

.entry-left {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
}

.entry-index {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.08);
    color: #e8c27b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 850;
}

.entry-main .entry-index {
    background: rgba(232, 194, 123, .16);
    border-color: rgba(232, 194, 123, .22);
}

.entry-text {
    min-width: 0;
}

.entry-text strong {
    display: block;
    margin-bottom: 7px;
    font-size: 18px;
    font-weight: 850;
}

.entry-text span {
    display: block;
    color: #969696;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.entry-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
}

.entry-right b {
    color: #e8c27b;
    font-size: 12px;
    font-weight: 800;
}

.speed {
    min-width: 72px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.075);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.speed i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #777;
}

.speed em {
    color: #cfcfcf;
    font-size: 11px;
    font-style: normal;
    font-weight: 750;
}

.speed-good .speed i {
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, .8);
}

.speed-good .speed em {
    color: #86efac;
}

.speed-normal .speed i {
    background: #e8c27b;
}

.speed-normal .speed em {
    color: #f5d99b;
}

.speed-slow .speed i {
    background: #fb923c;
}

.speed-slow .speed em {
    color: #fdba74;
}

.speed-bad .speed i {
    background: #f87171;
}

.speed-bad .speed em {
    color: #fca5a5;
}

.fastest {
    border-color: rgba(74, 222, 128, .42);
}

.footer {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #777;
    font-size: 12px;
}

.footer i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #777;
}

@media (hover: hover) {
    .entry:hover {
        transform: translateY(-2px);
        border-color: rgba(232, 194, 123, .34);
    }
}

@media (max-width: 390px) {
    .page {
        padding: 18px 12px;
    }

    .panel {
        padding: 18px;
        border-radius: 26px;
    }

    .title-box h1 {
        font-size: 25px;
    }

    .entry {
        min-height: 80px;
        padding: 14px;
        border-radius: 20px;
    }

    .entry-index {
        width: 35px;
        height: 35px;
        border-radius: 12px;
    }

    .entry-text strong {
        font-size: 17px;
    }

    .speed {
        min-width: 68px;
    }
}