:root {
            --primary-color: #0d3e66;
            --secondary-color: #d4af37;
            --accent-color: #8b0000;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
        }
        .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(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 62, 102, 0.85), rgba(13, 62, 102, 0.9)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
            color: var(--primary-color);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            overflow: hidden;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        .analysis-badge {
            background-color: var(--accent-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .odds-table th {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        .odds-table td {
            vertical-align: middle;
        }
        .live-score {
            background: linear-gradient(135deg, #8b0000, #b22222);
            color: white;
            border-radius: 10px;
            padding: 15px;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
        }
        .flink {
            display: inline-block;
            background-color: var(--light-bg);
            padding: 10px 20px;
            margin: 8px;
            border-radius: 8px;
            color: var(--primary-color);
            text-decoration: none;
            border: 1px solid #dee2e6;
            transition: all 0.3s;
            font-weight: 500;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: scale(1.05);
        }
        footer {
            background-color: var(--primary-color);
            color: #ddd;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--secondary-color);
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: background-color 0.3s;
        }
        .social-icon:hover {
            background-color: var(--secondary-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
                text-align: center;
            }
            .section-title {
                text-align: center;
            }
            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        .chart-container {
            position: relative;
            height: 300px;
            width: 100%;
        }
