body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: bold;
            color: #0056b3 !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 166, 0.8), rgba(0, 84, 166, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 100px 0;
        }
        .section-title {
            border-left: 5px solid #0056b3;
            padding-left: 15px;
            margin-bottom: 30px;
            color: #0056b3;
        }
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
        }
        .btn-primary {
            background-color: #0056b3;
            border-color: #0056b3;
        }
        .btn-primary:hover {
            background-color: #004494;
            border-color: #004494;
        }
        .live-score {
            background-color: #fff;
            border-left: 5px solid #dc3545;
            padding: 15px;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
            100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
        }
        .friendlink {
            background-color: #e9ecef;
            padding: 40px 0;
        }
        .flink {
            display: inline-block;
            margin: 10px;
            padding: 10px 20px;
            background-color: white;
            border-radius: 5px;
            color: #0056b3;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #ddd;
        }
        .flink:hover {
            background-color: #0056b3;
            color: white;
            transform: scale(1.05);
        }
        footer {
            background-color: #343a40;
            color: white;
        }
        .schema-data {
            display: none;
        }
        .content-block {
            margin-bottom: 40px;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
