#mp_app .mp-template-landing *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

#mp_app .mp-template-landing{
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: #fafafa;
            min-height: 100vh;
            color: #1a1a2e;
        }

#mp_app .mp-template-landing .hero{
            text-align: center;
            padding: 100px 40px 60px;
            max-width: 1200px;
            margin: 0 auto;
            animation: fadeInDown 0.8s ease-out;
        }@keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

#mp_app .mp-template-landing .hero h1{
            font-size: 3.8rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 20px;
            letter-spacing: -2px;
            line-height: 1.1;
            background: linear-gradient(135deg, #1a1a2e 0%, #2563eb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

#mp_app .mp-template-landing .hero p{
            font-size: 1.2rem;
            color: #6b7280;
            max-width: 900px;
            margin: 0 auto 50px;
            line-height: 1.8;
            animation: fadeIn 0.8s ease-out 0.2s both;
        }@keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

#mp_app .mp-template-landing .upgrade-bar{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 1px solid #fcd34d;
            border-radius: 12px;
            margin-bottom: 32px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            animation: slideInUp 0.8s ease-out 0.4s both;
            box-shadow: 0 4px 15px rgba(252, 211, 77, 0.2);
        }@keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

#mp_app .mp-template-landing .upgrade-icons{
            display: flex;
            gap: 12px;
        }

#mp_app .mp-template-landing .icon-btn{
            width: 34px;
            height: 34px;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 0.95rem;
        }

#mp_app .mp-template-landing .icon-btn:hover{
            background: #f9fafb;
            border-color: #d1d5db;
            transform: scale(1.1) rotate(5deg);
        }

#mp_app .mp-template-landing .upgrade-text{
            color: #78350f;
            font-size: 0.95rem;
            font-weight: 600;
        }

#mp_app .mp-template-landing .upgrade-link{
            color: #2563eb;
            font-weight: 700;
            text-decoration: none;
            margin: 0 4px;
            transition: all 0.2s;
        }

#mp_app .mp-template-landing .upgrade-link:hover{
            text-decoration: underline;
        }

#mp_app .mp-template-landing .close-btn{
            margin-left: auto;
            background: none;
            border: none;
            font-size: 1.3rem;
            cursor: pointer;
            color: #78350f;
            padding: 0 8px;
            transition: all 0.2s;
        }

#mp_app .mp-template-landing .close-btn:hover{
            transform: scale(1.2);
        }

#mp_app .mp-template-landing .generator-card{
            max-width: 900px;
            margin: 0 auto 60px;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            overflow: hidden;
            animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
            transition: all 0.3s ease;
        }

#mp_app .mp-template-landing .generator-card:hover{
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }@keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

#mp_app .mp-template-landing .input-wrapper{
            position: relative;
        }

#mp_app .mp-template-landing .main-input{
            width: 100%;
            min-height: 160px;
            padding: 32px;
            border: none;
            font-size: 1.1rem;
            font-family: inherit;
            resize: none;
            color: #1a1a2e;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            line-height: 1.6;
        }

#mp_app .mp-template-landing .main-input:focus{
            outline: none;
            min-height: 220px;
        }

#mp_app .mp-template-landing .main-input::placeholder{
            color: transparent;
        }

#mp_app .mp-template-landing .typing-placeholder{
            position: absolute;
            top: 32px;
            left: 32px;
            color: #9ca3af;
            font-size: 1.1rem;
            pointer-events: none;
            line-height: 1.6;
        }

#mp_app .mp-template-landing .typing-text{
            border-right: 2px solid #9ca3af;
            animation: blink 0.7s step-end infinite;
        }@keyframes blink {
            50% { border-color: transparent; }
        }

#mp_app .mp-template-landing .main-input:focus ~ .typing-placeholder{
            opacity: 0;
        }

#mp_app .mp-template-landing .input-toolbar{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 28px;
            border-top: 1px solid #f3f4f6;
            background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
        }

#mp_app .mp-template-landing .toolbar-left{
            display: flex;
            gap: 12px;
            align-items: center;
        }

#mp_app .mp-template-landing .add-btn{
            width: 38px;
            height: 38px;
            border-radius: 10px;
            border: 1px solid #e5e7eb;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.4rem;
            color: #6b7280;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

#mp_app .mp-template-landing .add-btn:hover{
            background: #2563eb;
            color: white;
            border-color: #2563eb;
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

#mp_app .mp-template-landing .tools-btn{
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 10px;
            border: 1px solid #e5e7eb;
            background: white;
            font-size: 0.95rem;
            font-weight: 600;
            color: #374151;
            cursor: pointer;
            transition: all 0.3s ease;
        }

#mp_app .mp-template-landing .tools-btn:hover{
            background: #f9fafb;
            border-color: #2563eb;
            color: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
        }

#mp_app .mp-template-landing .toolbar-right{
            display: flex;
            gap: 12px;
            align-items: center;
        }

#mp_app .mp-template-landing .ai-selector{
            position: relative;
        }

#mp_app .mp-template-landing .ai-dropdown-btn{
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 10px;
            border: 1px solid #e5e7eb;
            background: white;
            font-size: 0.9rem;
            font-weight: 600;
            color: #374151;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 140px;
            justify-content: space-between;
        }

#mp_app .mp-template-landing .ai-dropdown-btn:hover{
            background: #f9fafb;
            border-color: #2563eb;
            color: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
        }

#mp_app .mp-template-landing .ai-dropdown-menu{
            display: none;
            position: absolute;
            bottom: 100%;
            right: 0;
            margin-bottom: 8px;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            min-width: 200px;
            z-index: 100;
            overflow: hidden;
            animation: dropUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }@keyframes dropUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

#mp_app .mp-template-landing .ai-dropdown-menu.active{
            display: block;
        }

#mp_app .mp-template-landing .ai-option{
            padding: 12px 18px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.95rem;
            font-weight: 500;
            color: #374151;
        }

#mp_app .mp-template-landing .ai-option:hover{
            background: #eff6ff;
            color: #2563eb;
        }

#mp_app .mp-template-landing .ai-option.locked{
            opacity: 0.6;
            cursor: not-allowed;
        }

#mp_app .mp-template-landing .ai-option.locked:hover{
            background: white;
            color: #374151;
        }

#mp_app .mp-template-landing .uses-badge{
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            color: #065f46;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            border: 1px solid #a7f3d0;
            transition: all 0.3s ease;
        }

#mp_app .mp-template-landing .generate-btn{
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: none;
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
        }

#mp_app .mp-template-landing .generate-btn::before{
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

#mp_app .mp-template-landing .generate-btn:hover:not(:disabled)::before{
            width: 300%;
            height: 300%;
        }

#mp_app .mp-template-landing .generate-btn:hover:not(:disabled){
            transform: scale(1.15) rotate(90deg);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
        }

#mp_app .mp-template-landing .generate-btn:active{
            transform: scale(1.05) rotate(90deg);
        }

#mp_app .mp-template-landing .generate-btn:disabled{
            opacity: 0.5;
            cursor: not-allowed;
        }

#mp_app .mp-template-landing .generate-btn.loading::after{
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 1.5s infinite;
        }@keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

#mp_app .mp-template-landing .categories{
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            padding: 20px 40px 40px;
            animation: fadeIn 0.8s ease-out 0.8s both;
        }

#mp_app .mp-template-landing .category-pill{
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            border-radius: 50px;
            border: 2px solid #e5e7eb;
            background: white;
            font-size: 0.95rem;
            font-weight: 600;
            color: #374151;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

#mp_app .mp-template-landing .category-pill:hover{
            background: #f9fafb;
            border-color: #2563eb;
            color: #2563eb;
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
        }

#mp_app .mp-template-landing .category-pill.active{
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border-color: #60a5fa;
            color: #1d4ed8;
            box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
        }

#mp_app .mp-template-landing .category-pill.locked{
            opacity: 0.5;
            cursor: not-allowed;
        }

#mp_app .mp-template-landing .category-pill.locked:hover{
            transform: none;
            box-shadow: none;
            border-color: #e5e7eb;
        }

#mp_app .mp-template-landing .category-pill .icon{
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

#mp_app .mp-template-landing .category-pill:hover .icon{
            transform: scale(1.2) rotate(10deg);
        }

#mp_app .mp-template-landing .word-limit{
            position: absolute;
            bottom: 20px;
            right: 32px;
            font-size: 0.85rem;
            color: #9ca3af;
            background: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-weight: 600;
            border: 1px solid #f3f4f6;
            transition: all 0.3s ease;
        }

#mp_app .mp-template-landing .word-limit.warning{
            color: #f59e0b;
            border-color: #fcd34d;
            background: #fffbeb;
            transform: scale(1.05);
        }

#mp_app .mp-template-landing .word-limit.error{
            color: #ef4444;
            border-color: #fca5a5;
            background: #fef2f2;
            transform: scale(1.1);
            animation: shake 0.5s ease;
        }@keyframes shake {
            0%, 100% { transform: translateX(0) scale(1.1); }
            25% { transform: translateX(-5px) scale(1.1); }
            75% { transform: translateX(5px) scale(1.1); }
        }

#mp_app .mp-template-landing .section{
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px;
        }

#mp_app .mp-template-landing .section-header{
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

#mp_app .mp-template-landing .section-title{
            font-size: 2.2rem;
            font-weight: 800;
            color: #1a1a2e;
            position: relative;
            display: inline-block;
        }

#mp_app .mp-template-landing .section-title::after{
            content: "";
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #60a5fa);
            border-radius: 2px;
        }

#mp_app .mp-template-landing .view-more-btn{
            background: white;
            color: #2563eb;
            border: 2px solid #e5e7eb;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

#mp_app .mp-template-landing .view-more-btn:hover{
            background: #2563eb;
            color: white;
            border-color: #2563eb;
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

#mp_app .mp-template-landing .insights-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 24px;
            margin-bottom: 20px;
        }

#mp_app .mp-template-landing .insight-card{
            background: white;
            border-radius: 16px;
            padding: 28px;
            border: 1px solid #e5e7eb;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
        }

#mp_app .mp-template-landing .insight-card:hover{
            box-shadow: 0 12px 35px rgba(0,0,0,0.1);
            transform: translateY(-8px) scale(1.02);
            border-color: #2563eb;
        }

#mp_app .mp-template-landing .free-badge{
            display: inline-block;
            background: #1a1a2e;
            color: white;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

#mp_app .mp-template-landing .insight-card h3{
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a1a2e;
            line-height: 1.4;
        }

#mp_app .mp-template-landing .insight-meta{
            color: #9ca3af;
            font-size: 0.85rem;
            margin-bottom: 14px;
            font-weight: 500;
        }

#mp_app .mp-template-landing .insight-card p{
            color: #6b7280;
            line-height: 1.7;
            font-size: 0.95rem;
        }

#mp_app .mp-template-landing .pricing-section{
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 100px 40px;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

#mp_app .mp-template-landing .pricing-section::before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: bgScroll 20s linear infinite;
        }@keyframes bgScroll {
            0% { background-position: 0 0; }
            100% { background-position: 60px 60px; }
        }

#mp_app .mp-template-landing .pricing-container{
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

#mp_app .mp-template-landing .pricing-title{
            text-align: center;
            color: white;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
            animation: fadeInDown 0.8s ease-out;
        }

#mp_app .mp-template-landing .pricing-subtitle{
            text-align: center;
            color: rgba(255,255,255,0.95);
            font-size: 1.3rem;
            margin-bottom: 70px;
            animation: fadeIn 0.8s ease-out 0.2s both;
        }

#mp_app .mp-template-landing .pricing-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
            max-width: 1100px;
            margin: 0 auto;
        }

#mp_app .mp-template-landing .pricing-card{
            background: white;
            border-radius: 20px;
            padding: 44px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 2px solid transparent;
        }

#mp_app .mp-template-landing .pricing-card:hover{
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.25);
        }

#mp_app .mp-template-landing .pricing-card.featured{
            border-color: #fbbf24;
            box-shadow: 0 12px 40px rgba(251, 191, 36, 0.4);
            transform: scale(1.05);
        }

#mp_app .mp-template-landing .pricing-card.featured:hover{
            transform: translateY(-12px) scale(1.07);
        }

#mp_app .mp-template-landing .pricing-card.featured::before{
            content: "MOST POPULAR";
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: white;
            padding: 8px 24px;
            border-radius: 25px;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5);
        }

#mp_app .mp-template-landing .plan-name{
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: #1a1a2e;
        }

#mp_app .mp-template-landing .plan-price{
            font-size: 3.5rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 10px;
        }

#mp_app .mp-template-landing .plan-price span{
            font-size: 1.3rem;
            color: #6b7280;
            font-weight: 600;
        }

#mp_app .mp-template-landing .plan-description{
            color: #6b7280;
            margin-bottom: 36px;
            line-height: 1.7;
            font-size: 1rem;
        }

#mp_app .mp-template-landing .plan-features{
            list-style: none;
            margin-bottom: 36px;
        }

#mp_app .mp-template-landing .plan-features li{
            padding: 14px 0;
            color: #374151;
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 0.98rem;
            font-weight: 500;
        }

#mp_app .mp-template-landing .plan-features li::before{
            content: "✓";
            color: #10b981;
            font-weight: 800;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

#mp_app .mp-template-landing .plan-features li.disabled{
            color: #d1d5db;
        }

#mp_app .mp-template-landing .plan-features li.disabled::before{
            content: "✗";
            color: #d1d5db;
        }

#mp_app .mp-template-landing .plan-cta{
            width: 100%;
            padding: 16px;
            border-radius: 12px;
            border: none;
            font-size: 1.05rem;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

#mp_app .mp-template-landing .plan-cta.primary{
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
        }

#mp_app .mp-template-landing .plan-cta.primary:hover{
            background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
        }

#mp_app .mp-template-landing .plan-cta.secondary{
            background: white;
            color: #2563eb;
            border: 3px solid #e5e7eb;
        }

#mp_app .mp-template-landing .plan-cta.secondary:hover{
            background: #eff6ff;
            border-color: #2563eb;
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
        }

#mp_app .mp-template-landing .loading-overlay{
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(15px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

#mp_app .mp-template-landing .loading-overlay.active{
            display: flex;
            animation: fadeIn 0.4s ease-out;
        }

#mp_app .mp-template-landing .loading-content{
            background: white;
            padding: 60px 70px;
            border-radius: 24px;
            text-align: center;
            box-shadow: 0 30px 80px rgba(0,0,0,0.5);
            animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            max-width: 450px;
        }

#mp_app .mp-template-landing .loader-container{
            position: relative;
            width: 90px;
            height: 90px;
            margin: 0 auto 30px;
        }

#mp_app .mp-template-landing .loader{
            width: 90px;
            height: 90px;
            border: 6px solid #f3f4f6;
            border-top-color: #2563eb;
            border-radius: 50%;
            animation: spin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
        }

#mp_app .mp-template-landing .loader-pulse{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #2563eb;
            opacity: 0.2;
            animation: pulse 1.5s ease-in-out infinite;
        }@keyframes spin {
            to { transform: rotate(360deg); }
        }@keyframes pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.2;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.4);
                opacity: 0;
            }
        }

#mp_app .mp-template-landing .loading-text{
            font-size: 1.4rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 10px;
        }

#mp_app .mp-template-landing .loading-subtext{
            font-size: 1rem;
            color: #6b7280;
            margin-bottom: 24px;
        }

#mp_app .mp-template-landing .loading-progress{
            width: 100%;
            height: 6px;
            background: #f3f4f6;
            border-radius: 6px;
            overflow: hidden;
        }

#mp_app .mp-template-landing .loading-progress-bar{
            height: 100%;
            background: linear-gradient(90deg, #2563eb, #60a5fa);
            width: 0%;
            animation: progress 3s ease-out;
            border-radius: 6px;
        }@keyframes progress {
            0% { width: 0%; }
            100% { width: 100%; }
        }

#mp_app .mp-template-landing .tools-modal{
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            z-index: 500;
            justify-content: center;
            align-items: center;
        }

#mp_app .mp-template-landing .tools-modal.active{
            display: flex;
            animation: fadeIn 0.3s ease-out;
        }

#mp_app .mp-template-landing .tools-content{
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 550px;
            width: 90%;
            box-shadow: 0 25px 70px rgba(0,0,0,0.4);
            animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

#mp_app .mp-template-landing .tools-header{
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
        }

#mp_app .mp-template-landing .tools-header h3{
            font-size: 1.7rem;
            font-weight: 800;
            color: #1a1a2e;
        }

#mp_app .mp-template-landing .close-modal{
            background: #f3f4f6;
            border: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: #6b7280;
            padding: 0;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

#mp_app .mp-template-landing .close-modal:hover{
            background: #e5e7eb;
            color: #1a1a2e;
            transform: rotate(90deg);
        }

#mp_app .mp-template-landing .tools-grid{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

#mp_app .mp-template-landing .tool-item{
            padding: 24px;
            border: 2px solid #e5e7eb;
            border-radius: 14px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-align: center;
        }

#mp_app .mp-template-landing .tool-item:hover{
            background: #eff6ff;
            border-color: #2563eb;
            transform: translateY(-6px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
        }

#mp_app .mp-template-landing .tool-item.locked{
            opacity: 0.5;
            cursor: not-allowed;
        }

#mp_app .mp-template-landing .tool-item.locked:hover{
            transform: none;
            background: white;
            border-color: #e5e7eb;
            box-shadow: none;
        }

#mp_app .mp-template-landing .tool-item .icon{
            font-size: 2.5rem;
            margin-bottom: 12px;
        }

#mp_app .mp-template-landing .tool-item .name{
            font-size: 1rem;
            font-weight: 700;
            color: #374151;
        }@media (max-width: 768px) {
            #mp_app .mp-template-landing .hero h1{
                font-size: 2.8rem;
            }
            
            #mp_app .mp-template-landing .hero{
                padding: 60px 20px 40px;
            }
            
            #mp_app .mp-template-landing .section{
                padding: 40px 20px;
            }
            
            #mp_app .mp-template-landing .categories{
                padding: 20px;
            }

            #mp_app .mp-template-landing .pricing-section{
                padding: 70px 20px;
            }

            #mp_app .mp-template-landing .pricing-title{
                font-size: 2.5rem;
            }
        }

#mp_app .mp-template-landing a{color:inherit;}
#mp_app .mp-template-landing a:hover{text-decoration:none;}
