:root {
            --primary-green: #1e7e34;
            --primary-yellow: #ffc107;
            --secondary-blue: #0d6efd;
            --dark-bg: #121212;
            --light-bg: #f8f9fa;
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: var(--transition);
        }
        .navbar-brand:hover {
            transform: scale(1.05);
        }
        .nav-link {
            font-weight: 600;
            padding: 0.5rem 1.2rem !important;
            border-radius: 30px;
            margin: 0 0.2rem;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            background-color: var(--primary-green);
            color: white !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), 
                        url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(30,126,52,0.2) 0%, transparent 70%);
            top: -50%;
            left: -50%;
            animation: pulse 15s infinite alternate;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
        }
        .match-badge {
            background: linear-gradient(90deg, #009c3b, #ffdf00);
            color: #002776;
            font-weight: 800;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            display: inline-block;
            margin: 1rem 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            animation: float 3s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .analysis-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            height: 100%;
            border: none;
        }
        .analysis-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .card-icon {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
        }
        .team-card {
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            border: 3px solid transparent;
        }
        .team-card:hover {
            border-color: var(--primary-green);
        }
        .brazil-flag {
            background: linear-gradient(135deg, #009c3b 0%, #ffdf00 50%, #002776 100%);
            color: white;
        }
        .morocco-flag {
            background: linear-gradient(135deg, #c1272d 0%, #006233 100%);
            color: white;
        }
        .stats-bar {
            height: 30px;
            border-radius: 15px;
            background: linear-gradient(90deg, var(--primary-green), #34ce57);
            margin: 1rem 0;
            position: relative;
            overflow: hidden;
        }
        .stats-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 2s infinite;
        }
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        .live-score {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            border-radius: 15px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        .live-badge {
            background: #dc3545;
            color: white;
            padding: 0.3rem 1.5rem;
            border-radius: 30px;
            font-weight: 700;
            animation: blink 1.5s infinite;
            position: absolute;
            top: 15px;
            right: 15px;
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        .article-content h3 {
            color: var(--primary-green);
            border-left: 5px solid var(--primary-yellow);
            padding-left: 1rem;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 10px;
            color: #333;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid #eaeaea;
            font-weight: 500;
        }
        .flink:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-5px);
            border-color: var(--primary-green);
        }
        .footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #ddd;
            padding: 3rem 0 1.5rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: var(--primary-yellow);
        }
        .footer-divider {
            border-color: #444;
            margin: 2rem 0;
        }
        @media (max-width: 768px) {
            .navbar-nav {
                background: rgba(255,255,255,0.95);
                padding: 1rem;
                border-radius: 15px;
                margin-top: 1rem;
            }
            .section-padding {
                padding: 3rem 0 !important;
            }
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 1.5rem;
            margin-bottom: 3rem;
            font-weight: 800;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
            border-radius: 5px;
        }
        .highlight-text {
            background: linear-gradient(90deg, rgba(30,126,52,0.1), rgba(255,193,7,0.1));
            padding: 0.5rem 1rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-green);
        }
        .prediction-box {
            background: linear-gradient(135deg, #fff9db 0%, #ffe066 100%);
            border-radius: 15px;
            padding: 2rem;
            border: 3px solid #ffc107;
            position: relative;
            overflow: hidden;
        }
        .prediction-box::before {
            content: '专家预测';
            position: absolute;
            top: 10px;
            right: 10px;
            background: #dc3545;
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
        }
