/* 超级浏览器风格 - 深色科技风、玻璃拟物化、高转化 */
:root {
    --bg-dark: #0b0f19;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --primary: #6366f1; /* 科技靛蓝 */
    --accent: #ec4899; /* 扑克粉红/高亮 */
    --accent-hover: #db2777;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --glow: 0 0 20px rgba(99, 102, 241, 0.3);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: var(--primary); transition: all 0.3s ease; }
a:hover { color: var(--accent); }
.z00b08container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 头部导航 */
.z00b08header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(11, 15, 25, 0.8); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); }
.z00b08header_inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.z00b08logo { font-size: 24px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.z00b08logo span { color: var(--accent); }
.z00b08nav { display: flex; gap: 30px; }
.z00b08nav a { color: var(--text-muted); font-size: 15px; font-weight: 500; }
.z00b08nav a:hover, .z00b08nav a.current { color: var(--white); }
.z00b08btn_dl { background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white) !important; padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 14px; box-shadow: var(--glow); transition: transform 0.2s, box-shadow 0.2s; }
.z00b08btn_dl:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(236, 72, 153, 0.5); color: var(--white) !important; }

/* 首屏 Hero */
.z00b08hero { padding: 160px 0 100px; text-align: center; position: relative; background: radial-gradient(circle at top center, rgba(99, 102, 241, 0.15), transparent 60%); }
.z00b08hero h1 { font-size: 56px; font-weight: 800; margin-bottom: 20px; background: linear-gradient(to right, var(--white), var(--text-muted)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.z00b08hero p { font-size: 20px; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px; }
.z00b08hero_btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.z00b08btn_secondary { background: var(--bg-card); border: 1px solid var(--border-color); color: var(--white) !important; padding: 12px 28px; border-radius: 50px; font-weight: 600; backdrop-filter: blur(5px); }
.z00b08btn_secondary:hover { border-color: var(--primary); background: rgba(99, 102, 241, 0.1); }
.z00b08hero_img { margin-top: 60px; width: 100%; max-width: 900px; height: 400px; margin-left: auto; margin-right: auto; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

/* 特性区块 */
.z00b08features { padding: 100px 0; }
.z00b08section_title { text-align: center; font-size: 36px; font-weight: 700; margin-bottom: 60px; }
.z00b08grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.z00b08card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 40px 30px; transition: all 0.3s ease; }
.z00b08card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--glow); }
.z00b08card_icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 12px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.z00b08card h3 { font-size: 20px; margin-bottom: 15px; color: var(--white); }
.z00b08card p { color: var(--text-muted); font-size: 15px; }

/* 列表/文章通用布局 */
.z00b08page_wrap { padding: 120px 0 60px; min-height: 80vh; }
.z00b08breadcrumb { margin-bottom: 30px; font-size: 14px; color: var(--text-muted); }
.z00b08breadcrumb a { color: var(--text-muted); }
.z00b08breadcrumb a:hover { color: var(--accent); }
.z00b08layout { display: flex; gap: 40px; }
.z00b08main_content { flex: 1; }
.z00b08sidebar { width: 300px; flex-shrink: 0; }

/* 文章列表 */
.z00b08list_item { display: flex; gap: 20px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 20px; margin-bottom: 20px; transition: all 0.3s; }
.z00b08list_item:hover { border-color: var(--primary); }
.z00b08list_thumb { width: 200px; height: 140px; background: #1e293b; border-radius: 8px; flex-shrink: 0; overflow: hidden; }
.z00b08list_thumb img { width: 100%; height: 100%; object-fit: cover; }
.z00b08list_info { flex: 1; display: flex; flex-direction: column; }
.z00b08list_info h2 { font-size: 20px; margin-bottom: 10px; }
.z00b08list_info h2 a { color: var(--white); }
.z00b08list_info h2 a:hover { color: var(--accent); }
.z00b08list_info p { color: var(--text-muted); font-size: 14px; flex: 1; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.z00b08list_meta { font-size: 12px; color: var(--text-muted); }

/* 侧边栏 */
.z00b08side_card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 25px; margin-bottom: 30px; }
.z00b08side_card h3 { font-size: 18px; margin-bottom: 20px; color: var(--white); border-bottom: 1px solid var(--border-color); padding-bottom: 10px; }
.z00b08side_dl { text-align: center; }
.z00b08side_dl p { color: var(--text-muted); margin-bottom: 20px; font-size: 14px; }
.z00b08side_dl .z00b08btn_dl { display: block; width: 100%; text-align: center; padding: 14px; }

/* 分页 */
.z00b08pagination { display: flex; gap: 10px; margin-top: 40px; justify-content: center; }
.z00b08pagination a { background: var(--bg-card); border: 1px solid var(--border-color); color: var(--text-muted); padding: 8px 16px; border-radius: 6px; font-size: 14px; }
.z00b08pagination a:hover, .z00b08pagination a.current { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* 文章详情 */
.z00b08article_header { margin-bottom: 40px; }
.z00b08article_header h1 { font-size: 32px; margin-bottom: 15px; color: var(--white); }
.z00b08article_meta { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.z00b08article_body { color: var(--text-main); font-size: 16px; line-height: 1.8; }
.z00b08article_body p { margin-bottom: 20px; }
.z00b08article_body img { max-width: 100%; border-radius: 8px; margin: 20px 0; }
.z00b08prenext { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border-color); display: flex; justify-content: space-between; font-size: 14px; }
.z00b08tags { margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap; }
.z00b08tags a { background: rgba(99, 102, 241, 0.1); color: var(--primary); padding: 5px 12px; border-radius: 20px; font-size: 13px; border: 1px solid rgba(99, 102, 241, 0.2); }

/* 底部 */
.z00b08footer { background: #05080f; border-top: 1px solid var(--border-color); padding: 60px 0 30px; margin-top: 60px; }
.z00b08footer_grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.z00b08footer_col h4 { color: var(--white); font-size: 16px; margin-bottom: 20px; }
.z00b08footer_col a { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }
.z00b08footer_col a:hover { color: var(--accent); }
.z00b08copyright { text-align: center; color: var(--text-muted); font-size: 13px; border-top: 1px solid var(--border-color); padding-top: 30px; }

/* 悬浮按钮 */
.z00b08fixed_dl { position: fixed; bottom: 40px; right: 40px; width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white) !important; font-weight: bold; box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4); z-index: 999; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(236, 72, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); } }

/* 响应式 */
@media (max-width: 992px) {
    .z00b08grid { grid-template-columns: repeat(2, 1fr); }
    .z00b08layout { flex-direction: column; }
    .z00b08sidebar { width: 100%; }
    .z00b08footer_grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .z00b08nav { display: none; }
    .z00b08hero h1 { font-size: 36px; }
    .z00b08grid { grid-template-columns: 1fr; }
    .z00b08list_item { flex-direction: column; }
    .z00b08list_thumb { width: 100%; height: 180px; }
    .z00b08footer_grid { grid-template-columns: 1fr; }
    .z00b08fixed_dl { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 14px; }
}