:root {
    --bg-color: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-heading: #ffffff;
    --text-inverse: #ffffff; /* Button text, always light/dark to contrast primary */
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --secondary-color: #334155;
    --glass-border: rgba(255,255,255,0.05);
    --hero-gradient-1: #334155;
    --hero-gradient-2: #0f172a;
    --footer-bg: #020617;
    --footer-text: #475569;
}

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

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

/* 按钮通用 */
.z16clw {
    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;
}
.z16clw:active { transform: scale(0.95); }
.zb263u { background: var(--primary-color); color: var(--text-inverse) !important; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.zb263u:hover { background: var(--primary-hover); transform: translateY(-2px); }
.zdx0rd { 
    background: var(--bg-card); 
    color: var(--text-heading) !important; 
    border: 1.5px solid var(--primary-color); 
}
.zdx0rd:hover { 
    background: var(--primary-color); 
    color: var(--text-inverse) !important; 
    transform: translateY(-2px); 
}
.zz2lbb { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.zz2lbb:hover { background: rgba(0,0,0,0.05); }
.zlyk56 { display: block; width: 100%; }
.zo28vk { 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); }
}
.z9x1sl { animation: pulse 2s infinite; }

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

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

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

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

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

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

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

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

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

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

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

    .zto0ja { padding: 100px 20px 80px; text-align: left; }
    .z0m7sx { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
    .zw5yzv { flex: 1; max-width: 50%; }
    .z4uytm { flex: 1; height: 450px; margin-top: 0; }
    .z0e8cs { font-size: 3.5rem; letter-spacing: -2px; margin-bottom: 20px; }
    .zmi502 { font-size: 1.2rem; margin-bottom: 40px; }
    
    .ziloc1 { display: none; }
    .zx7nbr { 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; }

    .zf29gv { grid-template-columns: repeat(3, 1fr); }
    .zja55g { flex-direction: row; align-items: center; }
    .zevb8m, .ztk3k9 { flex: 1; }
    .ztk3k9 { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .zuqdma { width: calc(50% - 15px); }

    .zm1b1b { grid-template-columns: repeat(3, 1fr); max-width: 1100px; }
    .zjr808.z7v6jy { transform: scale(1.05); }
    .zf73yj { grid-template-columns: repeat(2, 1fr); }
    .zr0stc { flex-direction: row; justify-content: center; gap: 40px; }
}

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

.zc26ez {
    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);
}
.zc26ez: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; }
    .zf29gv { 
        display: grid; 
        grid-template-columns: 1fr; 
        gap: 15px; 
    }
    .z1x7t5 { 
        display: grid;
        grid-template-columns: 50px 1fr;
        column-gap: 15px;
        text-align: left;
        padding: 20px 15px; 
        align-items: center;
    }
    .z1x7t5 .z7ax36 {
        grid-column: 1;
        grid-row: 1 / span 2;
        font-size: 2.2rem;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .z1x7t5 h3 {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 4px;
        margin-top: 2px;
        font-size: 1.05rem;
    }
    .z1x7t5 p {
        grid-column: 2;
        grid-row: 2;
        margin-bottom: 0;
        font-size: 0.85rem;
    }
}
.zvidhk { 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; }
.zvidhk.show { transform: translateX(0); opacity: 1; }
.ztkbrn { background: var(--primary-color); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.zp5q6f span { color: var(--primary-color); font-weight: bold; }

/* Comparison Table */
.zb8z4k { padding: 80px 20px; background: var(--hero-gradient-2); }
.zmsus2 { 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); }
.zmsus2 th, .zmsus2 td { padding: 20px; text-align: center; border-bottom: 1px solid var(--glass-border); }
.zmsus2 th { background: rgba(0,0,0,0.2); font-weight: 600; color: var(--text-heading); font-size: 1.1rem; }
.zmsus2 td:first-child { text-align: left; font-weight: 600; color: var(--text-main); }
.zmsus2 .ziwp08 { background: rgba(255,255,255,0.03); border-left: 2px solid var(--primary-color); border-right: 2px solid var(--primary-color); }
.z6yr9c { background: var(--primary-color) !important; color: #fff !important; }
.z0rqoh { color: #22c55e; font-size: 1.2rem; font-weight: bold; }
.z8c8xh { color: var(--text-muted); font-size: 1.2rem; opacity: 0.5; }
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .zj1wap, .zb8z4k, .zp3nf4, .z79vhe, .z8o9n8, .zr7he4, .zcfa1y, .zto0ja {
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    .z4uytm {
        height: auto !important;
        min-height: 200px !important;
        position: relative !important;
        margin-top: 20px !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .floating-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .zmsus2,
    .zmsus2 tbody,
    .zmsus2 tr,
    .zmsus2 td {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .zmsus2 thead {
        display: none !important;
    }

    .zmsus2 tr {
        background: var(--bg-card) !important;
        border: 1px solid var(--glass-border) !important;
        border-radius: 16px !important;
        padding: 16px !important;
        margin-bottom: 16px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    }

    .zmsus2 td {
        padding: 10px 0 !important;
        border-bottom: 1px dashed var(--glass-border) !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-size: 0.9rem !important;
        text-align: right !important;
    }

    .zmsus2 td:last-child {
        border-bottom: none !important;
    }

    .zmsus2 td:first-child {
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        color: var(--primary-color) !important;
        border-bottom: 2px solid var(--glass-border) !important;
        padding-bottom: 10px !important;
        margin-bottom: 8px !important;
        display: block !important;
        text-align: left !important;
    }

    .zmsus2 td:nth-child(2)::before { content: "本站优势"; font-weight: 600; color: var(--text-muted); }
    .zmsus2 td:nth-child(3)::before { content: "传统中转"; font-weight: 600; color: var(--text-muted); }
    .zmsus2 td:nth-child(4)::before { content: "普通自建"; font-weight: 600; color: var(--text-muted); }

    .zvidhk {
        transform: translateY(50px) !important;
        max-width: calc(100vw - 40px) !important;
        margin: 0 auto !important;
    }
    .zvidhk.show {
        transform: translateY(0) !important;
    }
}

/* 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 */
.za86a0 { 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) { .za86a0 { padding: 20px; margin: 20px; } }
.za86a0 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;}
.za86a0 h2 { color: var(--primary-color); margin: 30px 0 15px; font-size: 1.5rem; }
.za86a0 p { margin-bottom: 20px; }
.za86a0 strong { color: var(--text-heading); }
.zc26ez { 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;}
.zc26ez:hover { transform: translateY(-2px); }

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

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

.zjr808 { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.zjr808: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); }

/* ================== PARADIGM STYLES & BENTO GRID ================== */
/* Neo-Brutalism Theme */
body.theme-brutal {
    --primary-color: #3b82f6;
    --bg-color: #fef9c3;
    --bg-card: #ffffff;
    --text-main: #000000;
    --text-heading: #000000;
    --text-muted: #374151;
    --glass-border: #000000;
    --border-radius: 6px;
    --hero-gradient-1: #fef08a;
    --hero-gradient-2: #fef9c3;
    --secondary-color: #fef08a;
}
body.theme-brutal .zto0ja {
    background: radial-gradient(circle at top center, var(--hero-gradient-1) 0%, var(--hero-gradient-2) 100%) !important;
    border-bottom: 3px solid #000000 !important;
}
body.theme-brutal .zns79k {
    background: #ffffff !important;
    border-bottom: 3px solid #000000 !important;
}
body.theme-brutal .z0e8cs,
body.theme-brutal .zmi502,
body.theme-brutal .z77x4j {
    color: #000000 !important;
}
body.theme-brutal .zdx0rd {
    background: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
}
body.theme-brutal .z1x7t5,
body.theme-brutal .zjr808,
body.theme-brutal .z8uy0h,
body.theme-brutal .z16clw,
body.theme-brutal .bento-card,
body.theme-brutal .ping-panel,
body.theme-brutal .za86a0,
body.theme-brutal .zcs7i1 {
    border: 3px solid #000000 !important;
    box-shadow: 5px 5px 0px #000000 !important;
    border-radius: 6px !important;
}
body.theme-brutal .z16clw:hover {
    transform: translate(-3px, -3px) !important;
    box-shadow: 8px 8px 0px #000000 !important;
}

/* Apple Minimalist Theme */
body.theme-apple {
    --bg-color: #f5f5f7;
    --bg-card: #ffffff;
    --text-main: #1d1d1f;
    --text-heading: #1d1d1f;
    --text-muted: #86868b;
    --primary-color: #0071e3;
    --border-radius: 24px;
    --hero-gradient-1: #ffffff;
    --hero-gradient-2: #f5f5f7;
    --secondary-color: #e8e8ed;
}
body.theme-apple .zto0ja {
    background: radial-gradient(circle at top center, var(--hero-gradient-1) 0%, var(--hero-gradient-2) 100%) !important;
}
body.theme-apple .zns79k {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}
body.theme-apple .z0e8cs {
    color: #1d1d1f !important;
}
body.theme-apple .zmi502 {
    color: #86868b !important;
}
body.theme-apple .zdx0rd {
    background: #e8e8ed !important;
    color: #1d1d1f !important;
}
body.theme-apple .z1x7t5,
body.theme-apple .zjr808,
body.theme-apple .z8uy0h,
body.theme-apple .bento-card,
body.theme-apple .za86a0,
body.theme-apple .zcs7i1 {
    border: 1px solid rgba(0,0,0,0.06) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
    border-radius: 24px !important;
}
body.theme-apple .z16clw {
    border-radius: 980px !important;
}

/* Bento Box Hero Grid */
.bento-hero-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}
.bento-main { grid-column: span 7; display: flex; flex-direction: column; justify-content: center; }
.bento-visual { grid-column: span 5; display: flex; align-items: center; justify-content: center; }
.bento-stat { grid-column: span 4; text-align: center; }
.bento-cta { grid-column: span 8; display: flex; align-items: center; justify-content: space-between; }

@media (max-width: 900px) {
    .bento-main, .bento-visual, .bento-stat, .bento-cta { grid-column: span 12; }
}

.zjr808.z7v6jy { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.zjr808.z7v6jy:hover { transform: translateY(-15px) scale(1.07); }
