body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            background-color: #f8f9fa;
        }
        .navbar-brand {
            font-weight: bold;
            color: #0056b3;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 180, 0.8), rgba(0, 84, 180, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 100px 0;
        }
        .section-title {
            color: #0056b3;
            border-bottom: 3px solid #0056b3;
            padding-bottom: 10px;
            margin-bottom: 30px;
        }
        .card {
            border: none;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .card:hover {
            transform: translateY(-5px);
        }
        .flink {
            display: inline-block;
            margin: 10px;
            padding: 10px 20px;
            background-color: #0056b3;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .flink:hover {
            background-color: #003d82;
            color: white;
        }
        .friendlink {
            background-color: #e9ecef;
            padding: 40px 0;
        }
        .live-score {
            background-color: #fff3cd;
            padding: 15px;
            border-radius: 5px;
            font-weight: bold;
        }
        footer {
            background-color: #343a40;
            color: white;
            padding: 30px 0;
        }
        .contact-info a {
            color: #ffc107;
            text-decoration: none;
        }
        .contact-info a:hover {
            text-decoration: underline;
        }
        .img-fluid {
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
