* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: #0a0a0f; color: #e2e8f0; font-family: 'Courier New', monospace; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: #14141e; border-bottom: 2px solid #facc15; padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; }
        .logo { color: #facc15; font-size: 1.5rem; font-weight: bold; text-shadow: 0 0 10px #facc1544; }
        .nav-links { display: flex; gap: 0.8rem; flex-wrap: wrap; }
        .nav-links a { color: #cbd5e1; text-decoration: none; padding: 0.4rem 0.8rem; border: 1px solid #facc15; border-radius: 4px; transition: all 0.3s; font-size: 0.9rem; }
        .nav-links a:hover { background: #facc15; color: #0a0a0f; }
        h1 { font-size: 2.2rem; color: #facc15; text-align: center; padding: 2.5rem 0 0.5rem; text-shadow: 0 0 20px #facc1522; }
        .section-title { font-size: 1.8rem; color: #facc15; border-left: 4px solid #facc15; padding-left: 1rem; margin: 2rem 0 1.5rem; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
        .card { background: #1a1a2e; border: 2px solid #facc15; border-radius: 8px; padding: 1.5rem; image-rendering: pixelated; transition: transform 0.3s; }
        .card:hover { transform: translateY(-4px); box-shadow: 0 4px 20px #facc1522; }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 4px; border: 1px solid #facc15; margin-bottom: 1rem; }
        .card h3 { color: #facc15; margin-bottom: 0.5rem; font-size: 1.2rem; }
        .card p { color: #94a3b8; font-size: 0.95rem; }
        .date-tag { color: #facc15; font-size: 0.8rem; margin-bottom: 0.5rem; display: block; }
        .geo-text { background: #14141e; border: 1px solid #facc15; border-radius: 8px; padding: 1.5rem; margin: 1.5rem 0; color: #cbd5e1; line-height: 1.8; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
        .stat-item { background: #1a1a2e; border: 1px solid #facc15; padding: 1.5rem; text-align: center; border-radius: 8px; }
        .stat-item .num { font-size: 2.2rem; color: #facc15; font-weight: bold; }
        .stat-item .label { color: #94a3b8; margin-top: 0.3rem; }
        .faq-item { background: #1a1a2e; border: 1px solid #facc15; border-radius: 8px; padding: 1.2rem; margin-bottom: 1rem; }
        .faq-item h4 { color: #facc15; cursor: pointer; margin-bottom: 0.5rem; }
        .faq-item p { color: #94a3b8; }
        .cta-section { background: linear-gradient(135deg, #14141e, #1e1e3a); border: 2px solid #facc15; border-radius: 12px; padding: 3rem 2rem; text-align: center; margin: 2rem 0; }
        .cta-section h2 { color: #facc15; font-size: 1.8rem; margin-bottom: 1rem; }
        .cta-section p { color: #cbd5e1; margin-bottom: 1.5rem; }
        .btn { display: inline-block; background: #facc15; color: #0a0a0f; padding: 0.8rem 2rem; border-radius: 6px; font-weight: bold; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; }
        .btn:hover { background: #fde047; box-shadow: 0 0 20px #facc1544; }
        footer { background: #14141e; border-top: 2px solid #facc15; padding: 2rem 0; margin-top: 3rem; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-bottom: 1rem; }
        .footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.85rem; }
        .footer-links a:hover { color: #facc15; }
        .footer-info { text-align: center; color: #64748b; font-size: 0.8rem; line-height: 1.8; }
        .news-list { display: flex; flex-direction: column; gap: 1.5rem; }
        .news-item { background: #1a1a2e; border: 1px solid #facc15; border-radius: 8px; padding: 1.2rem; }
        .news-item .date-tag { color: #facc15; font-size: 0.85rem; }
        .news-item h3 { color: #facc15; margin-bottom: 0.5rem; }
        .news-item p { color: #94a3b8; }
        .highlight-block { background: #14141e; border: 1px solid #facc15; border-radius: 8px; padding: 1.5rem; margin: 1.5rem 0; }
        @media (max-width: 768px) {
            h1 { font-size: 1.5rem; }
            .header-inner { flex-direction: column; gap: 0.8rem; }
            .nav-links { justify-content: center; }
        }