.flink a {
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .flink a:hover {
            border-bottom-color: #1d4ed8;
            transform: translateY(-2px);
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .prediction-card {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-left: 4px solid #dc2626;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stats-bar {
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
        }
        .content-section p {
            margin-bottom: 1.2em;
            line-height: 1.8;
        }
        .content-section h3 {
            margin-top: 1.8em;
            margin-bottom: 0.8em;
        }
