:root {
    --bg-color: #fffaf0; /* Warm cream */
    --bg-card: #ffffff;
    --text-main: #5c4033; /* Dark brown */
    --text-muted: #a08070;
    --text-heading: #3e2723;
    --text-inverse: #ffffff; 
    --primary-color: #f59e0b; /* Vibrant Amber */
    --primary-hover: #d97706;
    --secondary-color: #ffedd5;
    --glass-border: rgba(245, 158, 11, 0.2);
    --hero-gradient-1: #ffe4c4;
    --hero-gradient-2: #fffaf0;
    --footer-bg: #3e2723;
    --footer-text: #ffcc80;
}

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

body {
    font-family: 'Roboto', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    padding-bottom: 90px;
    overflow-x: hidden;
}

/* 布局通用 */
.z030gj { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.zdgosg { text-align: center; font-size: 2rem; margin-bottom: 40px; font-weight: 800; color: var(--text-heading); }
.zxd3x2 { text-align: left; }

/* 按钮通用 */
.zq1phb {
    display: inline-block;
    padding: 16px 12px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
    cursor: pointer;
    text-align: center;
}
.zq1phb:active { transform: scale(0.95); }
.zj95qq { background: var(--primary-color); color: var(--text-inverse) !important; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.zj95qq:hover { background: var(--primary-hover); transform: translateY(-2px); }
.zgb4so { background: var(--secondary-color); color: var(--text-main); border: 1px solid var(--glass-border); }
.zgb4so:hover { opacity: 0.8; transform: translateY(-2px); }
.zcuwf5 { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.zcuwf5:hover { background: rgba(0,0,0,0.05); }
.zcv8nm { display: block; width: 100%; }
.zjfspt { padding: 18px 40px; font-size: 1.1rem; flex: none; }

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
    50% { box-shadow: 0 4px 25px rgba(0,0,0,0.2); }
    100% { box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
}
.ztm3cj { animation: pulse 2s infinite; }

/* 页眉 & 导航栏 */
.zg214z {
    padding: 15px 20px;
    background: var(--bg-color);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}
.zmscok { font-size: 1.2rem; font-weight: 800; color: var(--text-heading); }
.zigwys { display: none; } /* 移动端隐藏导航文本 */
.z25wwx { padding: 8px 20px; border-radius: 8px; font-size: 0.9rem; }

/* 主视觉 Hero区 */
.zptabg { 
    text-align: center; 
    padding: 40px 20px 60px; 
    background: radial-gradient(circle at top center, var(--hero-gradient-1) 0%, var(--hero-gradient-2) 100%);
    position: relative;
    overflow: hidden;
}
.zjqrii { font-size: 2.2rem; font-weight: 800; margin-bottom: 15px; letter-spacing: -0.5px; line-height: 1.2; color: var(--text-heading);}
.zsxoo8 { font-size: 1rem; color: var(--text-muted); margin-bottom: 30px; }
.zvev6x { display: none; }

/* 动态图卡 */
.zus0kk { 
    position: relative; 
    height: 350px; 
    width: 100%; 
    margin-top: 40px; 
}
.floating-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
    color: var(--text-heading);
}
.float-icon { font-size: 2rem; }
.float-text { font-size: 0.9rem; font-weight: bold; text-align: left; }
.float-text span { font-size: 0.75rem; color: var(--primary-color); }

.card-1 { top: 0; left: 5%; animation-delay: 0s; }
.card-2 { top: 35%; right: 5%; animation-delay: 2s; }
.card-3 { bottom: 10%; left: 15%; animation-delay: 4s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* 核心优势 */
.z69ekl { padding: 60px 20px; }
.zmk6k9 { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1200px; margin: 0 auto; }
.zhyrye { background: var(--bg-card); padding: 30px 20px; border-radius: 8px; text-align: center; border: 1px solid var(--glass-border); }
.zhyrye .zxmj7b { font-size: 2.5rem; margin-bottom: 15px; }
.zhyrye h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-heading); }
.zhyrye p { font-size: 0.9rem; color: var(--text-muted); }

/* 流媒体与 AI */
.z8oa07 { padding: 40px 20px; }
.zsuzcq { display: flex; flex-direction: column; gap: 30px; max-width: 1200px; margin: 0 auto; }
.zsup6q p { margin-bottom: 20px; color: var(--text-muted); }
.z7u4uu { display: flex; flex-direction: column; gap: 15px; }
.z76726 { background: var(--bg-card); padding: 15px; border-radius: 4px; font-weight: bold; text-align: center; border: 1px solid var(--glass-border); color: var(--text-heading); }

/* 定价表 */
.zdxbll { padding: 60px 20px; }
.zojmqg { display: grid; grid-template-columns: 1fr; gap: 30px; max-width: 900px; margin: 0 auto; }
.z5bypk { background: var(--bg-card); border-radius: 8px; padding: 40px 30px; position: relative; border: 1px solid var(--glass-border); text-align: center; color: var(--text-main); }
.z5bypk.z7t73s { border: 2px solid var(--primary-color); background: var(--hero-gradient-1); }
.zdabg1 { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary-color); color: var(--text-inverse); padding: 5px 15px; border-radius: 8px; font-size: 0.8rem; font-weight: bold; }
.zj1j4n { font-size: 3.5rem; font-weight: 800; margin: 20px 0; color: var(--text-heading); }
.zj1j4n span, .zj1j4n small { font-size: 1.2rem; color: var(--text-muted); font-weight: normal; }
.zeedih { list-style: none; margin-bottom: 30px; text-align: left; }
.zeedih li { margin-bottom: 15px; font-size: 0.95rem; }

/* 用户评价 */
.z62hcp { padding: 40px 20px; }
.zyjqrr { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1000px; margin: 0 auto; }
.z1m1e0 { background: var(--bg-card); padding: 30px; border-radius: 8px; border: 1px solid var(--glass-border); }
.z77foz { color: #fbbf24; margin-bottom: 15px; font-size: 1.2rem; }
.z1m1e0 p { font-style: italic; }
.z4zr7k { color: var(--text-muted); font-size: 0.9rem; margin-top: 15px; font-weight: bold; }

/* FAQ */
.zkz4aa { padding: 40px 20px; }
.zryx9c { max-width: 800px; margin: 0 auto; }
.zmwnsf { margin-bottom: 30px; border-bottom: 1px solid var(--glass-border); padding-bottom: 20px; }
.zmwnsf h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-heading); }
.zmwnsf p { color: var(--text-muted); }

/* 页脚 */
.zqo8d7 { background: var(--footer-bg); color: var(--text-main); text-align: center; padding: 60px 20px; }
.zv2t1v { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.zv2t1v a { color: var(--text-muted); text-decoration: none; font-weight: 600; }
.zv2t1v a:hover { color: var(--text-heading); }
.copyright { color: var(--footer-text); font-size: 0.9rem; }

/* 移动端悬浮底栏 */
.zal7fz {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--bg-color);
    padding: 15px 20px; display: flex; gap: 15px;
    border-top: 1px solid var(--glass-border);
    z-index: 1000;
}
.zal7fz .zq1phb { flex: 1; }

@media (min-width: 768px) {
    body { padding-bottom: 0; }
    .zigwys { display: flex; gap: 30px; align-items: center; }
    .zigwys a { color: var(--text-main); text-decoration: none; font-weight: 600; transition: color 0.2s; }
    .zigwys a:hover { color: var(--primary-color); }
    .zpvfvk { color: var(--primary-color) !important; border-bottom: 1px dashed var(--primary-color); padding-bottom: 2px;}

    .zptabg { padding: 100px 20px 80px; text-align: left; }
    .zry2of { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
    .zlepyd { flex: 1; max-width: 50%; }
    .zus0kk { flex: 1; height: 450px; margin-top: 0; }
    .zjqrii { font-size: 3.5rem; letter-spacing: -2px; margin-bottom: 20px; }
    .zsxoo8 { font-size: 1.2rem; margin-bottom: 40px; }
    
    .zal7fz { display: none; }
    .zvev6x { display: flex; justify-content: flex-start; gap: 20px; margin-bottom: 0; align-items: center; flex-wrap: wrap; }

    .card-1 { top: 10%; left: 0; padding: 15px 30px;}
    .card-2 { top: 45%; right: 0; padding: 15px 30px;}
    .card-3 { bottom: 10%; left: 20%; padding: 15px 30px;}
    .float-text { font-size: 1.1rem; }

    .zmk6k9 { grid-template-columns: repeat(3, 1fr); }
    .zsuzcq { flex-direction: row; align-items: center; }
    .zsup6q, .z7u4uu { flex: 1; }
    .z7u4uu { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .z76726 { width: calc(50% - 15px); }

    .zojmqg { grid-template-columns: repeat(3, 1fr); max-width: 1100px; }
    .z5bypk.z7t73s { transform: scale(1.05); }
    .zyjqrr { grid-template-columns: repeat(2, 1fr); }
    .zv2t1v { flex-direction: row; justify-content: center; gap: 40px; }
}

/* 优化文章内链与外链对比度 */
.zeeovk a:not(.zq1phb):not(.zj95qq):not(.zbi2en) {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
    transition: color 0.2s;
}
.zeeovk a:not(.zq1phb):not(.zj95qq):not(.zbi2en):hover {
    color: var(--primary-hover);
}

.zbi2en {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-color);
    color: var(--text-inverse) !important;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: bold;
    margin: 0 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.zbi2en:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* ================== Deluxe Upgrades ================== */
/* Toast Notifications */
#toast-container { position: fixed; bottom: 30px; left: 30px; z-index: 9999; display: flex; flex-direction: column; gap: 15px; pointer-events: none; }
@media (max-width: 768px) {
    #toast-container { bottom: 100px; left: 15px; }
    .zmk6k9 { 
        display: grid; 
        grid-template-columns: 1fr; 
        gap: 15px; 
    }
    .zhyrye { 
        display: grid;
        grid-template-columns: 50px 1fr;
        column-gap: 15px;
        text-align: left;
        padding: 20px 15px; 
        align-items: center;
    }
    .zhyrye .zxmj7b {
        grid-column: 1;
        grid-row: 1 / span 2;
        font-size: 2.2rem;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .zhyrye h3 {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 4px;
        margin-top: 2px;
        font-size: 1.05rem;
    }
    .zhyrye p {
        grid-column: 2;
        grid-row: 2;
        margin-bottom: 0;
        font-size: 0.85rem;
    }
}
.zas5wu { background: var(--bg-card); color: var(--text-main); padding: 15px 25px; border-radius: 4px; border: 1px solid var(--glass-border); box-shadow: 0 10px 30px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 12px; transform: translateX(-150%); opacity: 0; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); font-size: 0.95rem; }
.zas5wu.show { transform: translateX(0); opacity: 1; }
.zxqo9u { background: var(--primary-color); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.zdog6k span { color: var(--primary-color); font-weight: bold; }

/* Comparison Table */
.zs4lea { padding: 80px 20px; background: var(--hero-gradient-2); }
.zrbucy { width: 100%; max-width: 900px; margin: 0 auto; border-collapse: collapse; background: var(--bg-card); border-radius: 8px; overflow: hidden; border: 1px solid var(--glass-border); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.zrbucy th, .zrbucy td { padding: 20px; text-align: center; border-bottom: 1px solid var(--glass-border); }
.zrbucy th { background: rgba(0,0,0,0.2); font-weight: 600; color: var(--text-heading); font-size: 1.1rem; }
.zrbucy td:first-child { text-align: left; font-weight: 600; color: var(--text-main); }
.zrbucy .z91w5x { background: rgba(255,255,255,0.03); border-left: 2px solid var(--primary-color); border-right: 2px solid var(--primary-color); }
.zgk465 { background: var(--primary-color) !important; color: #fff !important; }
.z8ptwx { color: #22c55e; font-size: 1.2rem; font-weight: bold; }
.zmyagz { color: var(--text-muted); font-size: 1.2rem; opacity: 0.5; }
@media (max-width: 768px) {
    .zrbucy th, .zrbucy td { padding: 12px 10px; font-size: 0.9rem; }
}

/* Dynamic Ping Panel */
.ping-panel { background: rgba(0,0,0,0.6); border: 1px solid var(--glass-border); border-radius: 8px; padding: 25px; width: 100%; max-width: 400px; font-family: 'Courier New', Courier, monospace; color: #10b981; font-size: 0.9rem; margin: 0 auto; box-shadow: 0 20px 40px rgba(0,0,0,0.3); text-align: left;}
.ping-header { display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; margin-bottom: 15px; color: #f8fafc; font-weight: bold; font-family: 'Roboto', sans-serif;}
.ping-dots { display: flex; gap: 6px; margin-right: auto;}
.ping-dot { width: 12px; height: 12px; border-radius: 50%; background: #ef4444; }
.ping-dot.yellow { background: #eab308; }
.ping-dot.green { background: #22c55e; }
.ping-line { margin: 8px 0; opacity: 0.8; display: flex; justify-content: space-between; }
.ping-ms { font-weight: bold; }

/* Styles extracted from templates */
.zeeovk { max-width: 800px; margin: 40px auto; padding: 40px; background: var(--bg-card); border-radius: 4px; border: 1px solid var(--glass-border); color: var(--text-main); line-height: 1.8;}
@media (max-width: 768px) { .zeeovk { padding: 20px; margin: 20px; } }
.zeeovk h1 { color: var(--text-heading); font-size: 2.2rem; margin-bottom: 20px; border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; line-height: 1.3;}
.zeeovk h2 { color: var(--primary-color); margin: 30px 0 15px; font-size: 1.5rem; }
.zeeovk p { margin-bottom: 20px; }
.zeeovk strong { color: var(--text-heading); }
.zbi2en { display: inline-block; background: var(--primary-color); color: var(--text-inverse); padding: 12px 24px; border-radius: 8px; font-weight: bold; text-decoration: none; margin-top: 20px; box-shadow: 0 4px 15px rgba(245,158,11,0.3); transition: transform 0.2s;}
.zbi2en:hover { transform: translateY(-2px); }

.zpdzao { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.z58t56 { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; }
.znontl { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 4px; padding: 25px; transition: transform 0.3s; display: flex; flex-direction: column;}
.znontl:hover { transform: translateY(-5px); border-color: var(--primary-color); }
.znontl h3 { color: var(--text-heading); font-size: 1.15rem; margin-bottom: 15px; line-height: 1.5; }
.znontl p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; flex: 1;}
.znontl a { display: inline-block; color: var(--primary-color); font-weight: bold; text-decoration: none; align-self: flex-start; transition: color 0.2s;}
.znontl a:hover { color: var(--text-heading); }


/* ================== ANTIGRAVITY UPDATE ================== */
.antigravity-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.antigravity-particles .particle { position: absolute; background: var(--primary-color); border-radius: 50%; box-shadow: 0 0 10px var(--primary-color); animation: floatUp linear infinite; }
@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}
.zlepyd, .zus0kk, .zjqrii, .zsxoo8, .zvev6x { position: relative; z-index: 1; }

.zhyrye { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.zhyrye:hover { transform: translateY(-15px); box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.3); border-color: var(--primary-color); }

.z5bypk { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.z5bypk:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 30px 60px -15px rgba(168, 85, 247, 0.35); z-index: 2; border-color: var(--primary-color); }
.z5bypk.z7t73s:hover { transform: translateY(-15px) scale(1.07); }

/* ================== FAT CAT THEME UPGRADES ================== */
/* Chubby Shapes & Soft Shadows */
.zq1phb, .floating-card, .zhyrye, .z76726, .z5bypk, .zrbucy, .z1m1e0, .zbi2en, .znontl, .ping-panel, .trust-badges span, .dashboard > div, .speedtest > div > div {
    border-radius: 28px !important;
}

.zq1phb {
    padding: 16px 24px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.zj95qq {
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4) !important;
}

.zhyrye, .z5bypk {
    border: 2px solid var(--glass-border) !important;
}

.z5bypk.z7t73s {
    border: 3px solid var(--primary-color) !important;
}

/* Animations for fat cat bounce */
@keyframes chubbyBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.zhyrye:hover, .z5bypk:hover {
    animation: chubbyBounce 0.5s ease-in-out;
}

/* Light theme overrides */
.zrbucy th { background: rgba(245, 158, 11, 0.1); color: var(--text-heading); }
.zrbucy td { color: var(--text-main); }
.zrbucy .z91w5x { background: #fffbeb; }

.ping-panel { background: rgba(255,255,255,0.9); border: 2px solid var(--primary-color); color: var(--text-main); }
.ping-header { color: var(--text-heading); border-bottom: 1px solid var(--glass-border); }

/* Seamless Cat Paw Background */
body, .zptabg, .zs4lea, .zdxbll, .speedtest, .zxhu84, .dashboard {
    background: transparent !important;
}

body {
    background-color: var(--bg-color) !important;
    background-image: url("data:image/svg+xml,%3Csvg width='240' height='240' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f59e0b' fill-opacity='0.05' transform='scale(0.8) translate(30, 40) rotate(-15)'%3E%3Cpath d='M50 75C35 75 25 60 30 45C35 30 65 30 70 45C75 60 65 75 50 75Z'/%3E%3Ccircle cx='25' cy='30' r='11'/%3E%3Ccircle cx='40' cy='13' r='11'/%3E%3Ccircle cx='60' cy='13' r='11'/%3E%3Ccircle cx='75' cy='30' r='11'/%3E%3C/g%3E%3Cg fill='%23f59e0b' fill-opacity='0.04' transform='scale(0.6) translate(220, 220) rotate(35)'%3E%3Cpath d='M50 75C35 75 25 60 30 45C35 30 65 30 70 45C75 60 65 75 50 75Z'/%3E%3Ccircle cx='25' cy='30' r='10'/%3E%3Ccircle cx='40' cy='15' r='10'/%3E%3Ccircle cx='60' cy='15' r='10'/%3E%3Ccircle cx='75' cy='30' r='10'/%3E%3C/g%3E%3Cg fill='%23f59e0b' fill-opacity='0.03' transform='scale(0.5) translate(380, 50) rotate(-45)'%3E%3Cpath d='M50 75C35 75 25 60 30 45C35 30 65 30 70 45C75 60 65 75 50 75Z'/%3E%3Ccircle cx='25' cy='30' r='10'/%3E%3Ccircle cx='40' cy='15' r='10'/%3E%3Ccircle cx='60' cy='15' r='10'/%3E%3Ccircle cx='75' cy='30' r='10'/%3E%3C/g%3E%3C/svg%3E") !important;
    background-attachment: fixed !important;
}


/* ================== MOBILE OPTIMIZATION & HIERARCHY ================== */
@media (max-width: 768px) {
    /* 1. Spacing and Breathing Room */
    section { padding: 45px 20px !important; }
    .zdgosg { font-size: 1.8rem !important; margin-bottom: 25px !important; line-height: 1.3 !important; }
    
    /* 2. Hero Section Hierarchy */
    .zptabg { padding: 50px 20px 40px !important; }
    .zjqrii { font-size: 2.6rem !important; line-height: 1.25 !important; }
    .zsxoo8 { font-size: 1.05rem !important; margin-bottom: 30px !important; opacity: 0.9; }
    .zus0kk { margin-top: 30px !important; height: auto !important; }
    .zus0kk img { border-radius: 24px !important; }

    /* 3. Content Blocks (Cards) */
    .zhyrye { padding: 25px 20px !important; border-radius: 24px !important; background: rgba(255, 255, 255, 0.8) !important; backdrop-filter: blur(5px); }
    .zhyrye h3 { font-size: 1.25rem !important; margin-bottom: 10px !important; color: var(--text-heading) !important; font-weight: 800; }
    .zhyrye p { font-size: 0.95rem !important; line-height: 1.7 !important; color: var(--text-main) !important; }

    /* 4. Pricing Cards Hierarchy */
    .zojmqg { gap: 20px !important; }
    .z5bypk { padding: 35px 25px !important; border-radius: 24px !important; background: rgba(255, 255, 255, 0.9) !important; }
    .zj1j4n { font-size: 2.8rem !important; margin: 15px 0 25px 0 !important; }
    .zeedih { margin-bottom: 25px !important; }
    .zeedih li { font-size: 0.95rem !important; margin-bottom: 12px !important; padding-bottom: 12px; border-bottom: 1px dashed rgba(245, 158, 11, 0.2); line-height: 1.5; }
    .zeedih li:last-child { border-bottom: none; padding-bottom: 0; }

    /* 5. Dashboard */
    .dashboard > div { padding: 20px 10px !important; background: rgba(255, 255, 255, 0.6); margin-bottom: 15px; border-radius: 20px; }
    .dashboard > div:last-child { margin-bottom: 0; }
    .dashboard [id^="dash-"] { font-size: 2.2rem !important; }
    
    /* 6. Comparison Table (Card Layout for Mobile) */
    .zs4lea { padding-left: 20px !important; padding-right: 20px !important; }
    .z9c6wy { overflow: visible !important; padding: 0 !important; }
    .zrbucy, .zrbucy tbody, .zrbucy tr, .zrbucy td { display: block !important; width: 100% !important; }
    .zrbucy { min-width: 0 !important; border: none !important; box-shadow: none !important; background: transparent !important; }
    .zrbucy thead { display: none !important; }
    .zrbucy tr { margin-bottom: 20px !important; background: rgba(255, 255, 255, 0.95) !important; border-radius: 20px !important; box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15) !important; border: 2px solid var(--glass-border) !important; overflow: hidden !important; }
    .zrbucy td { position: relative !important; padding: 15px 15px 15px 45% !important; text-align: right !important; border-bottom: 1px solid rgba(0,0,0,0.05) !important; font-size: 0.95rem; }
    .zrbucy td:last-child { border-bottom: none !important; }
    .zrbucy td::before { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); font-weight: bold; color: var(--text-heading); text-align: left; width: 40%; white-space: nowrap; }
    .zrbucy td:nth-of-type(1) { background: rgba(245, 158, 11, 0.1) !important; padding: 15px !important; text-align: center !important; font-weight: 800 !important; font-size: 1.1rem !important; border-bottom: 2px solid var(--primary-color) !important; color: var(--text-heading) !important; }
    .zrbucy td:nth-of-type(1)::before { content: none !important; }
    .zrbucy td:nth-of-type(2)::before { content: "肥猫云"; color: var(--primary-color); }
    .zrbucy td:nth-of-type(3)::before { content: "老牌高价VPN"; }
    .zrbucy td:nth-of-type(4)::before { content: "网红爆款机场"; }
    
    /* 7. Bottom Action Bar Refinement */
    body { padding-bottom: 100px !important; }
    .zal7fz { padding: 15px 15px 25px !important; border-radius: 24px 24px 0 0; box-shadow: 0 -10px 40px rgba(245, 158, 11, 0.2); background: rgba(255, 250, 240, 0.95); backdrop-filter: blur(15px); border-top: 1px solid rgba(255,255,255,0.5); }
    .zal7fz .zq1phb { padding: 14px 10px !important; border-radius: 18px !important; font-size: 1rem !important; }
}
