* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif; background: #f3efe8; color: #2a2a2a; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .nav { background: linear-gradient(135deg, #1a3a1a, #7c5c3a); padding: 12px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.2); position: sticky; top: 0; z-index: 100; }
        .nav .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
        .nav-links a { color: #f5efe6; text-decoration: none; font-weight: 600; padding: 8px 14px; border-radius: 30px; background: rgba(255,255,255,0.1); transition: 0.3s; letter-spacing: 0.5px; }
        .nav-links a:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }
        .hero { background: linear-gradient(rgba(26,58,26,0.8), rgba(124,92,58,0.7)), url('/img/2026worldcup.webp') center/cover no-repeat; padding: 100px 0 80px; text-align: center; color: #fff; position: relative; }
        .hero h1 { font-size: 2.8rem; margin-bottom: 20px; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); letter-spacing: 1px; }
        .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; opacity: 0.95; }
        .btn-cta { display: inline-block; background: #c9a87c; color: #1a3a1a; padding: 14px 40px; border-radius: 40px; font-weight: 700; text-decoration: none; transition: 0.3s; box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
        .btn-cta:hover { background: #dbb98a; transform: scale(1.03); }
        .section { padding: 60px 0; }
        .section-title { font-size: 2.2rem; text-align: center; margin-bottom: 40px; color: #1a3a1a; position: relative; }
        .section-title::after { content: ''; width: 60px; height: 4px; background: #7c5c3a; display: block; margin: 12px auto 0; border-radius: 10px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
        .card { background: #fffcf7; border-radius: 24px; padding: 30px; box-shadow: 0 8px 24px rgba(0,0,0,0.06); border: 1px solid #e8ddd0; transition: 0.3s; backdrop-filter: blur(2px); background-image: radial-gradient(circle at 10% 20%, rgba(124,92,58,0.03) 0%, transparent 80%); }
        .card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,58,26,0.1); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; margin-bottom: 18px; background: #d9d0c0; }
        .card h3 { font-size: 1.4rem; margin-bottom: 12px; color: #1a3a1a; }
        .card p { color: #4d4a44; }
        .geo-box { background: #eae3d8; border-radius: 30px; padding: 40px; margin-top: 20px; }
        .geo-box p { font-size: 1.05rem; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; text-align: center; }
        .stat-item { background: #fffcf7; padding: 30px 10px; border-radius: 30px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); border: 1px solid #ddd6c8; }
        .stat-item .num { font-size: 2.6rem; font-weight: 800; color: #7c5c3a; }
        .stat-item .label { font-size: 1rem; color: #3a3a3a; margin-top: 6px; }
        .faq-item { background: #fffcf7; border-radius: 24px; padding: 24px 30px; margin-bottom: 16px; border-left: 6px solid #7c5c3a; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
        .faq-item h4 { font-size: 1.2rem; color: #1a3a1a; margin-bottom: 8px; }
        .faq-item p { color: #3d3a35; }
        .news-item { background: #fffcf7; border-radius: 24px; padding: 24px; border: 1px solid #e4dacd; margin-bottom: 24px; display: flex; gap: 20px; flex-wrap: wrap; }
        .news-item .news-img { flex: 0 0 160px; height: 120px; object-fit: cover; border-radius: 16px; background: #d9d0c0; }
        .news-item .news-content { flex: 1; min-width: 200px; }
        .news-item .news-date { color: #7c5c3a; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
        .news-item h3 { font-size: 1.3rem; margin-bottom: 8px; color: #1a3a1a; }
        .footer { background: #1a3a1a; color: #e8ddd0; padding: 40px 0 20px; }
        .footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; }
        .footer a { color: #c9a87c; text-decoration: none; }
        .footer a:hover { text-decoration: underline; }
        .footer-bottom { border-top: 1px solid #3a5a3a; margin-top: 30px; padding-top: 20px; text-align: center; font-size: 0.9rem; }
        .friends { margin: 20px 0; line-height: 2; }
        @media (max-width: 768px) { .hero h1 { font-size: 2rem; } .nav-links { gap: 10px; } .nav-links a { font-size: 0.9rem; padding: 6px 12px; } .news-item { flex-direction: column; } .news-item .news-img { flex: unset; width: 100%; height: 180px; } }