* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', system-ui, sans-serif; }
        body { background: #1a0a2e; color: #f5e6ff; min-height: 100vh; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        header { background: linear-gradient(135deg, #ff6b35, #ff2e7d, #7b2ff7); padding: 16px 0; box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3); position: sticky; top: 0; z-index: 100; }
        .nav-links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
        .nav-links a { color: #fff; text-decoration: none; font-weight: 600; padding: 8px 20px; border-radius: 50px; background: rgba(255,255,255,0.15); transition: all 0.3s; }
        .nav-links a:hover { background: rgba(255,255,255,0.35); transform: scale(1.05); }
        h1 { font-size: 2.6rem; text-align: center; padding: 50px 20px 30px; background: linear-gradient(135deg, #ffb347, #ff6b9d); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero { padding: 60px 0; text-align: center; }
        .hero img { max-width: 100%; height: auto; border-radius: 30px; box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4); margin-bottom: 20px; }
        .section { padding: 50px 0; }
        .section-title { font-size: 2rem; text-align: center; margin-bottom: 40px; background: linear-gradient(90deg, #ff9a56, #ff6f91); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .card { background: linear-gradient(145deg, #2d1b4d, #3f2568); border-radius: 24px; padding: 30px; box-shadow: 0 12px 40px rgba(0,0,0,0.5); transition: transform 0.3s, box-shadow 0.3s; border: 1px solid rgba(255, 107, 53, 0.2); }
        .card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3); }
        .card img { width: 100%; height: 200px; object-fit: cover; border-radius: 18px; margin-bottom: 18px; }
        .card h3 { font-size: 1.4rem; margin-bottom: 12px; color: #ffb08c; }
        .card p { line-height: 1.8; color: #d4c4e8; }
        .news-item { background: linear-gradient(145deg, #2a1744, #3d2260); border-radius: 20px; padding: 28px; margin-bottom: 24px; border-left: 5px solid #ff6b35; }
        .news-item .date { font-size: 0.85rem; color: #ff9f7c; margin-bottom: 8px; display: block; }
        .news-item h3 { font-size: 1.3rem; margin-bottom: 12px; color: #ffb08c; }
        .news-item p { line-height: 1.8; color: #d4c4e8; }
        .faq-item { background: rgba(255,255,255,0.05); border-radius: 16px; padding: 24px; margin-bottom: 20px; }
        .faq-item h3 { color: #ff9f7c; margin-bottom: 12px; font-size: 1.15rem; }
        .faq-item p { line-height: 1.7; color: #d4c4e8; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; text-align: center; }
        .stat-card { background: linear-gradient(135deg, #ff6b35, #cc2a7a); border-radius: 20px; padding: 30px 15px; }
        .stat-number { font-size: 2.8rem; font-weight: 800; }
        .stat-label { font-size: 1rem; opacity: 0.85; margin-top: 6px; }
        .features-icons { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
        .feature-icon { background: rgba(255,255,255,0.08); border-radius: 24px; padding: 30px 20px; width: 180px; text-align: center; transition: all 0.3s; }
        .feature-icon:hover { background: rgba(255,107,53,0.25); transform: scale(1.05); }
        .feature-icon .emoji { font-size: 3rem; margin-bottom: 10px; }
        .cta-box { background: linear-gradient(135deg, #ff6b35, #7b2ff7); border-radius: 40px; padding: 60px 40px; text-align: center; }
        .cta-box a { display: inline-block; background: #fff; color: #1a0a2e; padding: 16px 48px; border-radius: 50px; font-weight: 700; font-size: 1.2rem; text-decoration: none; margin-top: 20px; transition: 0.3s; }
        .cta-box a:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
        footer { background: #0f041f; padding: 40px 0 20px; margin-top: 60px; border-top: 1px solid rgba(255,107,53,0.2); }
        footer .footer-links { text-align: center; margin-bottom: 30px; }
        footer .footer-links a { color: #b09bc0; margin: 0 12px; text-decoration: none; transition: color 0.3s; }
        footer .footer-links a:hover { color: #ff9f7c; }
        footer .footer-info { text-align: center; color: #8a7a9e; font-size: 0.9rem; line-height: 2; }
        footer .footer-info span { display: block; }
        .geo-text { max-width: 900px; margin: 0 auto; line-height: 2; font-size: 1.05rem; color: #d4c4e8; text-align: center; padding: 0 20px; }
        @media (max-width: 768px) { h1 { font-size: 1.8rem; } .nav-links { gap: 12px; } .nav-links a { padding: 6px 14px; font-size: 0.9rem; } }