* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', 'PingFang SC', Roboto, system-ui, sans-serif; background: linear-gradient(135deg, #1a0a2e 0%, #4a1a6f 100%); color: #f0e6ff; min-height: 100vh; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 导航 */
        .navbar { background: rgba(26, 10, 46, 0.85); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(74, 26, 111, 0.4); position: sticky; top: 0; z-index: 100; }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .nav-links { display: flex; gap: 32px; }
        .nav-links a { color: #d4b8f0; text-decoration: none; font-weight: 500; font-size: 1.05rem; transition: color 0.2s, border-bottom 0.2s; padding: 4px 0; border-bottom: 2px solid transparent; }
        .nav-links a:hover { color: #fff; border-bottom-color: #b280e0; }
        .logo { font-size: 1.7rem; font-weight: 700; background: linear-gradient(90deg, #e8c8ff, #b67ae0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 0.5px; }
        /* 通用卡片 */
        .card-glass { background: rgba(255, 255, 255, 0.07); backdrop-filter: blur(8px); border-radius: 24px; border: 1px solid rgba(255,255,255,0.08); padding: 32px; box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
        section { margin-bottom: 48px; }
        h1, h2, h3 { font-weight: 600; }
        h1 { font-size: 2.8rem; margin-bottom: 16px; background: linear-gradient(135deg, #f0e6ff, #c29cf0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        h2 { font-size: 2rem; margin-bottom: 24px; border-left: 4px solid #9a6ecf; padding-left: 16px; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
        .grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; }
        img { max-width: 100%; border-radius: 16px; display: block; }
        .img-cover { object-fit: cover; height: 200px; width: 100%; }
        .btn-cta { display: inline-block; background: linear-gradient(135deg, #7a3cb0, #b37ae0); color: #fff; padding: 14px 40px; border-radius: 50px; font-weight: 600; font-size: 1.1rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; border: none; cursor: pointer; }
        .btn-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(138, 74, 207, 0.5); }
        .footer { background: rgba(0,0,0,0.3); padding: 40px 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer a { color: #c6a8e8; text-decoration: none; }
        .footer a:hover { text-decoration: underline; }
        .footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
        .friend-links { margin-top: 20px; text-align: center; font-size: 0.95rem; }
        .friend-links a { margin: 0 8px; }
        .news-item { background: rgba(255,255,255,0.04); border-radius: 16px; padding: 24px; margin-bottom: 20px; border-left: 4px solid #9a6ecf; transition: background 0.2s; }
        .news-item:hover { background: rgba(255,255,255,0.08); }
        .news-date { font-size: 0.85rem; color: #b89ad8; margin-bottom: 8px; }
        .faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
        .faq-question { font-weight: 600; font-size: 1.2rem; margin-bottom: 12px; color: #e4cafc; }
        .faq-answer { line-height: 1.7; color: #d0c0e8; }
        /* Hero */
        .hero-section { display: flex; align-items: center; gap: 40px; padding: 48px 0; flex-wrap: wrap; }
        .hero-text { flex: 1; min-width: 280px; }
        .hero-image { flex: 1; min-width: 280px; }
        .geo-text { font-size: 1.1rem; line-height: 1.8; color: #dac8f0; }
        .tagline { font-size: 1.3rem; margin-bottom: 24px; color: #d0b6ee; }
        .stats-number { font-size: 2.4rem; font-weight: 700; color: #d6b8ff; }
        .stats-label { color: #bca0dc; }
        .partner-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
        .partner-item { background: rgba(255,255,255,0.04); border-radius: 16px; padding: 16px 24px; min-width: 140px; text-align: center; }
        .testimonial-card { background: rgba(255,255,255,0.05); border-radius: 20px; padding: 28px; }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .hero-section { flex-direction: column; }
            .nav-links { gap: 16px; flex-wrap: wrap; }
            h1 { font-size: 2rem; }
        }
        .extra-spacing { margin-top: 16px; }