:root {
    --bg: #fff6f3;
    --surface: #fffdfc;
    --surface-soft: #fff8f9;
    --rose: #ff5c8d;
    --rose-deep: #d4376b;
    --rose-soft: #ffe1ec;
    --rose-line: #ffd4e2;
    --ink: #4a4458;
    --muted: #94879a;
    --gold: #ffc94d;
    --green: #22b66c;
    --green-soft: #e8fbf0;
    --yellow: #f0aa20;
    --yellow-soft: #fff7df;
    --red: #ef4b5f;
    --red-soft: #fff0f2;
    --gray: #a8a1ad;
    --gray-soft: #f5f3f6;
}

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

html {
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    line-height: 1.6;
    font-size: 14px;
}

button,
a {
    -webkit-appearance: none;
    appearance: none;
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

img {
    border: none;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
}

body {
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 150px;
    overflow-x: hidden;
    position: relative;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 227, 236, 0.78) 0%, rgba(255, 246, 243, 0.98) 22%, rgba(255, 255, 255, 0.96) 58%, rgba(255, 246, 243, 1) 100%);
    font-family: "Yuanti SC", "YouYuan", "PingFang SC", "Hiragino Sans GB",
        "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;
}

body::before,
body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

body::before {
    inset: 0;
    background:
        radial-gradient(circle at 7% 9%, rgba(255, 150, 182, 0.22) 0 3px, transparent 4px),
        radial-gradient(circle at 10% 13%, rgba(255, 180, 204, 0.34) 0 7px, transparent 8px),
        radial-gradient(circle at 87% 7%, rgba(255, 150, 182, 0.22) 0 5px, transparent 6px),
        radial-gradient(circle at 92% 18%, rgba(255, 180, 204, 0.22) 0 4px, transparent 5px);
}

body::after {
    left: -5vw;
    right: -5vw;
    bottom: -34px;
    height: 118px;
    background:
        linear-gradient(178deg, transparent 0 24%, rgba(255, 118, 154, 0.36) 25% 100%),
        linear-gradient(170deg, transparent 0 38%, rgba(255, 92, 141, 0.28) 39% 100%);
}

.wrapper {
    width: 100%;
    margin: auto 0;            /* 主体在视口内垂直居中；内容超高时自动退化为顶对齐、可正常滚动 */
    position: relative;
    z-index: 2;
}

.content {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin: 36px auto 22px;
}

.page-title img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    box-shadow:
        0 10px 28px rgba(255, 92, 141, 0.25),
        0 0 0 2px rgba(255, 255, 255, 0.86),
        0 0 0 5px var(--rose-line);
    animation: titleFloat 4s ease-in-out infinite;
}

@keyframes titleFloat {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.title-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.site-name {
    position: relative;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.05;
    color: var(--rose-deep);
    text-shadow: 0 8px 24px rgba(255, 92, 141, 0.14);
}

.site-name::after {
    content: "✦";
    margin-left: 12px;
    font-size: 22px;
    color: var(--gold);
    vertical-align: 58%;
    filter: drop-shadow(0 0 6px rgba(255, 201, 77, 0.55));
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%,
    100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.42; transform: scale(0.76); }
}

.site-tagline {
    color: #7e7287;
    font-size: 17px;
    font-weight: 600;
}

.site-tagline::before,
.site-tagline::after {
    content: "~";
    color: var(--rose);
    margin: 0 10px;
    font-weight: 800;
}

.box {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-width: 0;
    max-width: 1160px;
    margin: 0 auto;
    padding: 36px 48px 44px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 212, 226, 0.92);
    border-radius: 28px;
    box-shadow:
        0 22px 64px rgba(255, 118, 154, 0.15),
        0 2px 10px rgba(120, 90, 110, 0.05);
}

.box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #ffb0cb, var(--rose), #ffb0cb);
}

.article-content {
    position: relative;
    z-index: 1;
}

.article-content h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #3f3243;
    font-size: 31px;
    line-height: 1.25;
    font-weight: 900;
    margin: 2px 0 8px;
}

.article-content h1::before,
.article-content h1::after {
    content: "✿";
    color: #ff9dbc;
    font-size: 20px;
}

.list-hint {
    text-align: center;
    color: #7d7181;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 20px;
}

.probe-panel {
    overflow: hidden;
    min-width: 0;
    border: 1px solid var(--rose-soft);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 250, 251, 0.92), rgba(255, 255, 255, 0.96));
}

.probe-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
    padding: 0 22px;
    border-bottom: 1px solid var(--rose-soft);
    color: #3f3243;
}

.probe-title,
.probe-refresh {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.probe-title {
    min-width: 0;
    font-size: 18px;
    font-weight: 900;
}

.probe-wave {
    width: 22px;
    height: 22px;
    position: relative;
    flex: 0 0 auto;
}

.probe-wave::before,
.probe-wave::after {
    content: "";
    position: absolute;
    left: 1px;
    right: 1px;
    top: 10px;
    height: 3px;
    background: var(--rose);
    border-radius: 999px;
    transform: rotate(16deg);
}

.probe-wave::after {
    left: 9px;
    top: 4px;
    height: 14px;
    width: 3px;
    right: auto;
    transform: rotate(0);
}

.probe-refresh {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--muted);
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease;
}

.probe-refresh:hover {
    color: var(--rose-deep);
    background: #fff3f7;
}

.probe-refresh:disabled {
    cursor: wait;
    opacity: 0.7;
}

.refresh-mark {
    display: inline-block;
    color: var(--rose);
    font-size: 18px;
    line-height: 1;
}

.probe-refresh.is-loading .refresh-mark {
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.speedlist {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
    padding: 18px;
    min-width: 0;
}

.domain-card {
    min-width: 0;
    list-style: none;
}

.domain-card.featured {
    grid-column: 1 / -1;
}

.route-card {
    position: relative;
    min-height: 110px;
    min-width: 0;
    height: 100%;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 18px 18px;
    overflow: hidden;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #ffe4ec;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(150, 90, 120, 0.055);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.route-card:hover {
    transform: translateY(-2px);
    border-color: #ff9fbd;
    background: #fffafa;
    box-shadow: 0 12px 26px rgba(255, 92, 141, 0.14);
}

.featured .route-card {
    min-height: 92px;
    grid-template-columns: auto 58px minmax(0, 1fr) auto auto;
    gap: 14px;
    padding: 16px 20px;
    border-color: #ff8fb3;
    background:
        linear-gradient(100deg, rgba(255, 241, 246, 0.96), rgba(255, 251, 252, 0.96)),
        linear-gradient(90deg, rgba(255, 92, 141, 0.08), transparent);
    box-shadow: 0 10px 24px rgba(255, 92, 141, 0.12);
}

.featured .route-card::after {
    content: "✿ ✿ ✿";
    position: absolute;
    right: 26px;
    bottom: 12px;
    color: rgba(255, 143, 179, 0.25);
    font-size: 18px;
}

.dc-tag {
    align-self: start;
    justify-self: start;
    padding: 6px 14px;
    border-radius: 999px;
    color: #fff;
    background: var(--rose);
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 7px 14px rgba(255, 92, 141, 0.22);
}

.route-emblem {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #fff;
    font-size: 21px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ff7da5, var(--rose));
    box-shadow: 0 9px 18px rgba(255, 92, 141, 0.24);
}

.route-plane {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--rose);
    background: #fff0f5;
    border: 1px solid #ffd8e5;
    font-size: 20px;
}

.route-copy {
    min-width: 0;
}

.route-copy h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    margin: 0 0 6px;
    color: #3f3243;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured .route-copy h2 {
    font-size: 23px;
}

.route-copy h2 span {
    flex: 0 0 auto;
    padding: 4px 9px;
    color: #20a760;
    background: var(--green-soft);
    border: 1px solid rgba(34, 182, 108, 0.28);
    border-radius: 8px;
    font-size: 14px;
}

.route-copy p {
    color: #7d7181;
    font-size: 15px;
    font-weight: 600;
}

.route-status {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    min-width: 0;
    font-size: 14px;
    font-weight: 800;
}

.featured .route-status {
    justify-content: flex-end;
    min-width: 150px;
    font-size: 15px;
}

.status-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 4px rgba(120, 110, 130, 0.08);
}

.status-label {
    color: currentColor;
}

.latency-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid currentColor;
    background: #fff;
    color: currentColor;
    line-height: 1;
}

.featured .latency-badge {
    min-width: 76px;
    height: 30px;
    font-size: 15px;
}

.is-fast .route-status {
    color: var(--green);
}

.is-fast .latency-badge {
    background: var(--green-soft);
}

.is-slow .route-status {
    color: var(--yellow);
}

.is-slow .latency-badge {
    background: var(--yellow-soft);
}

.is-timeout .route-status {
    color: var(--red);
}

.is-timeout .latency-badge {
    background: var(--red-soft);
}

.is-down .route-status {
    color: var(--gray);
}

.is-down .latency-badge {
    background: var(--gray-soft);
}

.is-checking .route-status {
    color: var(--muted);
}

.is-checking .latency-badge {
    background: var(--gray-soft);
}

.route-button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 96px;
    height: 42px;
    padding: 0 18px;
    color: var(--rose);
    background: #fff;
    border: 2px solid #ff82aa;
    border-radius: 999px;
    font-size: 16px;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(255, 92, 141, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.featured .route-button {
    min-width: 116px;
    height: 44px;
    color: #fff;
    background: linear-gradient(180deg, #ff6f9d, #f12e70);
    border-color: transparent;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(255, 92, 141, 0.28);
}

.route-button:hover {
    transform: translateY(-2px);
    color: #fff;
    background: var(--rose);
    box-shadow: 0 10px 22px rgba(255, 92, 141, 0.24);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 16px;
    overflow: hidden;
    min-width: 0;
    border: 1px solid #ffdfb9;
    border-radius: 16px;
    background: rgba(255, 251, 244, 0.94);
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding: 18px 22px;
    position: relative;
}

.notice-item + .notice-item {
    border-left: 1px solid #f3dcc2;
}

.notice-icon {
    position: relative;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    color: var(--rose);
}

.notice-icon.bookmark {
    border: 3px solid currentColor;
    border-bottom: 0;
    border-radius: 6px 6px 2px 2px;
}

.notice-icon.bookmark::after {
    content: "";
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: -12px;
    height: 18px;
    background: currentColor;
    clip-path: polygon(0 0, 50% 46%, 100% 0, 100% 100%, 0 100%);
}

.notice-icon.shield::before,
.notice-icon.phone::before {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 3px solid currentColor;
    font-weight: 900;
}

.notice-icon.shield::before {
    content: "✓";
    border-radius: 14px 14px 18px 18px;
}

.notice-icon.phone::before {
    content: "";
    border-radius: 8px;
}

.notice-icon.phone::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    transform: translateX(-50%);
}

.notice-item strong {
    display: block;
    color: var(--rose-deep);
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.notice-item p {
    color: #7d7181;
    font-size: 13px;
    line-height: 1.4;
}

.footer {
    margin-top: 18px;
    color: #b4a8b8;
    text-align: center;
    font-size: 13px;
}

.app-download-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    padding: 18px 22px;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-download-banner.is-hidden {
    transform: translateY(120%);
    opacity: 0;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
    width: calc(100vw - 44px);
    max-width: 960px;
    min-width: 0;
    margin: 0 auto;
    padding: 14px 22px;
    pointer-events: auto;
    position: relative;
    border: 1px solid #ffd4e2;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 18px 42px rgba(255, 92, 141, 0.2);
}

.banner-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
    position: relative;
}

.banner-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(255, 92, 141, 0.22);
}

.banner-badge {
    position: absolute;
    right: -9px;
    bottom: -6px;
    padding: 2px 8px;
    border-radius: 999px;
    color: #fff;
    background: var(--rose);
    font-size: 10px;
    font-weight: 900;
    border: 2px solid #fff;
}

.banner-text {
    min-width: 0;
    flex: 1 1 auto;
}

.banner-text h2 {
    color: #3f3243;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 9px;
}

.banner-text ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    list-style: none;
    color: #7d7181;
    font-size: 13px;
    font-weight: 700;
}

.banner-text li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.banner-text li::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: var(--rose);
    background: #fff0f5;
    font-size: 11px;
    font-weight: 900;
}

.banner-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 156px;
    height: 54px;
    padding: 0 28px;
    color: #fff;
    background: linear-gradient(180deg, #ff6f9d, #f12e70);
    border-radius: 999px;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(255, 92, 141, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.banner-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(255, 92, 141, 0.38);
}

.banner-close {
    position: relative;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    color: #bbaebf;
    background: transparent;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
    transition: color 0.2s ease, background 0.2s ease;
}

.banner-close::after {           /* 扩大触控热区到 ≥44px，移动端更易点中（视觉大小不变） */
    content: "";
    position: absolute;
    inset: -9px;
}

.banner-close:hover {
    color: var(--rose-deep);
    background: #fff0f5;
}

.mascot {
    position: fixed;
    right: max(10px, calc((100vw - 1160px) / 2 - 112px));
    bottom: 106px;
    z-index: 10;
    width: 94px;
    height: auto;
    pointer-events: none;
    filter: drop-shadow(0 8px 14px rgba(255, 92, 141, 0.18));
}

.banner-dismissed {
    padding-bottom: 24px;            /* 关闭横幅后回收底部预留空间：消除留白，并让垂直居中区重新撑满 */
}

.banner-dismissed .mascot {
    bottom: 24px;
}

.sakura-layer {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.sakura-petal {
    position: absolute;
    top: 0;
    border-radius: 100% 0 100% 0;
    background: radial-gradient(circle at 30% 30%, #ffe5ef, #ff9dc3 62%, #ff7dad);
    opacity: 0.8;
    will-change: transform, opacity;
}

@media (max-width: 1180px) {
    .content {
        max-width: 100%;
    }

    .box {
        padding: 32px 30px 40px;
    }

    .speedlist {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured .route-card {
        grid-template-columns: auto 52px minmax(0, 1fr) auto;
    }

    .featured .route-status,
    .featured .route-button {
        grid-column: auto;
        justify-self: start;
    }
}

@media (max-width: 1359px) {
    .mascot {
        display: none;
    }
}

@media (max-width: 820px) {
    body {
        padding-bottom: 132px;
    }

    .content {
        padding: 0 14px;
    }

    .page-title {
        gap: 14px;
        margin-top: 28px;
    }

    .page-title img {
        width: 74px;
        height: 74px;
    }

    .site-name {
        font-size: 34px;
    }

    .site-tagline {
        font-size: 14px;
    }

    .box {
        padding: 26px 16px 32px;
        border-radius: 22px;
    }

    .article-content h1 {
        font-size: 24px;
    }

    .probe-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        padding: 14px 16px;
    }

    .speedlist {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .featured .route-card,
    .route-card {
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 12px;
        padding: 16px;
    }

    .featured .dc-tag {
        grid-column: 1 / -1;
    }

    .featured .route-emblem {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .featured .route-copy h2 {
        font-size: 21px;
    }

    .featured .route-status,
    .featured .route-button {
        grid-column: auto;
        justify-self: start;
    }

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

    .notice-item + .notice-item {
        border-left: 0;
        border-top: 1px solid #f3dcc2;
    }

    .banner-content {
        gap: 12px;
        padding: 12px 14px;
        border-radius: 18px;
    }

    .banner-icon {
        width: 48px;
        height: 48px;
    }

    .banner-text h2 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .banner-text ul {
        gap: 4px 10px;
        font-size: 12px;
    }

    .banner-download-btn {
        min-width: 106px;
        height: 42px;
        padding: 0 18px;
        font-size: 15px;
    }

    .banner-close {
        width: 26px;
        height: 26px;
        font-size: 21px;
    }

    .mascot {
        width: 70px;
        right: 6px;
        bottom: 104px;
    }
}

@media (max-width: 560px) {
    body {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }

    .content {
        padding: 0 10px;
    }

    .page-title {
        flex-direction: row;
        justify-content: center;
        text-align: left;
        gap: 12px;
        margin: 26px auto 20px;
    }

    .title-text {
        align-items: flex-start;
    }

    .page-title img {
        width: 72px;
        height: 72px;
    }

    .site-name {
        font-size: 31px;
    }

    .site-tagline::before,
    .site-tagline::after {
        display: none;
    }

    .site-tagline {
        margin-top: 0;
        font-size: 13px;
        letter-spacing: 0;
    }

    .box {
        padding: 22px 10px 24px;
        border-radius: 22px;
    }

    .article-content h1 {
        justify-content: flex-start;
        gap: 11px;
        padding: 0 12px;
        font-size: 25px;
        margin-bottom: 6px;
    }

    .article-content h1::before {
        content: "✦";
        display: grid;
        place-items: center;
        width: 34px;
        height: 34px;
        flex: 0 0 auto;
        color: #fff;
        background: linear-gradient(180deg, #ff7da5, var(--rose));
        border: 0;
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(255, 92, 141, 0.18);
        font-size: 14px;
    }

    .article-content h1::after {
        display: none;
    }

    .list-hint {
        max-width: none;
        margin: 0 12px 16px;
        text-align: left;
        font-size: 13px;
        line-height: 1.55;
    }

    .probe-panel {
        border-color: #ffdbe8;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 8px 20px rgba(255, 92, 141, 0.06);
    }

    .probe-toolbar {
        flex-direction: row;
        align-items: center;
        text-align: left;
        justify-content: space-between;
        gap: 10px;
        min-height: 52px;
        padding: 0 12px;
        background: linear-gradient(180deg, #fff9fb, #fff);
    }

    .probe-title {
        justify-content: flex-start;
        width: auto;
        gap: 9px;
        font-size: 15px;
    }

    .probe-wave {
        width: 24px;
        height: 24px;
        border: 1px solid #ffd4e2;
        border-radius: 10px;
        background: #fff0f5;
    }

    .probe-wave::before {
        left: 7px;
        top: 7px;
        width: 8px;
        height: 8px;
        right: auto;
        border-radius: 50%;
        background: var(--rose);
        transform: none;
        box-shadow: 0 0 0 4px rgba(255, 92, 141, 0.16);
    }

    .probe-wave::after {
        left: 4px;
        top: 4px;
        width: 14px;
        height: 14px;
        border: 1.5px solid rgba(255, 92, 141, 0.42);
        border-radius: 50%;
        background: transparent;
        transform: none;
    }

    .probe-refresh {
        gap: 6px;
        padding: 6px 10px;
        border: 1px solid #ffe1ec;
        border-radius: 999px;
        font-size: 12px;
        background: #fff4f8;
    }

    .speedlist {
        gap: 0;
        padding: 10px;
    }

    .featured .route-card,
    .route-card {
        min-height: 74px;
        grid-template-columns: 34px minmax(0, 1fr) 66px;
        gap: 9px;
        align-items: center;
        justify-items: stretch;
        padding: 12px 10px;
        border-radius: 0;
        border-color: #f3e5e9;
        border-left: 0;
        border-right: 0;
        text-align: left;
        box-shadow: none;
    }

    .domain-card:not(.featured) + .domain-card:not(.featured) .route-card {
        border-top: 0;
    }

    .featured .route-card {
        grid-template-areas:
            "tag tag button"
            "emblem copy button"
            "emblem status button";
        grid-template-columns: 44px minmax(0, 1fr) 70px;
        min-height: 96px;
        padding: 14px 12px;
        border: 1px solid #ff94b7;
        border-radius: 18px;
        margin-bottom: 10px;
        background: linear-gradient(100deg, rgba(255, 241, 246, 0.98), rgba(255, 253, 253, 0.98));
        box-shadow: 0 9px 22px rgba(255, 92, 141, 0.12);
    }

    .route-plane {
        width: 32px;
        height: 32px;
        align-self: center;
        justify-self: start;
        font-size: 16px;
    }

    .featured .dc-tag {
        grid-area: tag;
        justify-self: start;
        padding: 4px 11px;
        font-size: 12px;
    }

    .featured .route-emblem {
        grid-area: emblem;
        width: 40px;
        height: 40px;
        align-self: center;
        font-size: 18px;
    }

    .featured .route-copy {
        grid-area: copy;
        align-self: end;
    }

    .featured .route-copy p {
        display: none;
    }

    .route-copy h2 {
        justify-content: flex-start;
        white-space: nowrap;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .featured .route-copy h2 {
        margin-bottom: 0;
        font-size: 20px;
    }

    .route-status {
        justify-content: flex-start;
        gap: 6px;
        flex-wrap: nowrap;
        font-size: 12px;
    }

    .featured .route-status {
        grid-area: status;
        min-width: 0;
        justify-content: flex-start;
        align-self: start;
        font-size: 12px;
    }

    .route-button {
        grid-column: 3;
        justify-self: end;
        min-width: 0;
        width: 62px;
        height: 34px;
        padding: 0;
        border-width: 1.5px;
        font-size: 13px;
    }

    .featured .route-button {
        grid-area: button;
        align-self: center;
        justify-self: end;
        min-width: 72px;
        width: 72px;
        height: 40px;
        font-size: 14px;
    }

    .latency-badge {
        min-width: 58px;
        height: 24px;
        padding: 0 8px;
        font-size: 12px;
    }

    .featured .latency-badge {
        min-width: 62px;
        height: 25px;
        font-size: 13px;
    }

    .notice-grid {
        margin-top: 14px;
        display: grid;
        gap: 10px;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .notice-item {
        align-items: center;
        gap: 12px;
        min-height: 68px;
        padding: 12px 42px 12px 12px;
        border: 1px solid #ffe1ec;
        border-radius: 16px;
        background: linear-gradient(180deg, #fffdfd, #fff8fa);
        box-shadow: 0 8px 18px rgba(255, 92, 141, 0.06);
    }

    .notice-item + .notice-item {
        border-left: 1px solid #ffe1ec;
        border-top: 1px solid #ffe1ec;
    }

    .notice-item::after {
        content: "›";
        position: absolute;
        right: 14px;
        top: 50%;
        color: #ff78a4;
        font-size: 25px;
        font-weight: 900;
        line-height: 1;
        transform: translateY(-52%);
    }

    .notice-icon {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        border: 1px solid #ffd4e2 !important;
        border-radius: 14px !important;
        color: var(--rose);
        background: #fff0f5;
        font-size: 18px;
        font-weight: 900;
    }

    .notice-icon.bookmark::before,
    .notice-icon.shield::before,
    .notice-icon.phone::before {
        position: static;
        inset: auto;
        display: block;
        width: auto;
        height: auto;
        border: 0 !important;
        border-radius: 0;
        background: transparent;
        transform: none;
    }

    .notice-icon.bookmark::after,
    .notice-icon.phone::after {
        display: none !important;
    }

    .notice-icon.bookmark::before {
        content: "★";
    }

    .notice-icon.shield::before {
        content: "✓";
    }

    .notice-icon.phone::before {
        content: "▣";
    }

    .notice-item strong {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .notice-item p {
        font-size: 12px;
        line-height: 1.35;
    }

    /* 手机：固定底部横幅（与桌面一致、可关闭） */
    .app-download-banner {
        padding: 0 8px calc(8px + env(safe-area-inset-bottom, 0px));
    }

    .banner-content {
        gap: 10px;
        width: auto;
        padding: 10px 12px;
        border-radius: 16px;
    }

    .banner-icon {
        width: 42px;
        height: 42px;
    }

    .banner-text h2 {
        font-size: 16px;
        margin-bottom: 0;
    }

    .banner-text ul {
        display: none;
    }

    .banner-download-btn {
        min-width: 88px;
        height: 40px;
        padding: 0 14px;
        font-size: 14px;
    }

    .banner-close {
        width: 26px;
        height: 26px;
        font-size: 21px;
    }

    .mascot {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }

    .sakura-layer {
        display: none;
    }
}
