* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0d0218 0%, #1a0a2e 30%, #2d1b4e 70%, #0d0218 100%);
            color: #e2d8f0;
            line-height: 1.7;
            min-height: 100vh;
        }
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #1a0a2e; }
        ::-webkit-scrollbar-thumb { background: #d946ef; border-radius: 12px; }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* nav */
        .navbar {
            background: rgba(26, 10, 46, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(217, 70, 239, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 14px 0;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        .logo {
            font-size: 1.7rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d946ef, #f0abfc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 24px rgba(217, 70, 239, 0.3);
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            align-items: center;
        }
        .nav-links a {
            color: #c4b5e3;
            text-decoration: none;
            font-size: 0.98rem;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 40px;
            transition: 0.25s;
            letter-spacing: 0.3px;
        }
        .nav-links a:hover {
            color: #fff;
            background: rgba(217, 70, 239, 0.2);
            box-shadow: 0 0 16px rgba(217, 70, 239, 0.15);
        }
        /* headings */
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0abfc, #d946ef, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin: 50px 0 28px;
            line-height: 1.2;
        }
        h2, h3 {
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 2.2rem;
            background: linear-gradient(to right, #d946ef, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
        }
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        /* cards */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .card {
            background: rgba(26, 10, 46, 0.6);
            border: 1px solid rgba(217, 70, 239, 0.3);
            border-radius: 24px;
            padding: 28px 22px;
            backdrop-filter: blur(6px);
            box-shadow: 0 0 24px rgba(217, 70, 239, 0.08);
            transition: 0.3s;
        }
        .card:hover {
            border-color: #d946ef;
            box-shadow: 0 0 40px rgba(217, 70, 239, 0.25);
            transform: translateY(-4px);
        }
        .card img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            margin-bottom: 16px;
            border: 1px solid rgba(217, 70, 239, 0.2);
        }
        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #f0d4ff;
        }
        .card p {
            color: #b8a6d9;
            font-size: 0.96rem;
        }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #d946ef, #a855f7);
            color: #fff;
            font-weight: 700;
            padding: 14px 40px;
            border-radius: 60px;
            text-decoration: none;
            font-size: 1.05rem;
            box-shadow: 0 4px 28px rgba(217, 70, 239, 0.3);
            transition: 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn-cta:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 40px rgba(217, 70, 239, 0.5);
        }
        .center {
            text-align: center;
        }
        .mt-30 { margin-top: 30px; }
        .mb-30 { margin-bottom: 30px; }
        .hero {
            padding: 60px 0;
            text-align: center;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 20px auto 30px;
            color: #cbb5f0;
        }
        .hero img {
            max-width: 100%;
            border-radius: 24px;
            margin-top: 32px;
            box-shadow: 0 0 60px rgba(217, 70, 239, 0.15);
        }
        .badge {
            background: rgba(217, 70, 239, 0.15);
            border-radius: 40px;
            padding: 6px 18px;
            display: inline-block;
            font-size: 0.85rem;
            color: #d946ef;
            border: 1px solid rgba(217, 70, 239, 0.3);
        }
        .geo-section {
            background: rgba(26, 10, 46, 0.4);
            border-radius: 32px;
            padding: 40px 32px;
            margin: 40px 0;
            border: 1px solid rgba(217, 70, 239, 0.2);
        }
        .geo-section p {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.05rem;
        }
        /* faq */
        .faq-item {
            background: rgba(26, 10, 46, 0.5);
            border: 1px solid #2d1b4e;
            border-radius: 20px;
            padding: 20px 24px;
            margin-bottom: 16px;
            transition: 0.2s;
        }
        .faq-item h3 {
            font-size: 1.1rem;
            color: #d946ef;
            margin-bottom: 8px;
        }
        .faq-item p {
            color: #b8a6d9;
        }
        /* news list */
        .news-item {
            background: rgba(26, 10, 46, 0.5);
            border-left: 4px solid #d946ef;
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 20px;
            transition: 0.2s;
        }
        .news-item .date {
            color: #d946ef;
            font-weight: 500;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 6px;
        }
        .news-item h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: #f0d4ff;
        }
        .news-item p {
            color: #b8a6d9;
        }
        /* footer */
        .footer {
            margin-top: 60px;
            padding: 40px 0 30px;
            border-top: 1px solid rgba(217, 70, 239, 0.15);
            background: rgba(13, 2, 24, 0.6);
            backdrop-filter: blur(8px);
        }
        .footer .container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
            justify-content: center;
        }
        .footer-links a {
            color: #a78bfa;
            text-decoration: none;
            font-size: 0.95rem;
        }
        .footer-links a:hover { color: #d946ef; }
        .footer-info {
            text-align: center;
            color: #7c6b9e;
            font-size: 0.9rem;
        }
        .footer-info p { margin: 6px 0; }
        hr {
            border: 0.5px solid rgba(217, 70, 239, 0.15);
            margin: 20px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
            gap: 24px;
            text-align: center;
        }
        .stat-item {
            background: rgba(217,70,239,0.06);
            padding: 24px 12px;
            border-radius: 24px;
            border:1px solid rgba(217,70,239,0.15);
        }
        .stat-num {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg,#d946ef,#f0abfc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .testimonial-card {
            background: rgba(26,10,46,0.5);
            border-radius: 24px;
            padding: 24px;
            border:1px solid rgba(217,70,239,0.2);
        }
        @media (max-width: 640px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .navbar .container { flex-direction: column; }
        }