:root {
            --primary-color: #0d3b66;
            --secondary-color: #f4a261;
            --accent-color: #e76f51;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --success-color: #2a9d8f;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
            padding-top: 76px;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 59, 102, 0.85), rgba(13, 59, 102, 0.9)), url('https://images.unsplash.com/photo-1630416450738-c3e89b5160b9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            margin-bottom: 40px;
        }
        .hero-section h1 {
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .stat-card {
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
            border: none;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
        }
        .match-prediction {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid var(--accent-color);
            padding: 25px;
            border-radius: 0 10px 10px 0;
        }
        .live-badge {
            animation: pulse 2s infinite;
            border-radius: 20px;
            padding: 5px 15px;
        }
        @keyframes pulse {
            0% { background-color: #dc3545; }
            50% { background-color: #e76f51; }
            100% { background-color: #dc3545; }
        }
        .fixture-table tr:nth-child(even) {
            background-color: rgba(13, 59, 102, 0.05);
        }
        .fixture-table tr:hover {
            background-color: rgba(13, 59, 102, 0.1);
        }
        .article-excerpt {
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
            margin-bottom: 20px;
        }
        .article-excerpt:last-child {
            border-bottom: none;
        }
        .friendlink a.flink {
            background-color: var(--light-color);
            padding: 10px 20px;
            border-radius: 50px;
            display: inline-block;
            margin: 5px;
            text-decoration: none;
            color: var(--primary-color);
            border: 1px solid #dee2e6;
            transition: all 0.3s;
        }
        .friendlink a.flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background-color: var(--primary-color);
            color: white;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        .btn-custom {
            background-color: var(--secondary-color);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 30px;
            border: none;
            transition: all 0.3s;
        }
        .btn-custom:hover {
            background-color: var(--accent-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
        }
        .team-logo {
            max-height: 120px;
            object-fit: contain;
        }
        .analysis-chart {
            height: 300px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            body { padding-top: 68px; }
            .hero-section { padding: 60px 0; }
            .hero-section h1 { font-size: 2rem; }
            .section-title { font-size: 1.5rem; }
        }
