        .gradient-bg {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
        }
        .hover-scale {
            transition: transform 0.3s ease;
        }
        .hover-scale:hover {
            transform: translateY(-5px);
        }
        .stats-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(229, 231, 235, 0.8);
        }
        .prediction-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 4px;
            background: #f8fafc;
            border-radius: 6px;
            transition: all 0.3s ease;
            color: #4b5563;
            text-decoration: none;
            border: 1px solid #e5e7eb;
        }
        .flink:hover {
            background: #3b82f6;
            color: white;
            border-color: #3b82f6;
            transform: translateY(-2px);
        }
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        .mobile-menu.active {
            transform: translateX(0);
        }
        .article-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: #4b5563;
        }
        .article-content h3 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #1f2937;
            font-weight: 600;
        }
