        /* ========== АНИМАЦИИ ПЕРЕХОДОВ МЕЖДУ ЭКРАНАМИ ========== */
        @keyframes homeFadeIn { 0% { opacity: 0; transform: scale(0.95); } 100% { opacity: 1; transform: scale(1); } }
        .home-screen { animation: homeFadeIn 0.3s ease-out !important; }
        @keyframes slideFromRight { 0% { opacity: 0; transform: translateX(30px); } 100% { opacity: 1; transform: translateX(0); } }
        .module-screen.active { animation: slideFromRight 0.25s ease-out !important; }
        @keyframes slideToLeft { 0% { opacity: 1; transform: translateX(0); } 100% { opacity: 0; transform: translateX(-30px); } }
        .module-screen.closing { animation: slideToLeft 0.2s ease-in !important; }
        @keyframes modalSlideUp { 0% { opacity: 0; transform: translateY(100%); } 100% { opacity: 1; transform: translateY(0); } }
        .modal .modal-content { animation: modalSlideUp 0.3s ease-out !important; }
        @keyframes modalSlideDown { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(100%); } }
        .modal.closing .modal-content { animation: modalSlideDown 0.25s ease-in !important; }
        @keyframes notificationPop { 0% { opacity: 0; transform: translateX(-50%) scale(0.8); } 50% { transform: translateX(-50%) scale(1.05); } 100% { opacity: 1; transform: translateX(-50%) scale(1); } }
        .notification-banner { animation: notificationPop 0.3s ease-out !important; }
        .ios-button:active, .icon-item:active, .tab-item:active, .collection-card:active { transform: scale(0.96) !important; transition: transform 0.1s ease !important; }
        @keyframes cardAppear { 0% { opacity: 0; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1); } }
        .collection-card { animation: cardAppear 0.2s ease-out !important; }
        @keyframes progressFill { 0% { width: 0%; } 100% { width: var(--target-width); } }
        .xp-fill, .progress-fill-achievement, #khatmProgressFill, #namesProgressFill { transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important; }
        @keyframes gentlePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
        #addSalawatBtn, #tasbihBtn { animation: gentlePulse 2s ease-in-out infinite; }
        @keyframes badgePop { 0% { transform: scale(0); } 80% { transform: scale(1.2); } 100% { transform: scale(1); } }
        .badge { animation: badgePop 0.3s ease-out !important; }
        .tab-item { transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important; }
        .tab-item:active { transform: translateY(2px) !important; }
        @keyframes xpSlideDown { 0% { opacity: 0; transform: translateX(-50%) translateY(-30px); } 100% { opacity: 1; transform: translateX(-50%) translateY(0); } }
        .xp-popup.show { animation: xpSlideDown 0.3s ease-out !important; }
        @keyframes xpSlideUp { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(-30px); } }
        .xp-popup.hiding { animation: xpSlideUp 0.25s ease-in !important; }
        @keyframes tabFade { 0% { opacity: 0.5; } 100% { opacity: 1; } }
        .ios-card, .widget { animation: tabFade 0.2s ease-out !important; }
        @keyframes fireworkExplode { 0% { transform: translate(0,0) scale(1); opacity:1; } 100% { transform: translate(var(--tx),var(--ty)) scale(0); opacity:0; } }
        @keyframes textFadeIn { 0% { opacity: 0; transform: translateY(5px); } 100% { opacity: 1; transform: translateY(0); } }
        p, h1, h2, h3, h4, span { animation: textFadeIn 0.15s ease-out !important; }
        .no-animation, .no-animation * { animation: none !important; transition: none !important; }

