* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, #0f1a12 0%, #1a3a2a 50%, #0f1a12 100%);
            color: #e0f0e8;
            min-height: 100vh;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 26, 18, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(74, 222, 128, 0.2);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #4ade80;
            text-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
            letter-spacing: 2px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links a {
            color: #c0d6c8;
            text-decoration: none;
            font-size: 1rem;
            padding: 6px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            color: #4ade80;
            background: rgba(74, 222, 128, 0.1);
            border-color: rgba(74, 222, 128, 0.3);
            box-shadow: 0 0 15px rgba(74, 222, 128, 0.2);
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            text-align: center;
            padding: 50px 0 20px;
            background: linear-gradient(135deg, #4ade80, #a3e635);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 3px;
        }
        .geo-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 50px;
            background: rgba(26, 58, 42, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(74, 222, 128, 0.15);
            border-radius: 20px;
            padding: 30px 35px;
            font-size: 1.05rem;
            line-height: 1.9;
            color: #d0e8da;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin: 60px 0 30px;
            color: #4ade80;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #4ade80, transparent);
            margin: 10px auto 0;
        }
        .glass-card {
            background: rgba(26, 58, 42, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(74, 222, 128, 0.15);
            border-radius: 16px;
            padding: 25px;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .glass-card:hover {
            border-color: rgba(74, 222, 128, 0.4);
            box-shadow: 0 0 30px rgba(74, 222, 128, 0.15);
            transform: translateY(-4px);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .img-fluid {
            width: 100%;
            height: auto;
            border-radius: 12px;
            display: block;
            margin-bottom: 15px;
            border: 1px solid rgba(74, 222, 128, 0.1);
        }
        .news-item {
            background: rgba(26, 58, 42, 0.4);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(74, 222, 128, 0.1);
            border-radius: 16px;
            padding: 20px;
            transition: all 0.3s ease;
        }
        .news-item:hover {
            border-color: rgba(74, 222, 128, 0.3);
            box-shadow: 0 0 20px rgba(74, 222, 128, 0.1);
        }
        .news-date {
            display: inline-block;
            background: rgba(74, 222, 128, 0.15);
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #4ade80;
            margin-bottom: 10px;
        }
        .news-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #f0faf4;
        }
        .news-summary {
            font-size: 0.95rem;
            color: #b0d0c0;
            line-height: 1.7;
        }
        .faq-item {
            background: rgba(26, 58, 42, 0.35);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(74, 222, 128, 0.1);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
        }
        .faq-q {
            color: #4ade80;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .faq-a {
            color: #c8dcd2;
            line-height: 1.8;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(26, 58, 42, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(74, 222, 128, 0.15);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #4ade80;
            line-height: 1.2;
            text-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
        }
        .stat-label {
            font-size: 1rem;
            color: #a0c0b0;
            margin-top: 8px;
        }
        .hero {
            background: linear-gradient(135deg, rgba(15,26,18,0.8), rgba(26,58,42,0.6)), url('/img/2026worldcup.webp') center/cover no-repeat;
            border-radius: 24px;
            padding: 80px 40px;
            text-align: center;
            margin: 30px 0;
            border: 1px solid rgba(74, 222, 128, 0.1);
        }
        .hero h2 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            color: #d0e8da;
        }
        .cta-button {
            display: inline-block;
            margin-top: 25px;
            padding: 14px 40px;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: #0f1a12;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
        }
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(74, 222, 128, 0.4);
        }
        .partners-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            align-items: center;
            margin: 30px 0;
        }
        .partner-logo {
            background: rgba(26, 58, 42, 0.4);
            border: 1px solid rgba(74, 222, 128, 0.1);
            border-radius: 12px;
            padding: 15px 25px;
            color: #8ab0a0;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .partner-logo:hover {
            border-color: #4ade80;
            color: #4ade80;
        }
        .footer {
            background: rgba(15, 26, 18, 0.95);
            border-top: 1px solid rgba(74, 222, 128, 0.1);
            padding: 40px 0;
            margin-top: 80px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px 30px;
            justify-content: center;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #8ab0a0;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }
        .footer-links a:hover {
            color: #4ade80;
        }
        .footer-info {
            text-align: center;
            color: #6a8a7a;
            font-size: 0.85rem;
            line-height: 2;
            padding: 0 20px;
        }
        .footer-info p {
            margin: 5px 0;
        }
        .badge {
            display: inline-block;
            background: rgba(74, 222, 128, 0.1);
            border: 1px solid rgba(74, 222, 128, 0.2);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #4ade80;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; padding: 30px 0 15px; }
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .header-inner { flex-direction: column; gap: 15px; }
            .nav-links { justify-content: center; gap: 12px; }
            .hero { padding: 50px 20px; }
            .hero h2 { font-size: 1.8rem; }
            .geo-intro { padding: 20px; }
            .stat-number { font-size: 2rem; }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .grid-3 { grid-template-columns: 1fr 1fr; }
            .grid-4 { grid-template-columns: 1fr 1fr; }
        }