* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif; background: linear-gradient(135deg, #1a0a2e 0%, #4a1a6f 100%); color: #f0e6ff; min-height: 100vh; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        nav { background: rgba(26, 10, 46, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding: 14px 0; position: sticky; top: 0; z-index: 100; }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .logo { font-size: 1.4rem; font-weight: 700; background: linear-gradient(135deg, #d4b0ff, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 1px; }
        .nav-links { display: flex; gap: 12px; flex-wrap: wrap; }
        .nav-links a { color: #e9d5ff; text-decoration: none; padding: 6px 18px; border-radius: 40px; font-size: 0.95rem; transition: 0.3s; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); }
        .nav-links a:hover { background: rgba(168, 85, 247, 0.25); border-color: #a855f7; color: #fff; }
        h1 { font-size: 2.6rem; font-weight: 700; text-align: center; padding: 50px 20px 10px; background: linear-gradient(135deg, #f0e6ff, #c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        h2 { font-size: 1.8rem; margin: 40px 0 20px; border-left: 5px solid #a855f7; padding-left: 18px; color: #e9d5ff; }
        .card { background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 28px; padding: 28px 24px; margin-bottom: 30px; border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 8px 32px rgba(0,0,0,0.3); transition: transform 0.2s; }
        .card:hover { transform: translateY(-3px); border-color: rgba(168, 85, 247, 0.3); }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
        img { max-width: 100%; border-radius: 20px; display: block; margin: 12px 0; box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
        .stats-box { text-align: center; padding: 18px; background: rgba(168, 85, 247, 0.08); border-radius: 24px; border: 1px solid rgba(168, 85, 247, 0.15); }
        .stats-number { font-size: 2.2rem; font-weight: 700; color: #c084fc; }
        .faq-item { margin-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 18px; }
        .faq-question { font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; color: #d8b4fe; }
        .news-item { margin-bottom: 24px; }
        .news-date { font-size: 0.85rem; color: #a78bfa; margin-bottom: 6px; }
        .news-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 6px; }
        .news-summary { color: #c4b5d4; }
        .btn { display: inline-block; background: linear-gradient(135deg, #7c3aed, #a855f7); color: #fff; padding: 12px 32px; border-radius: 40px; text-decoration: none; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; }
        .btn:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4); }
        footer { background: rgba(0,0,0,0.4); backdrop-filter: blur(8px); padding: 40px 20px 20px; margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; color: #b8a9c9; font-size: 0.9rem; }
        footer a { color: #c084fc; text-decoration: none; margin: 0 6px; }
        footer a:hover { text-decoration: underline; }
        .friend-links { margin: 20px 0 10px; word-break: break-word; }
        .friend-links a { margin: 0 4px; }
        .tag { display: inline-block; background: rgba(168, 85, 247, 0.2); padding: 2px 14px; border-radius: 40px; font-size: 0.75rem; color: #d8b4fe; margin-right: 6px; }
        @media (max-width: 768px) { h1 { font-size: 1.8rem; } .grid-2, .grid-3 { grid-template-columns: 1fr; } .nav-links { margin-top: 12px; justify-content: center; } }
        .hero-img { max-height: 320px; object-fit: cover; width: 100%; border-radius: 28px; }
        .glow-text { text-shadow: 0 0 20px rgba(168,85,247,0.3); }