:root {
            --primary-dark: #0a1a2d;
            --primary-blue: #1e3a5f;
            --accent-green: #00a86b;
            --accent-gold: #d4af37;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #6c757d;
            --border-color: #dee2e6;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--accent-green);
        }
        .navbar-brand span {
            color: var(--accent-gold);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 26, 45, 0.9), rgba(10, 26, 45, 0.95)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            padding: 6rem 0;
            position: relative;
        }
        .section-title {
            position: relative;
            margin-bottom: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent-green);
            border-radius: 2px;
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            overflow: hidden;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .card-match {
            border-left: 5px solid var(--accent-green);
        }
        .card-analysis {
            border-left: 5px solid var(--accent-gold);
        }
        .badge-success {
            background-color: var(--accent-green);
        }
        .live-indicator {
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: #dc3545;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
            margin-right: 5px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.4; }
            100% { opacity: 1; }
        }
        .btn-primary-custom {
            background-color: var(--accent-green);
            border: none;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: #008a5c;
            transform: translateY(-2px);
        }
        .btn-outline-custom {
            border: 2px solid var(--accent-green);
            color: var(--accent-green);
            background: transparent;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-outline-custom:hover {
            background-color: var(--accent-green);
            color: white;
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-green), #00c97f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        .flink {
            display: inline-block;
            background: var(--light-bg);
            padding: 0.5rem 1.2rem;
            margin: 0.3rem;
            border-radius: 6px;
            color: var(--primary-blue);
            text-decoration: none;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .flink:hover {
            background-color: var(--accent-green);
            color: white;
            border-color: var(--accent-green);
            transform: translateY(-3px);
        }
        .footer {
            background-color: var(--primary-dark);
            color: #adb5bd;
            padding: 3rem 0 1.5rem;
        }
        .footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: white;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-green);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .match-team {
            font-weight: 700;
            font-size: 1.1rem;
        }
        .match-score {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-dark);
        }
        .analysis-author {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .analysis-author i {
            color: var(--accent-gold);
        }
        .prediction-accuracy {
            font-size: 0.85rem;
            padding: 0.2rem 0.6rem;
            border-radius: 30px;
            background-color: rgba(0, 168, 107, 0.1);
            color: var(--accent-green);
            font-weight: 600;
        }
        .table-custom thead th {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            font-weight: 600;
        }
        .table-custom tbody tr {
            border-bottom: 1px solid var(--border-color);
        }
        .table-custom tbody tr:hover {
            background-color: rgba(30, 58, 95, 0.03);
        }
        .nav-pills .nav-link.active {
            background-color: var(--accent-green);
            border-radius: 8px;
        }
        .nav-pills .nav-link {
            color: var(--text-dark);
            font-weight: 500;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
