 @import url('https://fonts.googleapis.com/css2?family=IM+Fell+English+SC&display=swap');
        
        .maya-font {
            font-family: 'IM Fell English SC', serif;
        }
        
        .glyph-btn {
            transition: all 0.3s ease;
        }
        
        .glyph-btn:hover {
            transform: scale(1.01);
            box-shadow: 0 0 2px rgba(234, 179, 8, 0.7);
        }
        
        .glyph-display {
            min-height: 100px;
            background-color: #f5f5dc;
            border: 2px solid #d1a054;
        }
        
        .tab-active {
            border-bottom: 3px solid #d1a054;
        }
        
        .fade-in {
            animation: fadeIn 0.5s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }