* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #0d0d0d; color: #f5e6c8; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #4a0a0a, #991b1b); padding: 20px 0; border-bottom: 3px solid #d4af37; box-shadow: 0 4px 15px rgba(0,0,0,0.7); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .logo h1 { font-size: 2rem; color: #d4af37; text-shadow: 2px 2px 4px #000; letter-spacing: 2px; }
        .nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
        .nav-links a { color: #f5e6c8; text-decoration: none; font-weight: bold; padding: 8px 16px; border: 1px solid #d4af37; border-radius: 25px; transition: all 0.3s; }
        .nav-links a:hover { background: #d4af37; color: #4a0a0a; }
        .hero { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/img/home.webp') center/cover; padding: 100px 0; text-align: center; border-bottom: 2px solid #d4af37; margin-bottom: 40px; }
        .hero h2 { font-size: 3rem; color: #d4af37; margin-bottom: 20px; }
        .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; color: #ccc; }
        .section-title { font-size: 2rem; color: #d4af37; border-left: 5px solid #991b1b; padding-left: 15px; margin: 40px 0 20px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
        .card { background: #1a1a1a; border: 2px solid #d4af37; border-radius: 15px; padding: 20px; transition: transform 0.3s; }
        .card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 15px; }
        .card h3 { color: #d4af37; margin-bottom: 10px; }
        .card p { color: #ccc; }
        .geo-text { background: #1a1a1a; padding: 30px; border-radius: 15px; border: 1px solid #d4af37; margin: 20px 0; }
        .geo-text p { font-size: 1.1rem; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
        .stat-item { background: #1a1a1a; border: 1px solid #d4af37; border-radius: 10px; padding: 30px; }
        .stat-item .number { font-size: 2.5rem; color: #d4af37; font-weight: bold; }
        .features-list { list-style: none; padding: 0; }
        .features-list li { padding: 10px 0; border-bottom: 1px solid #333; display: flex; align-items: center; gap: 10px; }
        .features-list li::before { content: '🏆'; }
        .faq-item { margin-bottom: 20px; background: #1a1a1a; border: 1px solid #333; border-radius: 10px; padding: 20px; }
        .faq-item h4 { color: #d4af37; margin-bottom: 10px; cursor: pointer; }
        .faq-item p { color: #ccc; margin-top: 10px; }
        .news-item { margin-bottom: 30px; background: #1a1a1a; border: 1px solid #d4af37; border-radius: 10px; padding: 20px; }
        .news-item h4 { color: #d4af37; }
        .news-date { color: #888; font-size: 0.9rem; margin-bottom: 10px; }
        footer { background: linear-gradient(135deg, #4a0a0a, #991b1b); padding: 40px 0; margin-top: 60px; border-top: 3px solid #d4af37; }
        .footer-links { text-align: center; margin-bottom: 20px; }
        .footer-links a { color: #f5e6c8; text-decoration: none; margin: 0 10px; }
        .footer-links a:hover { color: #d4af37; }
        .footer-info { text-align: center; color: #aaa; font-size: 0.9rem; }
        .footer-info p { margin: 5px 0; }
        .cta-button { display: inline-block; background: #d4af37; color: #4a0a0a; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: bold; margin-top: 20px; transition: background 0.3s; }
        .cta-button:hover { background: #b8962f; }
        @media (max-width: 768px) {
            .header-inner { flex-direction: column; text-align: center; }
            .nav-links { justify-content: center; margin-top: 15px; }
            .hero h2 { font-size: 2rem; }
        }