:root {
    --bg-color: #f3f4f6;
    --bg-card: #ffffff;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --text-heading: #111827;
    --text-inverse: #ffffff; /* Button text, always light/dark to contrast primary */
    --primary-color: #0ea5e9;
    --primary-hover: #0284c7;
    --secondary-color: #e5e7eb;
    --glass-border: rgba(0,0,0,0.08);
    --hero-gradient-1: #e5e7eb;
    --hero-gradient-2: #f3f4f6;
    --footer-bg: #e5e7eb;
    --footer-text: #4b5563;
}

* { 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;
}

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

/* 按钮通用 */
.ztljwn {
    display: inline-block;
    padding: 16px 12px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
    cursor: pointer;
    text-align: center;
}
.ztljwn:active { transform: scale(0.95); }
.zxect9 { background: var(--primary-color); color: var(--text-inverse) !important; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.zxect9:hover { background: var(--primary-hover); transform: translateY(-2px); }
.zx8a57 { background: var(--secondary-color); color: var(--text-main); border: 1px solid var(--glass-border); }
.zx8a57:hover { opacity: 0.8; transform: translateY(-2px); }
.zm9z5s { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.zm9z5s:hover { background: rgba(0,0,0,0.05); }
.zsrue2 { display: block; width: 100%; }
.zdos7c { 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); }
}
.z3dwoc { animation: pulse 2s infinite; }

/* 页眉 & 导航栏 */
.z5t418 {
    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;
}
.z062xw { font-size: 1.2rem; font-weight: 800; color: var(--text-heading); }
.zglc50 { display: none; } /* 移动端隐藏导航文本 */
.zhjlnm { padding: 8px 20px; border-radius: 8px; font-size: 0.9rem; }

/* 主视觉 Hero区 */
.zj5t6f { 
    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;
}
.zs0es3 { font-size: 2.2rem; font-weight: 800; margin-bottom: 15px; letter-spacing: -0.5px; line-height: 1.2; color: var(--text-heading);}
.zh6f2b { font-size: 1rem; color: var(--text-muted); margin-bottom: 30px; }
.zalu7j { display: none; }

/* 动态图卡 */
.z7wdz6 { 
    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: 16px;
    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); }
}

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

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

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

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

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

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

/* 移动端悬浮底栏 */
.z6hajb {
    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;
}
.z6hajb .ztljwn { flex: 1; }

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

    .zj5t6f { padding: 100px 20px 80px; text-align: left; }
    .zrj82c { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
    .zfgk7y { flex: 1; max-width: 50%; }
    .z7wdz6 { flex: 1; height: 450px; margin-top: 0; }
    .zs0es3 { font-size: 3.5rem; letter-spacing: -2px; margin-bottom: 20px; }
    .zh6f2b { font-size: 1.2rem; margin-bottom: 40px; }
    
    .z6hajb { display: none; }
    .zalu7j { 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; }

    .zugq8e { grid-template-columns: repeat(3, 1fr); }
    .zmmomn { flex-direction: row; align-items: center; }
    .z0zf0t, .zexmqt { flex: 1; }
    .zexmqt { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .zcimlq { width: calc(50% - 15px); }

    .zu05o5 { grid-template-columns: repeat(3, 1fr); max-width: 1100px; }
    .zujg3j.z499q9 { transform: scale(1.05); }
    .zq3god { grid-template-columns: repeat(2, 1fr); }
    .zu502s { flex-direction: row; justify-content: center; gap: 40px; }
}

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

.zxovge {
    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);
}
.zxovge: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; }
    .zugq8e { 
        display: grid; 
        grid-template-columns: 1fr; 
        gap: 15px; 
    }
    .z9cicx { 
        display: grid;
        grid-template-columns: 50px 1fr;
        column-gap: 15px;
        text-align: left;
        padding: 20px 15px; 
        align-items: center;
    }
    .z9cicx .zssfu2 {
        grid-column: 1;
        grid-row: 1 / span 2;
        font-size: 2.2rem;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .z9cicx h3 {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 4px;
        margin-top: 2px;
        font-size: 1.05rem;
    }
    .z9cicx p {
        grid-column: 2;
        grid-row: 2;
        margin-bottom: 0;
        font-size: 0.85rem;
    }
}
.zfdn2p { background: var(--bg-card); color: var(--text-main); padding: 15px 25px; border-radius: 12px; 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; }
.zfdn2p.show { transform: translateX(0); opacity: 1; }
.zjou18 { background: var(--primary-color); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.zjaxk3 span { color: var(--primary-color); font-weight: bold; }

/* Comparison Table */
.zrn2sq { padding: 80px 20px; background: var(--hero-gradient-2); }
.zithiv { width: 100%; max-width: 900px; margin: 0 auto; border-collapse: collapse; background: var(--bg-card); border-radius: 16px; overflow: hidden; border: 1px solid var(--glass-border); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.zithiv th, .zithiv td { padding: 20px; text-align: center; border-bottom: 1px solid var(--glass-border); }
.zithiv th { background: rgba(0,0,0,0.2); font-weight: 600; color: var(--text-heading); font-size: 1.1rem; }
.zithiv td:first-child { text-align: left; font-weight: 600; color: var(--text-main); }
.zithiv .z1fkrf { background: rgba(255,255,255,0.03); border-left: 2px solid var(--primary-color); border-right: 2px solid var(--primary-color); }
.zzadl1 { background: var(--primary-color) !important; color: #fff !important; }
.z7k1e0 { color: #22c55e; font-size: 1.2rem; font-weight: bold; }
.zl5ngs { color: var(--text-muted); font-size: 1.2rem; opacity: 0.5; }
@media (max-width: 768px) {
    .zithiv th, .zithiv 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: 16px; 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 */
.zp78hu { max-width: 800px; margin: 40px auto; padding: 40px; background: var(--bg-card); border-radius: 12px; border: 1px solid var(--glass-border); color: var(--text-main); line-height: 1.8;}
@media (max-width: 768px) { .zp78hu { padding: 20px; margin: 20px; } }
.zp78hu 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;}
.zp78hu h2 { color: var(--primary-color); margin: 30px 0 15px; font-size: 1.5rem; }
.zp78hu p { margin-bottom: 20px; }
.zp78hu strong { color: var(--text-heading); }
.zxovge { 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;}
.zxovge:hover { transform: translateY(-2px); }

.zqepn2 { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.zyx07z { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; }
.zyo0js { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 12px; padding: 25px; transition: transform 0.3s; display: flex; flex-direction: column;}
.zyo0js:hover { transform: translateY(-5px); border-color: var(--primary-color); }
.zyo0js h3 { color: var(--text-heading); font-size: 1.15rem; margin-bottom: 15px; line-height: 1.5; }
.zyo0js p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; flex: 1;}
.zyo0js a { display: inline-block; color: var(--primary-color); font-weight: bold; text-decoration: none; align-self: flex-start; transition: color 0.2s;}
.zyo0js 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; }
}
.zfgk7y, .z7wdz6, .zs0es3, .zh6f2b, .zalu7j { position: relative; z-index: 1; }

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

.zujg3j { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.zujg3j: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); }
.zujg3j.z499q9 { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.zujg3j.z499q9:hover { transform: translateY(-15px) scale(1.07); }
