* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
            color: #f0e6ff;
            line-height: 1.6;
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Neon Glow Card */
        .neon-card {
            background: rgba(26, 10, 46, 0.7);
            border: 1px solid rgba(217, 70, 239, 0.3);
            border-radius: 20px;
            padding: 30px;
            backdrop-filter: blur(12px);
            box-shadow: 0 0 20px rgba(217, 70, 239, 0.15), inset 0 0 20px rgba(217, 70, 239, 0.05);
            transition: all 0.3s ease;
        }
        .neon-card:hover {
            border-color: #d946ef;
            box-shadow: 0 0 40px rgba(217, 70, 239, 0.3), inset 0 0 30px rgba(217, 70, 239, 0.1);
        }
        /* Navigation */
        nav {
            background: rgba(26, 10, 46, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(217, 70, 239, 0.2);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #d0c0e0;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            transition: all 0.3s;
            font-size: 0.95rem;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            color: #fff;
            background: rgba(217, 70, 239, 0.2);
            border-color: #d946ef;
            box-shadow: 0 0 20px rgba(217, 70, 239, 0.2);
        }
        /* H1 */
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0e6ff, #d946ef, #f0e6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            margin: 50px 0 20px;
            letter-spacing: 1px;
            text-shadow: 0 0 40px rgba(217, 70, 239, 0.3);
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #e0d0f0;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, #d946ef, transparent);
            border-radius: 2px;
        }
        /* GEO Section */
        #geo-intro {
            margin: 30px 0;
            padding: 30px;
            background: rgba(26, 10, 46, 0.5);
            border-radius: 20px;
            border-left: 4px solid #d946ef;
        }
        #geo-intro p {
            font-size: 1.05rem;
            color: #c8b8d8;
        }
        /* Sections */
        section {
            margin: 60px 0;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 25px;
        }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
        /* Hero */
        #hero {
            background: linear-gradient(135deg, rgba(217,70,239,0.1), rgba(26,10,46,0.8)), url('/img/soccer.webp') center/cover;
            border-radius: 30px;
            padding: 80px 40px;
            text-align: center;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: 1px solid rgba(217,70,239,0.2);
        }
        #hero h2 { font-size: 2.4rem; color: #fff; }
        #hero p { font-size: 1.2rem; max-width: 700px; margin: 20px auto; color: #d0c0e0; }
        .btn-glow {
            display: inline-block;
            padding: 14px 40px;
            background: linear-gradient(135deg, #d946ef, #a855f7);
            border-radius: 50px;
            color: #fff;
            font-weight: 700;
            text-decoration: none;
            border: none;
            box-shadow: 0 0 30px rgba(217,70,239,0.4);
            transition: all 0.3s;
            cursor: pointer;
        }
        .btn-glow:hover {
            transform: scale(1.05);
            box-shadow: 0 0 50px rgba(217,70,239,0.6);
        }
        /* Stats */
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d946ef, #f0e6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        /* News */
        .news-item {
            padding: 20px;
            border-bottom: 1px solid rgba(217,70,239,0.1);
        }
        .news-item:last-child { border-bottom: none; }
        .news-date {
            color: #d946ef;
            font-size: 0.85rem;
            font-weight: 600;
            display: block;
            margin-bottom: 6px;
        }
        .news-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #f0e6ff;
            margin-bottom: 8px;
        }
        .news-summary {
            color: #b0a0c0;
            font-size: 0.95rem;
        }
        /* FAQ */
        .faq-item {
            padding: 20px;
            border-bottom: 1px solid rgba(217,70,239,0.1);
        }
        .faq-q {
            font-weight: 700;
            color: #d946ef;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .faq-a {
            color: #c8b8d8;
        }
        /* Footer */
        footer {
            background: rgba(26, 10, 46, 0.9);
            border-top: 1px solid rgba(217,70,239,0.2);
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #b0a0c0;
            text-decoration: none;
            display: block;
            margin: 6px 0;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: #d946ef; }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(217,70,239,0.1);
            color: #9080a0;
            font-size: 0.9rem;
        }
        .footer-bottom a {
            color: #b0a0c0;
            text-decoration: none;
        }
        .footer-bottom a:hover { color: #d946ef; }
        /* Images */
        .section-img {
            width: 100%;
            border-radius: 16px;
            object-fit: cover;
            border: 1px solid rgba(217,70,239,0.2);
            box-shadow: 0 0 20px rgba(217,70,239,0.1);
        }
        .img-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 10px; }
            .nav-links a { font-size: 0.8rem; padding: 6px 12px; }
            #hero { padding: 60px 20px; min-height: 300px; }
        }
        /* Tags */
        .tag {
            display: inline-block;
            padding: 4px 14px;
            border-radius: 20px;
            background: rgba(217,70,239,0.15);
            color: #d946ef;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(217,70,239,0.2);
        }
        /* Accent */
        .accent-text { color: #d946ef; }