:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --dark-bg: #1f2937;
        }
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--text-color);
            line-height: 1.8;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color) !important;
        }
        .nav-link {
            color: var(--text-color) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            text-align: center;
        }
        .hero h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .btn-primary {
            background-color: var(--secondary-color);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: bold;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #b91c1c;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }
        .section-padding {
            padding: 5rem 0;
        }
        .bg-light-custom {
            background-color: var(--light-bg);
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 1.5rem;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        .card-title {
            color: var(--primary-color);
            font-weight: 700;
        }
        .icon-box {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .live-score {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
        }
        .live-score h3 {
            color: white;
        }
        .team-flag {
            width: 60px;
            height: auto;
            border-radius: 5px;
            margin: 0 1rem;
        }
        .analysis-text {
            column-count: 2;
            column-gap: 3rem;
            text-align: justify;
        }
        @media (max-width: 768px) {
            .analysis-text {
                column-count: 1;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero {
                padding: 5rem 0;
            }
        }
        .friendlink {
            background-color: var(--dark-bg);
            color: white;
            padding: 3rem 0;
        }
        .friendlink h2 {
            color: white;
            text-align: center;
            margin-bottom: 2rem;
        }
        .flink {
            display: inline-block;
            color: #d1d5db;
            background-color: #374151;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .flink:hover {
            background-color: var(--accent-color);
            color: var(--dark-bg);
            transform: scale(1.05);
        }
        footer {
            background-color: #111827;
            color: #9ca3af;
            padding: 3rem 0 1.5rem;
        }
        footer a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--accent-color);
        }
        .contact-info li {
            margin-bottom: 0.8rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .stat-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            text-align: center;
        }
        .counter {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary-color);
        }
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(30, 58, 138, 0.25);
        }
        .table-hover tbody tr:hover {
            background-color: rgba(30, 58, 138, 0.05);
        }
        .navbar-toggler {
            border: none;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
