.gradient-bg {
            background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #26d0ce;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .flink {
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 12px 20px;
            display: inline-block;
            transition: all 0.3s ease;
            background: white;
        }
        .flink:hover {
            border-color: #26d0ce;
            background-color: #f0fdfa;
            transform: scale(1.05);
        }
        .live-pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stat-bar {
            height: 8px;
            border-radius: 4px;
            background: #e5e7eb;
            overflow: hidden;
        }
        .stat-fill {
            height: 100%;
            border-radius: 4px;
            background: linear-gradient(90deg, #26d0ce, #1a2980);
            transition: width 1s ease;
        }
