:root {
            --primary-color: #0a3d62;
            --secondary-color: #079992;
            --accent-color: #f6b93b;
            --dark-color: #1e272e;
            --light-color: #f5f6fa;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            top: -150px;
            right: -100px;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .match-prediction-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 30px;
            margin-top: -50px;
            position: relative;
            z-index: 10;
            transition: transform 0.3s ease;
        }
        .match-prediction-card:hover {
            transform: translateY(-10px);
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .vs-text {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-color);
            margin: 0 20px;
        }
        .prediction-badge {
            font-size: 1.2rem;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 700;
        }
        .probability-bar {
            height: 25px;
            border-radius: 15px;
            overflow: hidden;
            margin: 10px 0;
        }
        .probability-fill {
            height: 100%;
            transition: width 1s ease-in-out;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--primary-color);
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
        }
        .data-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 5px solid var(--secondary-color);
            transition: all 0.3s ease;
        }
        .data-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        .data-icon {
            width: 60px;
            height: 60px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        .live-score {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 15px;
            border-radius: 10px;
            font-weight: 700;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(238, 90, 36, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(238, 90, 36, 0); }
            100% { box-shadow: 0 0 0 0 rgba(238, 90, 36, 0); }
        }
        .match-history-table {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .match-history-table th {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 15px;
        }
        .analysis-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        .analysis-card:hover {
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }
        .analysis-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .contact-info {
            background: var(--light-color);
            border-radius: 12px;
            padding: 30px;
        }
        .contact-info i {
            color: var(--secondary-color);
            width: 30px;
        }
        .friendlink a.flink {
            display: inline-block;
            background: white;
            padding: 12px 25px;
            border-radius: 8px;
            margin: 5px 10px;
            color: var(--dark-color);
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        .friendlink a.flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--accent-color);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 80px 0;
            }
            .vs-text {
                font-size: 1.8rem;
                margin: 20px 0;
            }
            .team-flag {
                width: 60px;
                height: 45px;
            }
        }
        .article-content {
            text-align: justify;
            font-size: 1.05rem;
        }
        .article-content h3 {
            color: var(--primary-color);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .highlight-stat {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            line-height: 1;
        }
        .highlight-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .tactical-diagram {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            border-left: 5px solid var(--accent-color);
            margin: 20px 0;
        }
