* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #f5f5f5;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #e0c080;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        a:hover {
            opacity: 0.8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            padding: 20px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            background: rgba(10,10,10,0.9);
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .logo {
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #fff;
        }
        .logo span {
            color: #e0c080;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-size: 0.95rem;
            color: #ccc;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .nav-links a:hover {
            border-bottom-color: #e0c080;
            color: #fff;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin: 48px 0 16px;
            text-align: center;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        h1 span {
            color: #e0c080;
        }
        h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 28px;
            text-align: center;
            color: #fff;
        }
        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #e0c080;
            margin: 12px auto 0;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 500;
            margin-bottom: 12px;
            color: #e0c080;
        }
        .geo-section {
            background: rgba(255,255,255,0.02);
            border-radius: 20px;
            padding: 40px;
            margin: 36px 0;
            border: 1px solid rgba(255,255,255,0.04);
        }
        .geo-section p {
            font-size: 1.05rem;
            color: #bbb;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            margin: 40px 0;
        }
        .card {
            background: rgba(255,255,255,0.02);
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid rgba(255,255,255,0.04);
            transition: transform 0.2s, border-color 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: rgba(224,192,128,0.2);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
            background: #222;
        }
        .card h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        .card p {
            color: #999;
            font-size: 0.95rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 24px;
            text-align: center;
            margin: 40px 0;
        }
        .stat-item {
            background: rgba(255,255,255,0.02);
            border-radius: 16px;
            padding: 28px 16px;
            border: 1px solid rgba(255,255,255,0.04);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #e0c080;
            line-height: 1;
        }
        .stat-label {
            color: #888;
            margin-top: 8px;
            font-size: 0.95rem;
        }
        .faq-item {
            background: rgba(255,255,255,0.02);
            border-radius: 12px;
            padding: 24px 28px;
            margin-bottom: 16px;
            border: 1px solid rgba(255,255,255,0.04);
        }
        .faq-item h4 {
            font-size: 1.1rem;
            color: #e0c080;
            margin-bottom: 8px;
        }
        .faq-item p {
            color: #aaa;
            font-size: 0.95rem;
        }
        .news-item {
            padding: 24px 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-date {
            color: #e0c080;
            font-size: 0.85rem;
            margin-bottom: 4px;
        }
        .news-item h3 {
            font-size: 1.15rem;
            margin-bottom: 6px;
        }
        .news-item p {
            color: #999;
            font-size: 0.95rem;
        }
        .btn {
            display: inline-block;
            background: #e0c080;
            color: #0a0a0a;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            transition: background 0.2s;
        }
        .btn:hover {
            background: #f0d090;
            color: #0a0a0a;
        }
        .cta-section {
            text-align: center;
            padding: 60px 20px;
            background: rgba(224,192,128,0.04);
            border-radius: 20px;
            margin: 40px 0;
            border: 1px solid rgba(224,192,128,0.1);
        }
        .cta-section h2 {
            margin-bottom: 16px;
        }
        .cta-section p {
            color: #bbb;
            max-width: 600px;
            margin: 0 auto 28px;
        }
        footer {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 40px 0 24px;
            margin-top: 60px;
            color: #888;
            font-size: 0.9rem;
        }
        footer .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 20px;
        }
        footer a {
            color: #aaa;
        }
        footer .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.04);
            padding-top: 20px;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .header-inner { flex-direction: column; align-items: stretch; }
            .nav-links { justify-content: center; gap: 12px; }
            .geo-section { padding: 24px; }
        }