:root {
            --primary-color: #0a3d62;
            --secondary-color: #1e90ff;
            --accent-color: #ff6b6b;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
        }
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 600;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(10, 61, 98, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }
        .btn-primary-custom {
            background-color: var(--accent-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }
        .section-title {
            color: var(--primary-color);
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 70%;
            height: 4px;
            background: var(--secondary-color);
            bottom: -10px;
            left: 15%;
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.4s, box-shadow 0.4s;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .team-logo {
            max-width: 100px;
            height: auto;
            margin: 0 auto 15px;
            display: block;
            transition: transform 0.3s;
        }
        .team-logo:hover {
            transform: scale(1.1);
        }
        .live-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, #ff0000, #ff6b6b);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .stats-label {
            color: #666;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .analysis-box {
            background: #f8f9fa;
            border-left: 5px solid var(--secondary-color);
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin-bottom: 30px;
        }
        .flink {
            background: white;
            border-radius: 10px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-color);
            font-weight: 600;
            transition: all 0.3s;
            border: 1px solid #eee;
            text-decoration: none;
            min-height: 80px;
        }
        .flink:hover {
            color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-5px);
            text-decoration: none;
        }
        .flink img {
            max-height: 30px;
            margin-right: 10px;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding-top: 60px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            background-color: rgba(0,0,0,0.2);
            padding: 20px 0;
            margin-top: 40px;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
