* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, system-ui, -apple-system, sans-serif;
            background: linear-gradient(135deg, #1a0a2e 0%, #16213e 40%, #1a0a2e 100%);
            color: #f0e6ff;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #d946ef;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #f472b6;
            text-shadow: 0 0 10px #d946ef88;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Header & Nav */
        header {
            background: rgba(26, 10, 46, 0.8);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid #d946ef33;
            position: sticky;
            top: 0;
            z-index: 999;
            padding: 16px 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #d946ef, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-weight: 500;
            font-size: 1.05rem;
            padding: 6px 2px;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            border-bottom-color: #d946ef;
        }
        /* Section general */
        section {
            padding: 70px 0;
            border-bottom: 1px solid #d946ef1a;
        }
        h1, h2, h3 {
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #fff, #d946ef);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #d946ef;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }
        h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #d946ef, #f472b6);
            margin: 12px auto 0;
            border-radius: 4px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid #d946ef33;
            border-radius: 24px;
            padding: 30px 20px;
            backdrop-filter: blur(6px);
            box-shadow: 0 0 25px #d946ef15, 0 8px 32px rgba(0,0,0,0.4);
            transition: all 0.4s ease;
        }
        .card:hover {
            border-color: #d946efaa;
            box-shadow: 0 0 45px #d946ef30, 0 12px 40px rgba(0,0,0,0.6);
            transform: translateY(-6px);
        }
        .card h3 {
            color: #f472b6;
            margin-bottom: 16px;
            font-size: 1.4rem;
        }
        .card p {
            color: #d1c4e9;
            font-size: 0.98rem;
        }
        .card img {
            width: 100%;
            height: auto;
            border-radius: 18px;
            margin-bottom: 18px;
            border: 1px solid #d946ef22;
        }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #d946ef, #a21caf);
            color: #fff;
            padding: 14px 44px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1.2rem;
            margin-top: 20px;
            box-shadow: 0 0 30px #d946ef55;
            transition: 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn-cta:hover {
            transform: scale(1.04);
            box-shadow: 0 0 50px #d946ef88;
        }
        .geo-text {
            max-width: 900px;
            margin: 0 auto 20px;
            font-size: 1.1rem;
            color: #d1c4e9;
            background: rgba(217, 70, 239, 0.05);
            padding: 24px 30px;
            border-radius: 28px;
            border-left: 4px solid #d946ef;
        }
        /* news */
        .news-item {
            background: rgba(255,255,255,0.03);
            border-radius: 28px;
            padding: 26px 24px;
            margin-bottom: 28px;
            border: 1px solid #d946ef22;
            transition: 0.3s;
        }
        .news-item:hover {
            border-color: #d946ef88;
        }
        .news-date {
            display: inline-block;
            background: #d946ef22;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #f0b4f0;
            margin-bottom: 12px;
        }
        .news-item h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }
        .news-item p {
            color: #c9b8e8;
        }
        /* FAQ */
        .faq-item {
            background: rgba(255,255,255,0.02);
            border: 1px solid #d946ef22;
            border-radius: 28px;
            padding: 24px 26px;
            margin-bottom: 20px;
        }
        .faq-item h4 {
            color: #f472b6;
            font-size: 1.3rem;
            margin-bottom: 14px;
        }
        .faq-item p {
            color: #d1c4e9;
        }
        /* Footer */
        footer {
            background: #0e0519;
            padding: 50px 0 30px;
            border-top: 1px solid #d946ef33;
            margin-top: 30px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px 30px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #b8a9d4;
        }
        .footer-links a:hover {
            color: #d946ef;
        }
        .footer-info {
            text-align: center;
            color: #8a7aaa;
            font-size: 0.9rem;
            line-height: 2;
        }
        .footer-info p {
            margin: 6px 0;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 20px;
            padding: 20px 0 10px;
            border-top: 1px solid #d946ef1a;
            margin-top: 20px;
        }
        .friend-links a {
            font-size: 0.95rem;
        }
        /* responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .header-inner { flex-direction: column; gap: 14px; }
            .nav-links { justify-content: center; gap: 16px; }
        }
        .stats-number {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d946ef, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .center-text {
            text-align: center;
        }
        .mt-20 { margin-top: 20px; }