:root {
            --primary-color: #0a3d62;
            --secondary-color: #1e90ff;
            --accent-color: #ff6b6b;
            --light-color: #f8f9fa;
            --dark-color: #2d3436;
            --text-color: #333;
            --border-radius: 8px;
            --box-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-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1a5276 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/>') no-repeat;
            background-size: cover;
        }
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
        }
        .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: 60px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: var(--transition);
            border: none;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .match-card {
            background: linear-gradient(to right bottom, #f8f9fa, #e9ecef);
            border-left: 5px solid var(--secondary-color);
        }
        .prediction-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .live-badge {
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: #ff3838;
            border-radius: 50%;
            margin-right: 5px;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        .analysis-icon {
            width: 70px;
            height: 70px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }
        .friendlink a.flink {
            display: inline-block;
            background: var(--light-color);
            color: var(--dark-color);
            padding: 10px 20px;
            margin: 5px;
            border-radius: var(--border-radius);
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid #dee2e6;
            font-weight: 500;
        }
        .friendlink a.flink:hover {
            background: var(--secondary-color);
            color: white;
            border-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        footer {
            background: var(--dark-color);
            color: #ddd;
        }
        footer a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }
        footer a:hover {
            color: white;
        }
        .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: var(--transition);
        }
        .social-icon:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        .nav-link {
            font-weight: 500;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-color) !important;
        }
        .data-table {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }
        .data-table thead {
            background-color: var(--primary-color);
            color: white;
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--secondary-color), #4a9eff);
            border: none;
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 30px;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background: linear-gradient(to right, #0d6efd, var(--secondary-color));
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(26, 144, 255, 0.3);
        }
        .img-cover {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--secondary-color);
            border-radius: 3px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--primary-color);
            border: 3px solid var(--secondary-color);
        }
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .contact-info li i {
            width: 30px;
            color: var(--secondary-color);
        }
