* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Microsoft YaHei',sans-serif; background:#121212; color:#fff; line-height:1.8; }
.header { background:linear-gradient(135deg,#B71C1C,#D32F2F); padding:24px; position:sticky; top:0; z-index:1000; border-bottom:3px solid #B71C1C; }
.header-inner { max-width:1300px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; }
.logo { font-size:36px; font-weight:900; color:white; letter-spacing:1px; }
.nav { display:flex; gap:38px; list-style:none; }
.nav a { color:white; text-decoration:none; padding:12px 26px; border-radius:6px; font-weight:600; transition:all 0.3s; }
.nav a:hover,.nav a.active { background:#B71C1C; }
.hero { padding:130px 20px; text-align:center; background:linear-gradient(180deg,#121212 0%,#1E1E1E 100%); }
.hero h1 { font-size:58px; margin-bottom:30px; color:#D32F2F; text-shadow:0 0 25px rgba(211,47,47,0.5); }
.hero p { font-size:22px; max-width:800px; margin:0 auto 48px; color:rgba(255,255,255,0.8); }
.hero-btn { display:inline-block; background:linear-gradient(135deg,#B71C1C,#D32F2F); color:white; padding:20px 58px; border-radius:8px; text-decoration:none; font-weight:bold; font-size:18px; transition:all 0.3s; border:2px solid #D32F2F; }
.hero-btn:hover { transform:scale(1.05); box-shadow:0 0 35px rgba(211,47,47,0.5); }
.section { padding:95px 20px; }
.section-alt { background:#1A1A1A; }
.section-title { text-align:center; font-size:42px; margin-bottom:65px; color:#D32F2F; }
.cards { max-width:1300px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:35px; }
.card { background:linear-gradient(145deg,#1E1E1E,#161616); padding:48px; border-radius:15px; text-align:center; border:1px solid #2A2A2A; transition:all 0.35s; }
.card:hover { transform:translateY(-12px); border-color:#D32F2F; box-shadow:0 20px 60px rgba(211,47,47,0.25); }
.card-icon { font-size:68px; margin-bottom:25px; }
.card h3 { font-size:25px; margin-bottom:20px; color:#D32F2F; }
.card p { color:rgba(255,255,255,0.7); line-height:1.8; }
.footer { background:linear-gradient(135deg,#B71C1C,#D32F2F); color:white; padding:70px 20px 40px; margin-top:90px; border-top:4px solid #B71C1C; }
.footer-inner { max-width:1300px; margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:55px; margin-bottom:45px; }
.footer-col h4 { font-size:22px; margin-bottom:28px; }
.footer-col a { color:rgba(255,255,255,0.75); text-decoration:none; display:block; margin-bottom:14px; }
.footer-col a:hover { color:white; }
.copyright { text-align:center; padding-top:35px; border-top:1px solid rgba(255,255,255,0.15); }
