* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; }
        body { background: linear-gradient(135deg, #1a0a2e 0%, #4a1a6f 100%); color: #f5e6ff; min-height: 100vh; line-height: 1.6; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        header { background: rgba(26, 10, 46, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.1); position: sticky; top: 0; z-index: 100; padding: 16px 0; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
        .logo { font-size: 1.5rem; font-weight: 700; background: linear-gradient(135deg, #e0b0ff, #b56eff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; flex-wrap: wrap; gap: 12px 24px; }
        .nav-links a { color: #d9c0f0; text-decoration: none; font-size: 0.95rem; padding: 6px 0; border-bottom: 2px solid transparent; transition: all 0.3s; }
        .nav-links a:hover { color: #fff; border-bottom-color: #b56eff; }
        h1 { font-size: 2.4rem; font-weight: 700; text-align: center; padding: 40px 0 12px; background: linear-gradient(135deg, #f0e0ff, #c892ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .subtitle { text-align: center; max-width: 800px; margin: 0 auto 40px; color: #c9b0e0; font-size: 1.05rem; }
        .section-title { font-size: 2rem; font-weight: 600; margin: 48px 0 24px; padding-bottom: 12px; border-bottom: 2px solid rgba(181, 110, 255, 0.4); }
        .glass-card { background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 24px; margin-bottom: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); transition: transform 0.3s, box-shadow 0.3s; }
        .glass-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(74, 26, 111, 0.5); }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
        .flex-center { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
        img { max-width: 100%; border-radius: 12px; height: auto; }
        .img-card { border-radius: 16px; overflow: hidden; background: rgba(0,0,0,0.2); }
        .btn { display: inline-block; background: linear-gradient(135deg, #7a2bb5, #b56eff); color: #fff; padding: 12px 32px; border-radius: 40px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer; }
        .btn:hover { transform: scale(1.04); box-shadow: 0 6px 24px rgba(181, 110, 255, 0.4); }
        .news-list { list-style: none; }
        .news-list li { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
        .news-list li:last-child { border: none; }
        .news-date { font-size: 0.85rem; color: #a88ac0; margin-bottom: 6px; }
        .news-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; color: #e8d4ff; }
        .news-summary { color: #c0a8d8; font-size: 0.95rem; }
        .faq-item { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
        .faq-item:last-child { border: none; }
        .faq-q { font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; color: #e0c8ff; }
        .faq-a { color: #c0a8d8; }
        footer { background: rgba(10, 0, 20, 0.8); backdrop-filter: blur(12px); margin-top: 60px; padding: 40px 0 24px; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 32px; margin-bottom: 20px; }
        .footer-links a { color: #b89ad0; text-decoration: none; font-size: 0.9rem; }
        .footer-links a:hover { color: #e0c8ff; }
        .footer-info { text-align: center; color: #8a70a0; font-size: 0.85rem; line-height: 1.8; }
        .footer-info p { margin: 4px 0; }
        .footer-bottom { text-align: center; margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.8rem; color: #6a5080; }
        .stats-number { font-size: 2.8rem; font-weight: 700; background: linear-gradient(135deg, #e0b0ff, #b56eff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .highlight { background: linear-gradient(135deg, rgba(181,110,255,0.15), rgba(122,43,181,0.15)); padding: 40px 0; }
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .grid-2, .grid-3 { grid-template-columns: 1fr; }
            .header-inner { flex-direction: column; align-items: flex-start; }
            .nav-links { gap: 8px 16px; }
        }