* { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(145deg, #1a0a2e 0%, #2d1254 40%, #4a1a6f 100%);
            color: #f0e6ff;
            line-height: 1.7;
            min-height: 100vh;
        }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        nav {
            background: rgba(26, 10, 46, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo { font-size: 24px; font-weight: 700; background: linear-gradient(135deg, #d4b0ff, #a66eff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
        .nav-links a { color: #d4c0f0; text-decoration: none; font-size: 15px; font-weight: 500; transition: 0.3s; padding: 6px 0; border-bottom: 2px solid transparent; }
        .nav-links a:hover { color: #fff; border-bottom-color: #a66eff; }
        h1 { font-size: 48px; font-weight: 800; margin: 60px 0 24px; background: linear-gradient(135deg, #fff 20%, #c08aff 80%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.2; text-align: center; }
        h2 { font-size: 32px; font-weight: 700; margin: 48px 0 24px; color: #e0c8ff; position: relative; display: inline-block; }
        h2:after { content: ''; position: absolute; bottom: -8px; left: 0; width: 60px; height: 3px; background: linear-gradient(90deg, #a66eff, #6b2fa0); border-radius: 4px; }
        .glass-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .glass-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        img { max-width: 100%; height: auto; border-radius: 16px; display: block; margin: 16px 0; }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #7b3fbf, #4a1a6f);
            color: #fff;
            padding: 14px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 4px 20px rgba(122, 63, 191, 0.4);
        }
        .btn:hover { transform: scale(1.04); box-shadow: 0 8px 32px rgba(122, 63, 191, 0.6); }
        footer {
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255,255,255,0.06);
            padding: 48px 0 24px;
            margin-top: 80px;
        }
        footer a { color: #b8a0d8; text-decoration: none; }
        footer a:hover { color: #fff; }
        .footer-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
        .footer-bottom { text-align: center; font-size: 14px; color: #9a80b8; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
        .stat-number { font-size: 42px; font-weight: 800; color: #d4b0ff; }
        .stat-label { font-size: 14px; color: #b8a0d8; text-transform: uppercase; letter-spacing: 2px; }
        .faq-item { margin-bottom: 24px; }
        .faq-item h3 { font-size: 18px; color: #d4b0ff; margin-bottom: 8px; cursor: pointer; }
        .faq-item p { color: #c8b8e0; }
        .news-card { margin-bottom: 20px; }
        .news-card .date { font-size: 13px; color: #9a80b8; margin-bottom: 4px; }
        .tag { display: inline-block; background: rgba(166, 110, 255, 0.2); padding: 4px 12px; border-radius: 20px; font-size: 12px; color: #d4b0ff; }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            h1 { font-size: 32px; }
            nav .container { flex-direction: column; gap: 12px; }
        }