:root {
            --primary-color: #0a3d62;
            --secondary-color: #1e90ff;
            --accent-color: #ff6b6b;
            --text-dark: #2c3e50;
            --text-light: #f8f9fa;
            --bg-light: #f8f9fa;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1a5276 100%);
            color: var(--text-light);
            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)"/>');
            background-size: cover;
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .card-header {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 15px 20px;
            border-bottom: none;
        }
        .live-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .team-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
            background: white;
            border-radius: 50%;
            padding: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .prediction-card {
            border-left: 5px solid var(--secondary-color);
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        .data-table th {
            background-color: var(--primary-color);
            color: white;
            border: none;
        }
        .data-table tr:hover {
            background-color: rgba(30, 144, 255, 0.05);
        }
        .footer {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 60px 0 20px;
        }
        .footer a {
            color: #bdc3c7;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        .friendlink {
            background-color: var(--bg-light);
            padding: 40px 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 10px 20px;
            margin: 8px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            color: var(--text-dark);
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid #eee;
        }
        .flink:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
            text-decoration: none !important;
        }
        .contact-info li {
            margin-bottom: 10px;
        }
        .contact-info i {
            color: var(--secondary-color);
            width: 25px;
        }
        .sticky-top {
            top: 20px;
        }
        .analysis-text {
            text-align: justify;
            hyphens: auto;
        }
        .match-card {
            transition: var(--transition);
            cursor: pointer;
        }
        .match-card:hover {
            background-color: rgba(10, 61, 98, 0.03);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .section-padding {
                padding: 50px 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
