* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
        body { background: #0a0f1a; color: #e2e8f0; line-height: 1.6; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* glow card */
        .card-glow { background: linear-gradient(145deg, #111827, #1e293b); border: 1px solid rgba(59,130,246,0.2); border-radius: 20px; padding: 24px; box-shadow: 0 8px 32px rgba(59,130,246,0.08); transition: 0.3s; }
        .card-glow:hover { border-color: #3b82f6; box-shadow: 0 0 30px rgba(59,130,246,0.15); }
        /* nav */
        nav { background: rgba(10,15,26,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(59,130,246,0.2); position: sticky; top: 0; z-index: 100; padding: 16px 0; }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
        .logo { font-size: 1.6rem; font-weight: 700; background: linear-gradient(135deg, #3b82f6, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.5px; }
        .nav-links { display: flex; gap: 8px 20px; flex-wrap: wrap; }
        .nav-links a { color: #94a3b8; text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 6px 0; border-bottom: 2px solid transparent; transition: 0.2s; }
        .nav-links a:hover { color: #3b82f6; border-bottom-color: #3b82f6; }
        /* hero */
        .hero { padding: 60px 0 40px; text-align: center; }
        .hero h1 { font-size: 2.4rem; font-weight: 800; background: linear-gradient(to right, #f0f9ff, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; }
        .hero p { font-size: 1.1rem; color: #cbd5e1; max-width: 800px; margin: 0 auto 30px; }
        .hero-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 30px; }
        .hero-card { padding: 20px; border-radius: 16px; background: rgba(30,41,59,0.6); border: 1px solid rgba(59,130,246,0.15); }
        .hero-card img { width: 100%; height: 100px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }
        .hero-card h3 { font-size: 1rem; color: #94a3b8; }
        /* sections */
        section { padding: 48px 0; }
        .section-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 24px; color: #f1f5f9; position: relative; display: inline-block; }
        .section-title::after { content: ''; display: block; width: 50%; height: 3px; background: #3b82f6; margin-top: 8px; border-radius: 4px; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .flex-center { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; }
        .stat-number { font-size: 2.8rem; font-weight: 800; color: #3b82f6; }
        .stat-label { color: #94a3b8; font-size: 0.95rem; }
        .btn-primary { background: #3b82f6; color: white; padding: 12px 32px; border-radius: 40px; font-weight: 600; text-decoration: none; display: inline-block; transition: 0.3s; border: none; cursor: pointer; }
        .btn-primary:hover { background: #2563eb; box-shadow: 0 0 30px rgba(59,130,246,0.4); }
        .news-item { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(59,130,246,0.1); }
        .news-item h3 { font-size: 1.1rem; color: #e2e8f0; margin-bottom: 6px; }
        .news-item .date { color: #64748b; font-size: 0.85rem; }
        .news-item p { color: #94a3b8; margin-top: 6px; }
        .faq-item { margin-bottom: 20px; }
        .faq-item h3 { color: #60a5fa; font-size: 1.1rem; margin-bottom: 8px; cursor: pointer; }
        .faq-item p { color: #94a3b8; }
        .partner-links { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: center; margin-top: 20px; }
        .partner-links a { color: #60a5fa; text-decoration: none; border-bottom: 1px solid transparent; }
        .partner-links a:hover { border-bottom-color: #60a5fa; }
        footer { background: #0f172a; border-top: 1px solid rgba(59,130,246,0.2); padding: 40px 0; margin-top: 40px; }
        footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
        footer a { color: #94a3b8; text-decoration: none; }
        footer a:hover { color: #3b82f6; }
        .footer-bottom { border-top: 1px solid rgba(59,130,246,0.1); margin-top: 30px; padding-top: 20px; text-align: center; color: #64748b; font-size: 0.9rem; }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .hero h1 { font-size: 1.8rem; }
            .nav-links { justify-content: center; }
        }
        img { max-width: 100%; height: auto; display: block; border-radius: 12px; }