    /* Base & Utilities */
    html {
        scroll-behavior: smooth;
    }
    
    body {
        background-color: #020617;
        color: #e2e8f0;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0f172a;
    }
    ::-webkit-scrollbar-thumb {
        background: #334155;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #2dd4bf;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Menu Card Hover */
    .menu-card:hover img {
        transform: scale(1.05);
    }

    /* Form Focus Styles */
    input:focus, textarea:focus {
        border-color: #2dd4bf;
    }

    /* Mobile Menu Transitions */
    #mobile-menu {
        transition: transform 0.3s ease-in-out;
    }
