:root {
    --bg-color: #fafafa;
    --bg-card: #ffffff;
    --text-main: #27272a;
    --text-muted: #71717a;
    --text-heading: #18181b;
    --text-inverse: #ffffff; /* Button text, always light/dark to contrast primary */
    --primary-color: #f43f5e;
    --primary-hover: #e11d48;
    --secondary-color: #f4f4f5;
    --glass-border: rgba(0,0,0,0.08);
    --hero-gradient-1: #f4f4f5;
    --hero-gradient-2: #fafafa;
    --footer-bg: #f4f4f5;
    --footer-text: #71717a;
}

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

body {
    font-family: 'Noto Sans SC', 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;
}

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

/* 按钮通用 */
.zrkvay {
    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;
}
.zrkvay:active { transform: scale(0.95); }
.zpg744 { background: var(--primary-color); color: var(--text-inverse) !important; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.zpg744:hover { background: var(--primary-hover); transform: translateY(-2px); }
.zrbw4b { background: var(--secondary-color); color: var(--text-main); border: 1px solid var(--glass-border); }
.zrbw4b:hover { opacity: 0.8; transform: translateY(-2px); }
.zybd69 { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.zybd69:hover { background: rgba(0,0,0,0.05); }
.zfpk05 { display: block; width: 100%; }
.zauph2 { 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); }
}
.z8a7d4 { animation: pulse 2s infinite; }

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

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

/* 动态图卡 */
.z8l67l { 
    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); }
}

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

/* 流媒体与 AI */
.z2va98 { padding: 40px 20px; }
.zpg5kh { display: flex; flex-direction: column; gap: 30px; max-width: 1200px; margin: 0 auto; }
.zhwvce p { margin-bottom: 20px; color: var(--text-muted); }
.zfoina { display: flex; flex-direction: column; gap: 15px; }
.z4goma { 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); }

/* 定价表 */
.zk7rsx { padding: 60px 20px; }
.z1yg0g { display: grid; grid-template-columns: 1fr; gap: 30px; max-width: 900px; margin: 0 auto; }
.zvyy08 { 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); }
.zvyy08.zswe0s { border: 2px solid var(--primary-color); background: var(--hero-gradient-1); }
.z5oetl { 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; }
.z0iw2l { font-size: 3.5rem; font-weight: 800; margin: 20px 0; color: var(--text-heading); }
.z0iw2l span, .z0iw2l small { font-size: 1.2rem; color: var(--text-muted); font-weight: normal; }
.zoh6a5 { list-style: none; margin-bottom: 30px; text-align: left; }
.zoh6a5 li { margin-bottom: 15px; font-size: 0.95rem; }

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

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

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

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

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

    .zcfqw4 { padding: 100px 20px 80px; text-align: left; }
    .zhvd2v { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
    .zanbiz { flex: 1; max-width: 50%; }
    .z8l67l { flex: 1; height: 450px; margin-top: 0; }
    .z1g3h7 { font-size: 3.5rem; letter-spacing: -2px; margin-bottom: 20px; }
    .z8wifs { font-size: 1.2rem; margin-bottom: 40px; }
    
    .z53o61 { display: none; }
    .zx4zse { display: flex; justify-content: flex-start; gap: 20px; margin-bottom: 0; }

    .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; }

    .zy8ttc { grid-template-columns: repeat(3, 1fr); }
    .zpg5kh { flex-direction: row; align-items: center; }
    .zhwvce, .zfoina { flex: 1; }
    .zfoina { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .z4goma { width: calc(50% - 15px); }

    .z1yg0g { grid-template-columns: repeat(3, 1fr); max-width: 1100px; }
    .zvyy08.zswe0s { transform: scale(1.05); }
    .zy6q9n { grid-template-columns: repeat(2, 1fr); }
    .z771ct { flex-direction: row; justify-content: center; gap: 40px; }
}

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

.z3nrq3 {
    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);
}
.z3nrq3: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; }
}
.zc8e56 { 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); backdrop-filter: blur(10px); 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; }
.zc8e56.show { transform: translateX(0); opacity: 1; }
.zak4xb { background: var(--primary-color); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.zjwtux span { color: var(--primary-color); font-weight: bold; }

/* Comparison Table */
.zeikjv { padding: 80px 20px; background: var(--hero-gradient-2); }
.zlzaev { 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); }
.zlzaev th, .zlzaev td { padding: 20px; text-align: center; border-bottom: 1px solid var(--glass-border); }
.zlzaev th { background: rgba(0,0,0,0.2); font-weight: 600; color: var(--text-heading); font-size: 1.1rem; }
.zlzaev td:first-child { text-align: left; font-weight: 600; color: var(--text-main); }
.zlzaev .zv7vp4 { background: rgba(255,255,255,0.03); border-left: 2px solid var(--primary-color); border-right: 2px solid var(--primary-color); }
.z7hdjn { background: var(--primary-color) !important; color: #fff !important; }
.zj3fyx { color: #22c55e; font-size: 1.2rem; font-weight: bold; }
.zdltnc { color: var(--text-muted); font-size: 1.2rem; opacity: 0.5; }
@media (max-width: 768px) {
    .zlzaev th, .zlzaev td { padding: 12px 10px; font-size: 0.9rem; }
}

/* Dynamic Ping Panel */
.ping-panel { background: rgba(0,0,0,0.6); backdrop-filter: blur(12px); 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: 'Noto Sans SC', 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 */
.z3azgv { 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) { .z3azgv { padding: 20px; margin: 20px; } }
.z3azgv 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;}
.z3azgv h2 { color: var(--primary-color); margin: 30px 0 15px; font-size: 1.5rem; }
.z3azgv p { margin-bottom: 20px; }
.z3azgv strong { color: var(--text-heading); }
.z3nrq3 { 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;}
.z3nrq3:hover { transform: translateY(-2px); }

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