.hero-gradient {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
        }
        .stat-card:hover {
            transform: translateY(-8px);
            transition: transform 0.3s ease-in-out;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .analysis-card {
            border-left: 4px solid #dc2626;
            transition: all 0.3s ease;
        }
        .analysis-card:hover {
            background-color: #fef2f2;
            border-left-width: 8px;
        }
        .flink {
            background: linear-gradient(90deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 12px;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background: linear-gradient(90deg, #e0f2fe 0%, #dbeafe 100%);
            transform: scale(1.05);
            border-color: #3b82f6;
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        .tactical-board {
            background: #1e293b;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
        }
        .player-marker {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .prediction-meter {
            height: 24px;
            border-radius: 12px;
            overflow: hidden;
            background: #e5e7eb;
            position: relative;
        }
        .meter-fill {
            height: 100%;
            transition: width 1.5s ease-in-out;
            border-radius: 12px;
        }
        .nav-link.active {
            border-bottom: 3px solid #dc2626;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            .tactical-board {
                height: 400px;
            }
            .hero-gradient h1 {
                font-size: 2rem;
            }
        }
