html {
            scroll-behavior: smooth;
        }
        .flink a {
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .flink a:hover {
            border-bottom-color: #3b82f6;
            transform: translateY(-2px);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #f59e0b;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .gradient-bg {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        }
        .stats-number {
            font-feature-settings: "tnum";
        }
        @media (max-width: 768px) {
            .mobile-stack {
                flex-direction: column;
            }
        }
