    /* Custom Styles to augment Tailwind */
    
    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: #020617; /* Navy 900 */
    }

    /* Selection styling */
    ::selection {
        background: #fbbf24; /* Gold 400 */
        color: #0f172a; /* Navy 800 */
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: #0f172a;
    }
    ::-webkit-scrollbar-thumb {
        background: #334155;
        border-radius: 5px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #fbbf24;
    }

    /* Animation Utilities */
    .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    
    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Geometric Shapes */
    .blob {
        position: absolute;
        filter: blur(50px);
        z-index: -1;
        opacity: 0.6;
    }
