        /* Custom Tailwind Configuration via Script Tag for specific colors */
        tailwind.config = {
            theme: {
                extend: {
                    colors: {
                        navy: '#0B132B',
                        'navy-light': '#1C2541',
                        grass: '#4CAF50',
                        athletic: '#FF5722'
                    }
                }
            }
        }
        /* Simple toggle hidden utility */
        .hidden { display: none; }