html {
            scroll-behavior: smooth;
        }
        .flink a {
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .flink a:hover {
            color: #0ea5e9;
            border-bottom-color: #0ea5e9;
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(14, 165, 233, 0.8) 100%);
        }
        .stat-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .analysis-section {
            background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .match-predict-bar {
            height: 24px;
            border-radius: 12px;
            overflow: hidden;
        }
        .predict-scotland {
            width: 45%;
            background: linear-gradient(90deg, #1e3a8a, #3b82f6);
        }
        .predict-morocco {
            width: 55%;
            background: linear-gradient(90deg, #dc2626, #f87171);
        }
