:root {
            --primary-blue: #0d2b5c;
            --secondary-gold: #d4af37;
            --accent-red: #c8102e;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-blue);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .nav-link {
            font-weight: 600;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent-red) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 43, 92, 0.9), rgba(13, 43, 92, 0.8)), url('https://images.unsplash.com/photo-1599058917212-d750089bc07e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 50px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary-gold);
        }
        .card-hover {
            transition: transform 0.4s, box-shadow 0.4s;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
        }
        .badge-custom {
            background: linear-gradient(45deg, var(--accent-red), #ff6b6b);
            color: white;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
        }
        .match-card {
            background: white;
            border-left: 6px solid var(--secondary-gold);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .live-badge {
            background-color: #dc3545;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .data-stat {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
        }
        .flink {
            background: var(--light-bg);
            padding: 15px 25px;
            border-radius: 10px;
            margin: 10px;
            display: inline-block;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: white;
            border-color: var(--secondary-gold);
            color: var(--accent-red);
            transform: scale(1.05);
        }
        footer {
            background: var(--primary-blue);
            color: white;
            padding: 60px 0 30px;
        }
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--secondary-gold);
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: background 0.3s;
        }
        .social-icon:hover {
            background: var(--accent-red);
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        .breadcrumb-item.active {
            color: var(--secondary-gold);
        }
        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-blue), #1a4396);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background: linear-gradient(45deg, #1a4396, var(--accent-red));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(13, 43, 92, 0.3);
        }
        .analysis-box {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-top: 5px solid var(--secondary-gold);
            margin-bottom: 30px;
        }
        .prediction-meter {
            height: 20px;
            background: #e9ecef;
            border-radius: 10px;
            overflow: hidden;
            margin: 20px 0;
        }
        .meter-fill {
            height: 100%;
            background: linear-gradient(90deg, #28a745, #ffc107);
            border-radius: 10px;
        }
        .table-custom th {
            background-color: var(--primary-blue);
            color: white;
            border: none;
        }
        .table-custom td {
            vertical-align: middle;
        }
        .tooltip-inner {
            max-width: 300px;
            padding: 10px 15px;
        }
