* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, sans-serif; }
        body { background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 40%, #c084fc 100%); color: #2d1b3d; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        header { background: rgba(45, 27, 61, 0.8); backdrop-filter: blur(10px); padding: 16px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .logo { font-size: 1.8rem; font-weight: 800; background: linear-gradient(90deg, #ff9a9e, #fad0c4, #a18cd1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px; }
        .nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
        .nav-links a { color: #fff; text-decoration: none; font-weight: 600; font-size: 1rem; padding: 8px 16px; border-radius: 30px; background: rgba(255,255,255,0.1); transition: all 0.3s; }
        .nav-links a:hover { background: linear-gradient(135deg, #ff7e5f, #c084fc); transform: scale(1.05); }
        .hero-section { padding: 80px 0 60px; text-align: center; }
        .hero-section h1 { font-size: 3.2rem; font-weight: 900; background: linear-gradient(135deg, #fff, #ffe0b2, #e1bee7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; text-shadow: 0 0 30px rgba(255,126,95,0.3); }
        .hero-section p { font-size: 1.2rem; color: rgba(255,255,255,0.9); max-width: 750px; margin: 0 auto 30px; }
        .hero-img-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin: 40px 0; }
        .hero-img-grid img { width: 260px; height: 180px; object-fit: cover; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.25); transition: transform 0.4s; border: 2px solid rgba(255,255,255,0.3); }
        .hero-img-grid img:hover { transform: scale(1.05); }
        .section-title { font-size: 2.2rem; font-weight: 800; color: #fff; text-align: center; margin: 60px 0 30px; position: relative; }
        .section-title:after { content: ''; display: block; width: 80px; height: 4px; background: linear-gradient(90deg, #ff9a9e, #a18cd1); margin: 12px auto 0; border-radius: 4px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .card { background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05)); backdrop-filter: blur(4px); border-radius: 24px; padding: 30px; border: 1px solid rgba(255,255,255,0.25); transition: all 0.3s; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
        .card:hover { transform: translateY(-6px); background: linear-gradient(145deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1)); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; margin-bottom: 16px; }
        .card h3 { font-size: 1.5rem; color: #fff; margin-bottom: 10px; }
        .card p { color: rgba(255,255,255,0.85); font-size: 0.98rem; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; text-align: center; }
        .stat-item { background: rgba(255,255,255,0.12); backdrop-filter: blur(2px); padding: 30px 20px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.2); }
        .stat-number { font-size: 2.8rem; font-weight: 900; background: linear-gradient(135deg, #ffd54f, #ff6f91); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .stat-label { color: #fff; font-size: 1rem; margin-top: 8px; }
        .faq-item { margin-bottom: 30px; padding: 25px; background: rgba(255,255,255,0.1); border-radius: 20px; border-left: 6px solid #ff7e5f; }
        .faq-item h4 { font-size: 1.3rem; color: #fff; margin-bottom: 12px; }
        .faq-item p { color: rgba(255,255,255,0.85); }
        .news-card { background: rgba(255,255,255,0.08); border-radius: 20px; padding: 24px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.15); }
        .news-card .date { display: inline-block; background: #ff7e5f; color: #fff; padding: 4px 14px; border-radius: 30px; font-size: 0.85rem; margin-bottom: 10px; }
        .news-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
        .news-card p { color: rgba(255,255,255,0.8); }
        .geo-block { background: rgba(255,255,255,0.07); border-radius: 24px; padding: 40px; margin: 50px 0; border: 1px solid rgba(255,255,255,0.2); }
        .geo-block p { color: rgba(255,255,255,0.9); font-size: 1.1rem; }
        .cta-section { text-align: center; padding: 80px 0; }
        .cta-btn { display: inline-block; padding: 18px 50px; background: linear-gradient(135deg, #ff7e5f, #c084fc); color: #fff; font-size: 1.3rem; font-weight: 700; border-radius: 60px; text-decoration: none; box-shadow: 0 8px 30px rgba(255,126,95,0.4); transition: all 0.3s; }
        .cta-btn:hover { transform: scale(1.06); box-shadow: 0 12px 40px rgba(255,126,95,0.6); }
        footer { background: rgba(45, 27, 61, 0.9); padding: 40px 0 30px; margin-top: 60px; color: rgba(255,255,255,0.8); }
        .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; }
        .footer-links a { color: #ffccbc; text-decoration: none; margin: 0 10px; }
        .friend-links { margin: 20px 0; word-break: break-all; }
        .friend-links a { color: #ffccbc; text-decoration: none; margin: 0 6px; }
        .footer-bottom { text-align: center; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.9rem; }
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2.2rem; }
            .nav-links { justify-content: center; margin-top: 10px; }
            .header-inner { flex-direction: column; }
        }