﻿
        body.mwp-page-auth *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body.mwp-page-auth{
            --red: #c0392b;
            --red-bright: #e74c3c;
            --red-glow: rgba(192, 57, 43, 0.35);
            --bg: #000000;
            --surface: #0a0a0a;
            --surface2: #111111;
            --border: rgba(255,255,255,0.07);
            --text: #ffffff;
            --text-dim: #888888;
            --text-muted: #444444;
        }

        @keyframes mwp-auth-shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        @keyframes mwp-auth-activeGlow {
            0% { background-position: 0% center; filter: drop-shadow(0 0 4px rgba(255,255,255,0.15)); }
            50% { background-position: 100% center; filter: drop-shadow(0 0 10px rgba(255,255,255,0.45)); }
            100% { background-position: 0% center; filter: drop-shadow(0 0 4px rgba(255,255,255,0.15)); }
        }

        @keyframes mwp-auth-btnShine {
            0% { left: -100%; }
            20% { left: 150%; }
            100% { left: 150%; }
        }

        @keyframes mwp-auth-fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes mwp-auth-slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        body.mwp-page-auth{
            min-height: 100vh;
            background: #000000;
            font-family: -apple-system, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', system-ui, sans-serif;
            font-weight: 500;
            color: #fff;
            overflow-x: hidden;
        }

        
        body.mwp-page-auth .header{
            position: fixed;
            top: 0; left: 0; width: 100%;
            background: rgba(8,8,8,0.82);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            z-index: 1000;
            border-bottom: 0.5px solid var(--border);
        }

        body.mwp-page-auth .container{
            max-width: 1200px;
            margin: 0 auto;
            padding: 13px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        body.mwp-page-auth .logo{
            font-size: 21px;
            font-weight: 590;
            letter-spacing: -0.2px;
            background: linear-gradient(90deg, #555 0%, #aaa 20%, #fff 35%, #eee 50%, #fff 65%, #aaa 80%, #555 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-auth-shimmer 15s linear infinite;
            cursor: pointer;
        }

        body.mwp-page-auth .nav{ display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }

        body.mwp-page-auth .nav-link{
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: -0.2px;
            padding: 5px 0;
            background: linear-gradient(90deg, #444 0%, #777 50%, #444 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }

        body.mwp-page-auth .nav-link:hover{
            background: linear-gradient(90deg, #888 0%, #fff 40%, #ccc 60%, #888 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-auth-shimmer 2s linear infinite;
        }

        body.mwp-page-auth .nav-link.active{
            background: linear-gradient(90deg, #888 0%, #ccc 15%, #fff 30%, #eee 45%, #fff 60%, #ccc 75%, #888 90%, #fff 100%);
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-auth-activeGlow 3s ease-in-out infinite;
            font-weight: 510;
        }

        body.mwp-page-auth .button{
            border: none;
            padding: 9px 22px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 510;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            color: #e8e8e8;
            background: #2a2a2a;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), inset 0 -1px 0 rgba(0,0,0,0.35), 0 2px 12px rgba(0,0,0,0.6);
            transition: box-shadow 0.3s ease, transform 0.15s ease;
        }

        body.mwp-page-auth .button::before{
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 60%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
            animation: mwp-auth-btnShine 5s ease-in-out infinite;
        }

        body.mwp-page-auth .button:active{ transform: scale(0.97); }

        
        body.mwp-page-auth .auth-section{
            padding-top: 100px;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        body.mwp-page-auth .auth-section::before{
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(192,57,43,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        body.mwp-page-auth .auth-card{
            background: var(--surface);
            border: 0.5px solid var(--border);
            border-radius: 28px;
            width: 100%;
            max-width: 460px;
            padding: 40px 32px;
            backdrop-filter: blur(10px);
            animation: mwp-auth-fadeUp 0.8s ease both;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
            position: relative;
        }

        body.mwp-page-auth .auth-title{
            font-size: 28px;
            font-weight: 650;
            letter-spacing: -0.02em;
            text-align: center;
            margin-bottom: 32px;
            background: linear-gradient(135deg, #fff 0%, #aaa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.mwp-page-auth .input-group{
            margin-bottom: 24px;
        }

        body.mwp-page-auth .input-label{
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-bottom: 8px;
            display: block;
        }

        body.mwp-page-auth .input-field{
            width: 100%;
            background: var(--surface2);
            border: 0.5px solid var(--border);
            border-radius: 14px;
            padding: 14px 18px;
            font-size: 16px;
            font-weight: 500;
            color: #fff;
            font-family: inherit;
            transition: border-color 0.2s, box-shadow 0.2s;
            outline: none;
        }

        body.mwp-page-auth .input-field:focus{
            border-color: var(--red-bright);
            box-shadow: 0 0 0 2px var(--red-glow);
        }

        body.mwp-page-auth .input-field::placeholder{
            color: var(--text-muted);
            font-weight: 400;
        }

        body.mwp-page-auth .auth-btn{
            width: 100%;
            background: linear-gradient(90deg, #2a2a2a 0%, #333 100%);
            border: 0.5px solid rgba(255,255,255,0.1);
            padding: 14px;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            margin-top: 12px;
            position: relative;
            overflow: hidden;
            transition: all 0.2s ease;
        }

        body.mwp-page-auth .auth-btn:hover{
            background: linear-gradient(90deg, #333 0%, #3d3d3d 100%);
            border-color: rgba(255,255,255,0.2);
            transform: translateY(-1px);
        }

        body.mwp-page-auth .auth-btn:active{
            transform: scale(0.98);
        }

        body.mwp-page-auth .auth-turnstile-wrap{
            margin-top: 18px;
            display: flex;
            justify-content: center;
        }

        body.mwp-page-auth .auth-turnstile-wrap .cf-turnstile{
            display: flex;
            justify-content: center;
            width: 100%;
        }

        body.mwp-page-auth .auth-switch{
            text-align: center;
            margin-top: 28px;
            font-size: 14px;
            color: var(--text-dim);
        }


        body.mwp-page-auth .auth-switch a{
            color: var(--red-bright);
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        body.mwp-page-auth .auth-switch a:hover{
            opacity: 0.8;
            text-decoration: underline;
        }

        body.mwp-page-auth .turnstile-wrap{
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 34px;
            padding-top: 4px;
        }

        body.mwp-page-auth .turnstile-wrap .cf-turnstile{
            width: fit-content;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        
        body.mwp-page-auth .toast-notify{
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #111116;
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 14px 20px;
            color: white;
            font-weight: 500;
            z-index: 3000;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 10px 40px rgba(0,0,0,0.6);
            animation: mwp-auth-slideInRight 0.3s ease;
            font-size: 14px;
            letter-spacing: 0.2px;
        }

        body.mwp-page-auth .shop-toast-accent {
            background: linear-gradient(90deg, #5C2400, #D16B1A, #5C2400);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: mwp-shared-accent-shimmer 2s linear infinite;
        }

        body.mwp-page-auth .shop-toast-accent-fast {
            animation-duration: 1s;
        }

        
        body.mwp-page-auth footer{
            background: var(--surface);
            border-top: 0.5px solid var(--border);
            padding: 60px 28px;
        }

        body.mwp-page-auth .footer-inner{
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            align-items: start;
        }

        body.mwp-page-auth .footer-left{ display: flex; flex-direction: column; gap: 16px; }
        body.mwp-page-auth .footer-email{ font-size: 14px; color: var(--text-dim); display: flex; align-items: center; gap: 8px; }
        body.mwp-page-auth .footer-email a{ color: #bbb; text-decoration: none; transition: color 0.2s; }
        body.mwp-page-auth .footer-email a:hover{ color: #fff; }
        body.mwp-page-auth .footer-socials{ display: flex; gap: 12px; margin-top: 4px; }
        body.mwp-page-auth .footer-social-icon{
            width: 36px; height: 36px;
            background: #1a1a1a;
            border: 0.5px solid var(--border);
            border-radius: 5px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s;
        }
        body.mwp-page-auth .footer-social-icon img{ width: 20px; height: 20px; object-fit: contain; }
        body.mwp-page-auth .footer-social-icon:hover{ background: #222; }
        body.mwp-page-auth .footer-logo-center{
            text-align: center;
            font-size: 55px;
            font-weight: 700;
            letter-spacing: -0.04em;
            background: linear-gradient(135deg, #555 0%, #aaa 30%, #fff 50%, #aaa 70%, #555 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-auth-shimmer 8s linear infinite;
            line-height: 1;
        }
        body.mwp-page-auth .footer-nav{ display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
        body.mwp-page-auth .footer-nav-title{
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        body.mwp-page-auth .footer-nav a{
            font-size: 14px;
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.2s;
            text-align: right;
        }
        body.mwp-page-auth .footer-nav a:hover{ color: #fff; }
        body.mwp-page-auth .footer-bottom{
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 24px;
            border-top: 0.5px solid var(--border);
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
        }

        @media (max-width: 700px) {
            body.mwp-page-auth .container{ padding: 10px 16px; flex-direction: column; text-align: center; }
            body.mwp-page-auth .nav{ justify-content: center; gap: 20px; }
            body.mwp-page-auth .auth-card{ margin: 16px; padding: 32px 24px; }
            body.mwp-page-auth .footer-inner{ grid-template-columns: 1fr; text-align: center; }
            body.mwp-page-auth .footer-nav{ align-items: center; }
            body.mwp-page-auth .footer-nav a{ text-align: center; }
            body.mwp-page-auth .footer-socials{ justify-content: center; }
            body.mwp-page-auth .footer-logo-center{ font-size: 40px; }
        }
    


        body.mwp-page-dashboard *{ margin: 0; padding: 0; box-sizing: border-box; }

        body.mwp-page-dashboard{
            --red: #c0392b;
            --red-bright: #e74c3c;
            --red-glow: rgba(192, 57, 43, 0.35);
            --bg: #000000;
            --surface: #0a0a0a;
            --surface2: #111111;
            --surface3: #161616;
            --border: rgba(255,255,255,0.07);
            --text: #ffffff;
            --text-dim: #888888;
            --text-muted: #444444;
        }

        @keyframes mwp-dashboard-shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        @keyframes mwp-dashboard-activeGlow {
            0% { background-position: 0% center; filter: drop-shadow(0 0 4px rgba(255,255,255,0.15)); }
            50% { background-position: 100% center; filter: drop-shadow(0 0 10px rgba(255,255,255,0.45)); }
            100% { background-position: 0% center; filter: drop-shadow(0 0 4px rgba(255,255,255,0.15)); }
        }

        @keyframes mwp-dashboard-btnShine {
            0% { left: -100%; }
            20% { left: 150%; }
            100% { left: 150%; }
        }

        @keyframes mwp-dashboard-fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes mwp-dashboard-fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes mwp-dashboard-modalUp {
            from { opacity: 0; transform: translateY(20px) scale(0.97); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @keyframes mwp-dashboard-slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes mwp-dashboard-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        body.mwp-page-dashboard{
            min-height: 100vh;
            background: #000000;
            font-family: -apple-system, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', system-ui, sans-serif;
            font-weight: 500;
            color: #fff;
            overflow-x: hidden;
        }

        body.mwp-page-dashboard .header{
            position: fixed;
            top: 0; left: 0; width: 100%;
            background: rgba(8,8,8,0.82);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            z-index: 1000;
            border-bottom: 0.5px solid var(--border);
        }

        body.mwp-page-dashboard .header-inner{
            max-width: 1200px;
            margin: 0 auto;
            padding: 13px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        body.mwp-page-dashboard .logo{
            font-size: 21px;
            font-weight: 590;
            letter-spacing: -0.2px;
            cursor: pointer;
            background: linear-gradient(90deg, #555 0%, #aaa 20%, #fff 35%, #eee 50%, #fff 65%, #aaa 80%, #555 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-dashboard-shimmer 15s linear infinite;
        }

        body.mwp-page-dashboard .nav{ display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }

        body.mwp-page-dashboard .nav-link{
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: -0.2px;
            padding: 5px 0;
            position: relative;
            background: linear-gradient(90deg, #444 0%, #777 50%, #444 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }

        body.mwp-page-dashboard .nav-link:hover{
            background: linear-gradient(90deg, #888 0%, #fff 40%, #ccc 60%, #888 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-dashboard-shimmer 2s linear infinite;
        }

        body.mwp-page-dashboard .nav-link.active{
            background: linear-gradient(90deg, #888 0%, #ccc 15%, #fff 30%, #eee 45%, #fff 60%, #ccc 75%, #888 90%, #fff 100%);
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-dashboard-activeGlow 3s ease-in-out infinite;
            font-weight: 510;
        }

        body.mwp-page-dashboard .button{
            border: none;
            padding: 9px 22px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 510;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            color: #e8e8e8;
            background: #2a2a2a;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), inset 0 -1px 0 rgba(0,0,0,0.35), 0 2px 12px rgba(0,0,0,0.6);
            transition: box-shadow 0.3s ease, transform 0.15s ease;
            font-family: inherit;
        }

        body.mwp-page-dashboard .button::before{
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 60%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
            animation: mwp-dashboard-btnShine 5s ease-in-out infinite;
        }

        body.mwp-page-dashboard .button:active{ transform: scale(0.97); }

        body.mwp-page-dashboard .main-content{
            padding-top: 80px;
            min-height: 100vh;
        }

        body.mwp-page-dashboard .welcome-section{
            position: relative;
            padding: 80px 28px 60px;
            max-width: 1200px;
            margin: 0 auto;
            animation: mwp-dashboard-fadeUp 0.8s ease both;
        }

        body.mwp-page-dashboard .welcome-section::before{
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 700px; height: 400px;
            background: radial-gradient(ellipse, rgba(192,57,43,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        body.mwp-page-dashboard .welcome-label{
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        body.mwp-page-dashboard .welcome-title{
            font-size: clamp(2.2rem, 6vw, 4rem);
            font-weight: 650;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 8px;
        }

        body.mwp-page-dashboard .welcome-title span.username{
            background: linear-gradient(90deg, #ffffff, #e74c3c, #ffffff);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-dashboard-shimmer 5s linear infinite;
        }

        body.mwp-page-dashboard .welcome-sub{
            font-size: 16px;
            color: var(--text-dim);
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        body.mwp-page-dashboard .section-divider{
            width: 100%;
            height: 0.5px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
        }

        body.mwp-page-dashboard .section{
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 28px;
        }

        body.mwp-page-dashboard .section-label{
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        body.mwp-page-dashboard .section-label span{
            background: linear-gradient(90deg, #ffffff, #e74c3c, #ffffff);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-dashboard-shimmer 5s linear infinite;
        }

        body.mwp-page-dashboard .section-title{
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 650;
            letter-spacing: -0.03em;
            color: #fff;
            margin-bottom: 32px;
        }

        body.mwp-page-dashboard .stat-cards{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        body.mwp-page-dashboard .stat-card{
            background: var(--surface2);
            border: 0.5px solid var(--border);
            border-radius: 18px;
            padding: 28px 24px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s, transform 0.3s;
        }

        body.mwp-page-dashboard .stat-card::before{
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(192,57,43,0.35), transparent);
        }

        body.mwp-page-dashboard .stat-card:hover{
            border-color: rgba(192,57,43,0.2);
            transform: translateY(-2px);
        }

        body.mwp-page-dashboard .stat-card-value{
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.04em;
            color: #fff;
            line-height: 1;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #fff 0%, #bbb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.mwp-page-dashboard .stat-card-label{
            font-size: 13px;
            color: var(--text-dim);
            font-weight: 500;
        }

        body.mwp-page-dashboard .stat-card-sub{
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        body.mwp-page-dashboard .action-buttons{
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        body.mwp-page-dashboard .action-btn{
            background: var(--surface2);
            border: 0.5px solid var(--border);
            border-radius: 0.7em;
            padding: 1em 1.8em;
            cursor: pointer;
            text-align: center;
            transition: border-color 0.25s, transform 0.2s, background 0.25s;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.7em;
            color: #fff;
            font-family: inherit;
            text-decoration: none;
            width: auto;
            min-width: 110px;
            font-size: 1.1rem;
        }

        body.mwp-page-dashboard .action-btn::before{
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 60%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
            animation: mwp-dashboard-btnShine 6s ease-in-out infinite;
        }

        body.mwp-page-dashboard .action-btn:hover{
            border-color: rgba(192,57,43,0.3);
        }

        body.mwp-page-dashboard .action-btn:active{ transform: scale(0.97); }

        body.mwp-page-dashboard .action-btn-label{
            font-size: 13px;
            font-weight: 550;
            color: #ccc;
            letter-spacing: -0.01em;
        }

        body.mwp-page-dashboard .plugin-info-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        body.mwp-page-dashboard .plugin-info-item{
            background: var(--surface3);
            border: 0.5px solid var(--border);
            border-radius: 14px;
            padding: 20px;
            transition: border-color 0.2s, transform 0.2s;
        }

        body.mwp-page-dashboard .plugin-info-item:hover{
            border-color: rgba(255,255,255,0.12);
            transform: translateY(-1px);
        }

        body.mwp-page-dashboard .plugin-info-val{
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #ddd;
            margin-bottom: 4px;
        }

        body.mwp-page-dashboard .plugin-info-label{
            font-size: 12px;
            color: var(--text-muted);
        }

        body.mwp-page-dashboard .reveal{
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        body.mwp-page-dashboard .reveal.visible{
            opacity: 1;
            transform: none;
        }

        body.mwp-page-dashboard .modal-overlay{
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(20px) saturate(150%);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: mwp-dashboard-fadeIn 0.2s ease;
        }

        body.mwp-page-dashboard .modal-window{
            background: linear-gradient(160deg, #111116 0%, #0d0d12 60%, #0a0a0e 100%);
            border-radius: 28px;
            max-width: 520px;
            width: 92%;
            max-height: 90vh;
            overflow-y: auto;
            border: 1px solid rgba(255,255,255,0.09);
            box-shadow: 0 0 0 0.5px rgba(255,255,255,0.04), 0 40px 80px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.07);
            animation: mwp-dashboard-modalUp 0.28s cubic-bezier(0.34,1.2,0.64,1);
            position: relative;
        }

        body.mwp-page-dashboard .modal-window::-webkit-scrollbar{ width: 4px; }
        body.mwp-page-dashboard .modal-window::-webkit-scrollbar-track{ background: transparent; }
        body.mwp-page-dashboard .modal-window::-webkit-scrollbar-thumb{ background: #222; border-radius: 2px; }

        body.mwp-page-dashboard .modal-header{
            padding: 28px 28px 0;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        body.mwp-page-dashboard .modal-title{
            font-size: 20px;
            font-weight: 650;
            letter-spacing: -0.02em;
            color: #fff;
        }

        body.mwp-page-dashboard .modal-sub{
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        body.mwp-page-dashboard .modal-close{
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            color: #666;
            font-size: 14px;
            width: 32px; height: 32px;
            border-radius: 50%;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s;
            flex-shrink: 0;
        }

        body.mwp-page-dashboard .modal-close:hover{ background: rgba(255,255,255,0.12); color: #fff; }

        body.mwp-page-dashboard .modal-body{
            padding: 24px 28px 28px;
        }

        body.mwp-page-dashboard .security-banner{
            border-radius: 14px;
            padding: 14px 18px;
            margin-bottom: 24px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 13px;
            line-height: 1.5;
        }

        body.mwp-page-dashboard .security-banner.safe{
            background: rgba(58,125,68,0.1);
            border: 0.5px solid rgba(58,125,68,0.25);
            color: #5cad6a;
        }

        body.mwp-page-dashboard .security-banner.danger{
            background: rgba(192,57,43,0.1);
            border: 0.5px solid rgba(192,57,43,0.25);
            color: var(--red-bright);
        }

        body.mwp-page-dashboard .settings-section-title{
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 14px;
            margin-top: 20px;
        }

        body.mwp-page-dashboard .settings-section-title:first-child{ margin-top: 0; }

        body.mwp-page-dashboard .toggle-row{
            background: var(--surface3);
            border: 0.5px solid var(--border);
            border-radius: 14px;
            padding: 16px 18px;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 10px;
        }

        body.mwp-page-dashboard .toggle-info{ flex: 1; }

        body.mwp-page-dashboard .toggle-label{
            font-size: 14px;
            font-weight: 600;
            color: #ddd;
            margin-bottom: 4px;
        }

        body.mwp-page-dashboard .toggle-desc{
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        body.mwp-page-dashboard .toggle-switch{
            position: relative;
            width: 44px;
            height: 24px;
            flex-shrink: 0;
            cursor: pointer;
        }

        body.mwp-page-dashboard .toggle-switch input{
            opacity: 0;
            width: 0; height: 0;
            position: absolute;
        }

        body.mwp-page-dashboard .toggle-slider{
            position: absolute;
            inset: 0;
            background: #222;
            border-radius: 24px;
            transition: background 0.3s;
            border: 0.5px solid rgba(255,255,255,0.08);
        }

        body.mwp-page-dashboard .toggle-slider::before{
            content: '';
            position: absolute;
            width: 18px; height: 18px;
            top: 2px; left: 3px;
            background: #555;
            border-radius: 50%;
            transition: transform 0.3s, background 0.3s;
        }

        body.mwp-page-dashboard .toggle-switch input:checked + .toggle-slider{
            background: rgba(192,57,43,0.25);
            border-color: rgba(192,57,43,0.35);
        }

        body.mwp-page-dashboard .toggle-switch input:checked + .toggle-slider::before{
            transform: translateX(20px);
            background: var(--red-bright);
        }

        body.mwp-page-dashboard .settings-extra{
            background: rgba(192,57,43,0.05);
            border: 0.5px solid rgba(192,57,43,0.15);
            border-radius: 12px;
            padding: 14px 16px;
            margin-top: 10px;
            display: none;
        }

        body.mwp-page-dashboard .settings-extra.show{ display: block; }

        body.mwp-page-dashboard .settings-input{
            width: 100%;
            background: #0d0d0d;
            border: 0.5px solid var(--border);
            border-radius: 10px;
            padding: 11px 14px;
            font-size: 14px;
            color: #fff;
            font-family: 'SF Mono', 'Fira Code', monospace;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }

        body.mwp-page-dashboard .settings-input:focus{
            border-color: var(--red-bright);
            box-shadow: 0 0 0 2px var(--red-glow);
        }

        body.mwp-page-dashboard .settings-input::placeholder{ color: var(--text-muted); font-family: 'SF Mono', monospace; }

        body.mwp-page-dashboard .settings-input-label{
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 8px;
            font-weight: 500;
        }

        body.mwp-page-dashboard .modal-divider{
            height: 0.5px;
            background: var(--border);
            margin: 20px 0;
        }

        body.mwp-page-dashboard .settings-btn-row{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 10px;
        }

        body.mwp-page-dashboard .settings-btn{
            padding: 12px 18px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 550;
            cursor: pointer;
            border: 0.5px solid var(--border);
            font-family: inherit;
            transition: all 0.2s;
        }

        body.mwp-page-dashboard .settings-btn.secondary{
            background: var(--surface3);
            color: #bbb;
        }

        body.mwp-page-dashboard .settings-btn.secondary:hover{
            border-color: rgba(255,255,255,0.15);
            color: #fff;
        }

        body.mwp-page-dashboard .settings-btn.primary{
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            color: #ddd;
            border-color: rgba(255,255,255,0.1);
        }

        body.mwp-page-dashboard .settings-btn.primary:hover{
            border-color: rgba(192,57,43,0.3);
            color: #fff;
        }

        body.mwp-page-dashboard .save-btn{
            width: 100%;
            padding: 14px;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            border: 0.5px solid rgba(255,255,255,0.1);
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            color: #fff;
            font-family: inherit;
            position: relative;
            overflow: hidden;
            transition: all 0.2s;
            margin-top: 20px;
        }

        body.mwp-page-dashboard .save-btn::before{
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 60%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
            animation: mwp-dashboard-btnShine 4s ease-in-out infinite;
        }

        body.mwp-page-dashboard .save-btn:hover{
            border-color: rgba(192,57,43,0.3);
            transform: translateY(-1px);
        }

        body.mwp-page-dashboard .key-modal-item{
            background: var(--surface3);
            border: 0.5px solid var(--border);
            border-radius: 16px;
            padding: 18px 20px;
            margin-bottom: 12px;
            transition: border-color 0.2s;
        }

        body.mwp-page-dashboard .key-modal-item:hover{ border-color: rgba(255,255,255,0.12); }

        body.mwp-page-dashboard .key-modal-top{
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        body.mwp-page-dashboard .key-status-badge{
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.06em;
            padding: 3px 8px;
            border-radius: 6px;
        }

        body.mwp-page-dashboard .key-status-badge.activated{
            background: rgba(58,125,68,0.12);
            border: 0.5px solid rgba(58,125,68,0.3);
            color: #5cad6a;
        }

        body.mwp-page-dashboard .key-status-badge.not-activated{
            background: rgba(80,80,80,0.12);
            border: 0.5px solid rgba(80,80,80,0.25);
            color: #555;
        }

        body.mwp-page-dashboard .key-string{
            font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
            font-size: 13px;
            color: #999;
            word-break: break-all;
            margin-bottom: 8px;
            padding: 10px 14px;
            background: #080808;
            border-radius: 10px;
            border: 0.5px solid rgba(255,255,255,0.04);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        body.mwp-page-dashboard .key-copy-btn{
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            border-radius: 6px;
            transition: background 0.2s;
            flex-shrink: 0;
            color: #555;
        }

        body.mwp-page-dashboard .key-copy-btn:hover{ background: rgba(255,255,255,0.06); color: #fff; }

        body.mwp-page-dashboard .icon-copy{
            width: 16px; height: 16px;
            display: block;
        }

        body.mwp-page-dashboard .key-meta{
            display: flex;
            gap: 16px;
            font-size: 12px;
            color: var(--text-muted);
        }

        body.mwp-page-dashboard .toast-notify{
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #111116;
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 14px 20px;
            color: white;
            font-weight: 500;
            z-index: 3000;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 10px 40px rgba(0,0,0,0.6);
            animation: mwp-dashboard-slideInRight 0.3s ease;
            font-size: 14px;
            letter-spacing: 0.2px;
            transition: opacity 0.3s;
        }

        body.mwp-page-dashboard footer{
            background: var(--surface);
            border-top: 0.5px solid var(--border);
            padding: 60px 28px;
            margin-top: 40px;
        }

        body.mwp-page-dashboard .footer-inner{
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            align-items: start;
        }

        body.mwp-page-dashboard .footer-left{ display: flex; flex-direction: column; gap: 16px; }

        body.mwp-page-dashboard .footer-email{
            font-size: 14px;
            color: var(--text-dim);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        body.mwp-page-dashboard .footer-email a{ color: #bbb; text-decoration: none; transition: color 0.2s; }
        body.mwp-page-dashboard .footer-email a:hover{ color: #fff; }

        body.mwp-page-dashboard .footer-socials{ display: flex; gap: 12px; margin-top: 4px; }

        body.mwp-page-dashboard .footer-social-icon{
            width: 36px; height: 36px;
            background: #1a1a1a;
            border: 0.5px solid var(--border);
            border-radius: 5px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s;
            overflow: hidden;
            font-size: 18px;
        }

        body.mwp-page-dashboard .footer-social-icon img{ width: 20px; height: 20px; object-fit: contain; }
        body.mwp-page-dashboard .footer-social-icon:hover{ background: #222; border-color: rgba(255,255,255,0.15); }

        body.mwp-page-dashboard .footer-logo-center{
            text-align: center;
            font-size: 55px;
            font-weight: 700;
            letter-spacing: -0.04em;
            background: linear-gradient(135deg, #555 0%, #aaa 30%, #fff 50%, #aaa 70%, #555 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-dashboard-shimmer 8s linear infinite;
            line-height: 1;
        }

        body.mwp-page-dashboard .footer-nav{ display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }

        body.mwp-page-dashboard .footer-nav-title{
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        body.mwp-page-dashboard .footer-nav a{
            font-size: 14px;
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.2s;
            text-align: right;
        }

        body.mwp-page-dashboard .footer-nav a:hover{ color: #fff; }

        body.mwp-page-dashboard .footer-bottom{
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 24px;
            border-top: 0.5px solid var(--border);
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
        }

        @media (max-width: 1000px) {
            body.mwp-page-dashboard .action-buttons{ grid-template-columns: repeat(4, 1fr); }
        }

        @media (max-width: 800px) {
            body.mwp-page-dashboard .stat-cards{ grid-template-columns: 1fr 1fr; }
            body.mwp-page-dashboard .action-buttons{ grid-template-columns: repeat(2, 1fr); }
            body.mwp-page-dashboard .plugin-info-grid{ grid-template-columns: 1fr 1fr; }
            body.mwp-page-dashboard .footer-inner{ grid-template-columns: 1fr; text-align: center; }
            body.mwp-page-dashboard .footer-nav{ align-items: center; }
            body.mwp-page-dashboard .footer-nav a{ text-align: center; }
            body.mwp-page-dashboard .footer-socials{ justify-content: center; }
            body.mwp-page-dashboard .footer-logo-center{ font-size: 40px; }
        }

        @media (max-width: 560px) {
            body.mwp-page-dashboard .header-inner{ padding: 10px 16px; flex-direction: column; text-align: center; }
            body.mwp-page-dashboard .nav{ justify-content: center; gap: 20px; }
            body.mwp-page-dashboard .section{ padding: 40px 16px; }
            body.mwp-page-dashboard .welcome-section{ padding: 60px 16px 40px; }
            body.mwp-page-dashboard .stat-cards{ grid-template-columns: 1fr; }
            body.mwp-page-dashboard .action-buttons{ grid-template-columns: repeat(2, 1fr); }
            body.mwp-page-dashboard .plugin-info-grid{ grid-template-columns: 1fr; }
            body.mwp-page-dashboard .settings-btn-row{ grid-template-columns: 1fr; }
        }
    


        body.mwp-page-faq *{ margin: 0; padding: 0; box-sizing: border-box; }

        @keyframes mwp-faq-shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        @keyframes mwp-faq-activeGlow {
            0% { background-position: 0% center; filter: drop-shadow(0 0 4px rgba(255,255,255,0.15)); }
            50% { background-position: 100% center; filter: drop-shadow(0 0 10px rgba(255,255,255,0.45)); }
            100% { background-position: 0% center; filter: drop-shadow(0 0 4px rgba(255,255,255,0.15)); }
        }

        @keyframes mwp-faq-btnShine {
            0% { left: -100%; }
            20% { left: 150%; }
            100% { left: 150%; }
        }

        body.mwp-page-faq{
            min-height: 100vh;
            background: #000000;
            font-family: -apple-system, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', system-ui, sans-serif;
            font-weight: 500;
            font-display: swap;
        }

        body.mwp-page-faq .header{
            position: fixed;
            top: 0; left: 0; width: 100%;
            background: rgba(8, 8, 8, 0.82);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            z-index: 1000;
            border-bottom: 0.5px solid rgba(255,255,255,0.07);
        }

        body.mwp-page-faq .container{
            max-width: 1200px;
            margin: 0 auto;
            padding: 13px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        body.mwp-page-faq .logo{
            font-size: 21px;
            font-weight: 590;
            letter-spacing: -0.2px;
            font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', system-ui, sans-serif;
            background: linear-gradient(90deg,
                #555555 0%,
                #aaaaaa 20%,
                #ffffff 35%,
                #eeeeee 50%,
                #ffffff 65%,
                #aaaaaa 80%,
                #555555 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-faq-shimmer 15s linear infinite;
        }

        body.mwp-page-faq .nav{
            display: flex;
            gap: 30px;
            align-items: center;
            flex-wrap: wrap;
        }

        body.mwp-page-faq .nav-link{
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;
            letter-spacing: -0.2px;
            padding: 5px 0;
            position: relative;
            background: linear-gradient(90deg,
                #444444 0%,
                #777777 50%,
                #444444 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }

        body.mwp-page-faq .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0%; height: 1.5px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
            transition: width 0.4s ease;
        }

        body.mwp-page-faq .nav-link:hover{
            background: linear-gradient(90deg,
                #888888 0%,
                #ffffff 40%,
                #cccccc 60%,
                #888888 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-faq-shimmer 2s linear infinite;
        }

        body.mwp-page-faq .nav-link.active{
            background: linear-gradient(90deg,
                #888888 0%,
                #cccccc 15%,
                #ffffff 30%,
                #eeeeee 45%,
                #ffffff 60%,
                #cccccc 75%,
                #888888 90%,
                #ffffff 100%
            );
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-faq-activeGlow 3s ease-in-out infinite;
            font-weight: 510;
        }

        body.mwp-page-faq .button{
            border: none;
            padding: 9px 22px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 510;
            font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;
            letter-spacing: -0.2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            color: #e8e8e8;
            background: #2a2a2a;
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.1),
                inset 0 -1px 0 rgba(0,0,0,0.35),
                0 2px 12px rgba(0,0,0,0.6);
            transition: box-shadow 0.3s ease, transform 0.15s ease;
        }

        body.mwp-page-faq .button::before{
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 60%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
            animation: mwp-faq-btnShine 5s ease-in-out infinite;
        }

        body.mwp-page-faq .button:active{ transform: scale(0.97); }

        body.mwp-page-faq .content{
            padding-top: 80px;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #ffffff;
        }

        body.mwp-page-faq .hero{
            text-align: center;
        }

        body.mwp-page-faq .hero h1{
            font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', system-ui, sans-serif;
            font-size: clamp(3rem, 12vw, 5.5rem);
            font-weight: 590;
            letter-spacing: -0.025em;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        body.mwp-page-faq .hero p{
            font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;
            font-size: clamp(1.1rem, 5vw, 1.7rem);
            font-weight: 490;
            letter-spacing: -0.01em;
            color: #cccccc;
        }

        @media (max-width: 680px) {
            body.mwp-page-faq .container{ padding: 10px 16px; flex-direction: column; text-align: center; }
            body.mwp-page-faq .nav{ justify-content: center; gap: 20px; }
            body.mwp-page-faq .content{ padding-top: 100px; }
            body.mwp-page-faq .hero h1{ letter-spacing: -0.02em; }
            body.mwp-page-faq .hero p{ letter-spacing: -0.005em; }
        }
    


        body.mwp-page-product *{ margin: 0; padding: 0; box-sizing: border-box; }

        body.mwp-page-product{
            --red: #c0392b;
            --red-bright: #e74c3c;
            --red-glow: rgba(192, 57, 43, 0.35);
            --bg: #000000;
            --surface: #0a0a0a;
            --surface2: #111111;
            --border: rgba(255,255,255,0.07);
            --text: #ffffff;
            --text-dim: #888888;
            --text-muted: #444444;
        }

        @keyframes mwp-product-shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        @keyframes mwp-product-activeGlow {
            0% { background-position: 0% center; filter: drop-shadow(0 0 4px rgba(255,255,255,0.15)); }
            50% { background-position: 100% center; filter: drop-shadow(0 0 10px rgba(255,255,255,0.45)); }
            100% { background-position: 0% center; filter: drop-shadow(0 0 4px rgba(255,255,255,0.15)); }
        }

        @keyframes mwp-product-btnShine {
            0% { left: -100%; }
            20% { left: 150%; }
            100% { left: 150%; }
        }

        @keyframes mwp-product-fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        body.mwp-page-product{
            min-height: 100vh;
            background: #000000;
            font-family: -apple-system, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', system-ui, sans-serif;
            font-weight: 500;
            color: #fff;
            overflow-x: hidden;
        }

        body.mwp-page-product .header{
            position: fixed;
            top: 0; left: 0; width: 100%;
            background: rgba(8,8,8,0.82);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            z-index: 1000;
            border-bottom: 0.5px solid var(--border);
        }

        body.mwp-page-product .container{
            max-width: 1200px;
            margin: 0 auto;
            padding: 13px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        body.mwp-page-product .logo{
            font-size: 21px;
            font-weight: 590;
            letter-spacing: -0.2px;
            cursor: pointer;
            background: linear-gradient(90deg, #555 0%, #aaa 20%, #fff 35%, #eee 50%, #fff 65%, #aaa 80%, #555 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-product-shimmer 15s linear infinite;
        }

        body.mwp-page-product .nav{ display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }

        body.mwp-page-product .nav-link{
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: -0.2px;
            padding: 5px 0;
            position: relative;
            background: linear-gradient(90deg, #444 0%, #777 50%, #444 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }

        body.mwp-page-product .nav-link:hover{
            background: linear-gradient(90deg, #888 0%, #fff 40%, #ccc 60%, #888 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-product-shimmer 2s linear infinite;
        }

        body.mwp-page-product .nav-link.active{
            background: linear-gradient(90deg, #888 0%, #ccc 15%, #fff 30%, #eee 45%, #fff 60%, #ccc 75%, #888 90%, #fff 100%);
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-product-activeGlow 3s ease-in-out infinite;
            font-weight: 510;
        }

        body.mwp-page-product .button{
            border: none;
            padding: 9px 22px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 510;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            color: #e8e8e8;
            background: #2a2a2a;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), inset 0 -1px 0 rgba(0,0,0,0.35), 0 2px 12px rgba(0,0,0,0.6);
            transition: box-shadow 0.3s ease, transform 0.15s ease;
        }

        body.mwp-page-product .button::before{
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 60%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
            animation: mwp-product-btnShine 5s ease-in-out infinite;
        }

        body.mwp-page-product .button:active{ transform: scale(0.97); }

        body.mwp-page-product .hero-section{
            padding-top: 80px;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        body.mwp-page-product .hero-section::before{
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(192,57,43,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        body.mwp-page-product .hero{
            text-align: center;
            animation: mwp-product-fadeUp 1s ease both;
        }

        body.mwp-page-product .hero h1{
            font-size: clamp(3rem, 12vw, 5.5rem);
            font-weight: 590;
            letter-spacing: -0.025em;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        body.mwp-page-product .hero p{
            font-size: clamp(1.1rem, 5vw, 1.7rem);
            font-weight: 490;
            letter-spacing: -0.01em;
            color: #cccccc;
        }

        body.mwp-page-product .section{
            max-width: 1200px;
            margin: 0 auto;
            padding: 90px 28px;
        }

        body.mwp-page-product .section-label{
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;

            color: var(--red-bright);
            margin-bottom: 12px;
        }

        body.mwp-page-product .section-title{
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 650;
            letter-spacing: -0.03em;
            color: #fff;
            margin-bottom: 50px;
        }

        body.mwp-page-product .section-divider{
            width: 100%;
            height: 0.5px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
        }

        body.mwp-page-product .reveal{
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        body.mwp-page-product .reveal.visible{
            opacity: 1;
            transform: none;
        }

        
        body.mwp-page-product .stats-grid{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 0;
        }

        body.mwp-page-product .stat-card{
            background: var(--surface2);
            border: 0.5px solid var(--border);
            border-radius: 16px;
            padding: 28px 24px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s, transform 0.3s;
        }

        body.mwp-page-product .stat-card:hover{
            border-color: rgba(192,57,43,0.2);
            transform: translateY(-2px);
        }

        body.mwp-page-product .stat-card::before{
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(192,57,43,0.35), transparent);
        }

        body.mwp-page-product .stat-card-icon{
            font-size: 22px;
            margin-bottom: 16px;
            opacity: 0.7;
        }

        body.mwp-page-product .stat-card-value{
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: -0.04em;
            color: #fff;
            line-height: 1;
            margin-bottom: 6px;
        }

        body.mwp-page-product .stat-card-value.null-val{
            color: var(--text-muted);
            font-size: 1.6rem;
        }

        body.mwp-page-product .stat-card-label{
            font-size: 13px;
            color: var(--text-dim);
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        body.mwp-page-product .stat-card-sub{
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        
        body.mwp-page-product .checks-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        body.mwp-page-product .check-item{
            background: var(--surface2);
            border: 0.5px solid var(--border);
            border-radius: 12px;
            padding: 18px 20px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            transition: border-color 0.25s, transform 0.25s;
        }

        body.mwp-page-product .check-item:hover{
            border-color: rgba(255,255,255,0.12);
            transform: translateY(-1px);
        }

        body.mwp-page-product .check-dot{
            width: 8px; height: 8px;
            border-radius: 50%;
            background: var(--red-bright);
            flex-shrink: 0;
            margin-top: 5px;
            box-shadow: 0 0 6px var(--red-glow);
        }

        body.mwp-page-product .check-name{
            font-size: 14px;
            font-weight: 600;
            color: #ddd;
            margin-bottom: 3px;
        }

        body.mwp-page-product .check-desc{
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        
        body.mwp-page-product .charts-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        body.mwp-page-product .chart-card{
            background: var(--surface2);
            border: 0.5px solid var(--border);
            border-radius: 16px;
            padding: 28px;
        }

        body.mwp-page-product .chart-title{
            font-size: 15px;
            font-weight: 650;
            color: #fff;
            margin-bottom: 6px;
            letter-spacing: -0.02em;
        }

        body.mwp-page-product .chart-sub{
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 22px;
        }

        body.mwp-page-product .chart-wrap{
            position: relative;
            height: 220px;
        }

        body.mwp-page-product .chart-null-overlay{
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(10,10,10,0.7);
            border-radius: 8px;
            backdrop-filter: blur(4px);
            gap: 8px;
            z-index: 5;
        }

        body.mwp-page-product .chart-null-overlay span{
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: 0.05em;
        }

        body.mwp-page-product .chart-null-overlay .null-icon{
            font-size: 28px;
            opacity: 0.25;
        }

        
        body.mwp-page-product .timing-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        body.mwp-page-product .timing-card{
            background: var(--surface2);
            border: 0.5px solid var(--border);
            border-radius: 16px;
            padding: 28px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s;
        }

        body.mwp-page-product .timing-card:hover{ border-color: rgba(255,255,255,0.1); }

        body.mwp-page-product .timing-ring{
            width: 80px; height: 80px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.05);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 18px;
            position: relative;
            background: radial-gradient(circle, rgba(192,57,43,0.06), transparent 70%);
        }

        body.mwp-page-product .timing-ring-icon{
            font-size: 28px;
            opacity: 0.5;
        }

        body.mwp-page-product .timing-value{
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            color: #fff;
            margin-bottom: 6px;
        }

        body.mwp-page-product .timing-value.null-val{
            color: var(--text-muted);
            font-size: 1.2rem;
        }

        body.mwp-page-product .timing-label{
            font-size: 13px;
            color: var(--text-dim);
            font-weight: 500;
        }

        body.mwp-page-product .timing-sub{
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        
        body.mwp-page-product footer{
            background: var(--surface);
            border-top: 0.5px solid var(--border);
            padding: 60px 28px;
        }

        body.mwp-page-product .footer-inner{
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            align-items: start;
        }

        body.mwp-page-product .footer-left{ display: flex; flex-direction: column; gap: 16px; }

        body.mwp-page-product .footer-email{
            font-size: 14px;
            color: var(--text-dim);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        body.mwp-page-product .footer-email a{
            color: #bbb;
            text-decoration: none;
            transition: color 0.2s;
        }

        body.mwp-page-product .footer-email a:hover{ color: #fff; }

        body.mwp-page-product .footer-socials{ display: flex; gap: 12px; margin-top: 4px; }

        body.mwp-page-product .footer-social-icon{
            width: 36px; height: 36px;
            background: #1a1a1a;
            border: 0.5px solid var(--border);
            border-radius: 5px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s;
            overflow: hidden;
        }

        body.mwp-page-product .footer-social-icon img{
            width: 20px; height: 20px;
            object-fit: contain;
        }

        body.mwp-page-product .footer-social-icon:hover{
            background: #222;
            border-color: rgba(255,255,255,0.15);
        }

        body.mwp-page-product .footer-logo-center{
            text-align: center;
            font-size: 55px;
            font-weight: 700;
            letter-spacing: -0.04em;
            background: linear-gradient(135deg, #555 0%, #aaa 30%, #fff 50%, #aaa 70%, #555 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-product-shimmer 8s linear infinite;
            line-height: 1;
        }

        body.mwp-page-product .footer-nav{ display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }

        body.mwp-page-product .footer-nav-title{
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        body.mwp-page-product .footer-nav a{
            font-size: 14px;
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.2s;
            text-align: right;
        }

        body.mwp-page-product .footer-nav a:hover{ color: #fff; }

        body.mwp-page-product .footer-bottom{
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 24px;
            border-top: 0.5px solid var(--border);
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
        }

        @media (max-width: 1000px) {
            body.mwp-page-product .stats-grid{ grid-template-columns: repeat(2, 1fr); }
            body.mwp-page-product .charts-grid{ grid-template-columns: 1fr; }
            body.mwp-page-product .timing-grid{ grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 700px) {
            body.mwp-page-product .checks-grid{ grid-template-columns: 1fr; }
            body.mwp-page-product .stats-grid{ grid-template-columns: 1fr 1fr; }
            body.mwp-page-product .timing-grid{ grid-template-columns: 1fr; }
            body.mwp-page-product .footer-inner{ grid-template-columns: 1fr; text-align: center; }
            body.mwp-page-product .footer-nav{ align-items: center; }
            body.mwp-page-product .footer-nav a{ text-align: center; }
            body.mwp-page-product .footer-socials{ justify-content: center; }
            body.mwp-page-product .footer-logo-center{ font-size: 40px; }
        }

        @media (max-width: 500px) {
            body.mwp-page-product .container{ padding: 10px 16px; flex-direction: column; text-align: center; }
            body.mwp-page-product .nav{ justify-content: center; gap: 20px; }
            body.mwp-page-product .section{ padding: 60px 16px; }
            body.mwp-page-product .stats-grid{ grid-template-columns: 1fr; }
        }
    


        body.mwp-page-shop *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @keyframes mwp-shop-shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        @keyframes mwp-shop-activeGlow {
            0% { background-position: 0% center; filter: drop-shadow(0 0 4px rgba(255,255,255,0.15)); }
            50% { background-position: 100% center; filter: drop-shadow(0 0 10px rgba(255,255,255,0.45)); }
            100% { background-position: 0% center; filter: drop-shadow(0 0 4px rgba(255,255,255,0.15)); }
        }

        @keyframes mwp-shop-btnShine {
            0% { left: -100%; }
            20% { left: 150%; }
            100% { left: 150%; }
        }

        @keyframes mwp-shop-fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes mwp-shop-modalUp {
            from { opacity: 0; transform: translateY(20px) scale(0.97); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @keyframes mwp-shop-slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes mwp-shop-spin {
            to { transform: rotate(360deg); }
        }

        body.mwp-page-shop{
            min-height: 100vh;
            background: #000000;
            font-family: -apple-system, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', system-ui, sans-serif;
            font-weight: 500;
        }

        body.mwp-page-shop .header{
            position: fixed;
            top: 0; left: 0; width: 100%;
            background: rgba(8, 8, 8, 0.82);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            z-index: 1000;
            border-bottom: 0.5px solid rgba(255,255,255,0.07);
        }

        body.mwp-page-shop .container{
            max-width: 1200px;
            margin: 0 auto;
            padding: 13px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        body.mwp-page-shop .logo{
            font-size: 21px;
            font-weight: 590;
            letter-spacing: -0.2px;
            font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', system-ui, sans-serif;
            background: linear-gradient(90deg,
                #555555 0%,
                #aaaaaa 20%,
                #ffffff 35%,
                #eeeeee 50%,
                #ffffff 65%,
                #aaaaaa 80%,
                #555555 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-shop-shimmer 15s linear infinite;
        }

        body.mwp-page-shop .nav{
            display: flex;
            gap: 30px;
            align-items: center;
            flex-wrap: wrap;
        }

        body.mwp-page-shop .nav-link{
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;
            letter-spacing: -0.2px;
            padding: 5px 0;
            position: relative;
            background: linear-gradient(90deg,
                #444444 0%,
                #777777 50%,
                #444444 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }

        body.mwp-page-shop .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0%; height: 1.5px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
            transition: width 0.4s ease;
        }

        body.mwp-page-shop .nav-link:hover{
            background: linear-gradient(90deg,
                #888888 0%,
                #ffffff 40%,
                #cccccc 60%,
                #888888 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-shop-shimmer 2s linear infinite;
        }

        body.mwp-page-shop .nav-link.active{
            background: linear-gradient(90deg,
                #888888 0%,
                #cccccc 15%,
                #ffffff 30%,
                #eeeeee 45%,
                #ffffff 60%,
                #cccccc 75%,
                #888888 90%,
                #ffffff 100%
            );
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-shop-activeGlow 3s ease-in-out infinite;
            font-weight: 510;
        }

        body.mwp-page-shop .button{
            border: none;
            padding: 9px 22px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 510;
            font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;
            letter-spacing: -0.2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            color: #e8e8e8;
            background: #2a2a2a;
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.1),
                inset 0 -1px 0 rgba(0,0,0,0.35),
                0 2px 12px rgba(0,0,0,0.6);
            transition: box-shadow 0.3s ease, transform 0.15s ease;
        }

        body.mwp-page-shop .button::before{
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 60%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
            animation: mwp-shop-btnShine 5s ease-in-out infinite;
        }

        body.mwp-page-shop .button:active{ transform: scale(0.97); }

        body.mwp-page-shop .content{
            padding-top: 80px;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        body.mwp-page-shop .cards-wrapper{
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 2rem;
        }

        body.mwp-page-shop .cards-container{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            width: 100%;
        }

        body.mwp-page-shop .card{
            flex: 1 1 260px;
            max-width: 300px;
            min-width: 240px;
            background: #0d0d12;
            border-radius: 28px;
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.7);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            overflow: hidden;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.05);
            cursor: pointer;
        }

        body.mwp-page-shop .card:hover{
            box-shadow: 0 32px 50px -16px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.1);
        }

        body.mwp-page-shop .image-box{
            background: #0d0d12;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 260px;
        }

        body.mwp-page-shop .image-box img{
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            aspect-ratio: 1 / 1;
        }

        body.mwp-page-shop .price{
            padding: 1rem 1rem 1.5rem 1rem;
            font-size: 2rem;
            font-weight: 700;
            border-top: 1px solid rgba(255,255,255,0.04);
        }

        body.mwp-page-shop .price span{
            background: linear-gradient(90deg,
                #e74c3c 0%, #0A1733 5%, #0E1E41 10%, #13254F 15%,
                #192D5E 20%, #1F356D 25%, #263E7C 30%, #2C4685 35%,
                #324E8E 40%, #365697 45%, #385E9F 50%, #365697 55%,
                #324E8E 60%, #2C4685 65%, #263E7C 70%, #1F356D 75%,
                #192D5E 80%, #13254F 85%, #0E1E41 90%, #0A1733 95%, #071126 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-shop-shimmer 15s linear infinite;
        }

        body.mwp-page-shop .modal-overlay{
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(18px) saturate(150%);
            -webkit-backdrop-filter: blur(18px) saturate(150%);
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: mwp-shop-fadeIn 0.2s ease;
        }

        body.mwp-page-shop .modal-window{
            background: linear-gradient(160deg, #111116 0%, #0d0d12 60%, #0a0a0e 100%);
            border-radius: 28px;
            max-width: 560px;
            width: 92%;
            border: 1px solid rgba(255,255,255,0.09);
            box-shadow:
                0 0 0 0.5px rgba(255,255,255,0.04),
                0 40px 80px rgba(0,0,0,0.8),
                inset 0 1px 0 rgba(255,255,255,0.07);
            animation: mwp-shop-modalUp 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        body.mwp-page-shop .modal-window::before{
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            border-radius: 28px;
            opacity: 0.4;
        }

        body.mwp-page-shop .modal-close{
            position: absolute;
            top: 16px; right: 18px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            color: #666;
            font-size: 14px;
            width: 30px; height: 30px;
            border-radius: 10%;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s;
            z-index: 10;
        }

        body.mwp-page-shop .modal-close:hover{
            background: rgba(255,255,255,0.12);
            color: #fff;
        }

        body.mwp-page-shop .modal-body{
            display: flex;
            align-items: stretch;
            min-height: 320px;
        }

        body.mwp-page-shop .modal-left{
            flex: 1;
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            border-right: 1px solid rgba(255,255,255,0.07);
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(30px) saturate(200%);
            -webkit-backdrop-filter: blur(30px) saturate(200%);
            box-shadow: inset 1px 0 0 rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.08);
            border-radius: 28px 0 0 28px;
            position: relative;
            overflow: hidden;
        }

        body.mwp-page-shop .modal-left::before{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                rgba(255,255,255,0.07) 0%,
                rgba(255,255,255,0.02) 40%,
                rgba(255,255,255,0.00) 70%,
                rgba(255,255,255,0.03) 100%
            );
            pointer-events: none;
        }

        body.mwp-page-shop .modal-section-label{
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.3);
            margin-bottom: 4px;
        }

        body.mwp-page-shop .modal-section-title{
            font-size: 17px;
            font-weight: 650;
            color: rgba(255,255,255,0.85);
            margin-bottom: 20px;
            letter-spacing: -0.2px;
        }

        body.mwp-page-shop .modal-available-badge{
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 8px;
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 500;
            color: rgba(255,255,255,0.45);
            margin-bottom: 20px;
        }

        body.mwp-page-shop .modal-available-badge::before{
            content: '';
            width: 6px; height: 6px;
            border-radius: 50%;
            background: #3a7d44;
            box-shadow: 0 0 5px #3a7d44;
        }

body.mwp-page-shop footer{
    background: var(--surface, #0a0a0a);
    border-top: 0.5px solid rgba(255,255,255,0.07);
    padding: 60px 28px;
    margin-top: 60px;
}

body.mwp-page-shop .footer-inner{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

body.mwp-page-shop .footer-left{ display: flex; flex-direction: column; gap: 16px; }

body.mwp-page-shop .footer-email{
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.mwp-page-shop .footer-email a{
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
}

body.mwp-page-shop .footer-email a:hover{ color: #fff; }

body.mwp-page-shop .footer-socials{ display: flex; gap: 12px; margin-top: 4px; }

body.mwp-page-shop .footer-social-icon{
    width: 36px; height: 36px;
    background: #1a1a1a;
    border: 0.5px solid rgba(255,255,255,0.07);
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    overflow: hidden;
}

body.mwp-page-shop .footer-social-icon img{
    width: 20px; height: 20px;
    object-fit: contain;
}

body.mwp-page-shop .footer-social-icon:hover{
    background: #222;
    border-color: rgba(255,255,255,0.15);
}

body.mwp-page-shop .footer-logo-center{
    text-align: center;
    font-size: 55px;
    font-weight: 700;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #555 0%, #aaa 30%, #fff 50%, #aaa 70%, #555 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: mwp-shop-shimmer 8s linear infinite;
    line-height: 1;
}

body.mwp-page-shop .footer-nav{ display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }

body.mwp-page-shop .footer-nav-title{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 8px;
}

body.mwp-page-shop .footer-nav a{
    font-size: 14px;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
    text-align: right;
}

body.mwp-page-shop .footer-nav a:hover{ color: #fff; }

body.mwp-page-shop .footer-bottom{
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 0.5px solid rgba(255,255,255,0.07);
    text-align: center;
    font-size: 12px;
    color: #444;
}

@media (max-width: 900px) {
    body.mwp-page-shop .footer-inner{ grid-template-columns: 1fr; text-align: center; }
    body.mwp-page-shop .footer-nav{ align-items: center; }
    body.mwp-page-shop .footer-nav a{ text-align: center; }
    body.mwp-page-shop .footer-socials{ justify-content: center; }
    body.mwp-page-shop .footer-logo-center{ font-size: 40px; }
}
        body.mwp-page-shop .modal-method-card{
            flex: 1;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            gap: 12px;
            transition: border-color 0.2s, background 0.2s;
            position: relative;
        }
        body.mwp-page-shop .funpay-logo-img{
            width: 110px;
            height: auto;
            display: block;
            object-fit: contain;
        }

        body.mwp-page-shop .funpay-logo-img-fallback{
            background: linear-gradient(135deg, #1a1a22 0%, #222230 100%);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 10px 20px;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: -0.3px;
            color: #fff;
        }

        body.mwp-page-shop .funpay-logo-img-fallback span{
            background: linear-gradient(90deg, #6ee7f7, #a78bfa, #6ee7f7);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-shop-shimmer 4s linear infinite;
        }

        body.mwp-page-shop .modal-method-name{
            font-size: 13px;
            font-weight: 500;
            color: rgba(255,255,255,0.4);
        }

        body.mwp-page-shop .modal-right{
            flex: 1;
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        body.mwp-page-shop .modal-right-top{}

        body.mwp-page-shop .modal-price-row{
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 6px;
        }

        body.mwp-page-shop .modal-price-amount{
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -1px;
            color: #fff;
        }

        body.mwp-page-shop .modal-price-currency{
            font-size: 16px;
            font-weight: 500;
            color: rgba(255,255,255,0.4);
        }

        body.mwp-page-shop .modal-price-desc{
            font-size: 13px;
            color: rgba(255,255,255,0.3);
            margin-bottom: 24px;
        }

        body.mwp-page-shop .modal-summary{
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 24px;
        }

        body.mwp-page-shop .modal-summary-row{
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        body.mwp-page-shop .modal-summary-key{
            font-size: 13px;
            color: rgba(255,255,255,0.35);
        }

        body.mwp-page-shop .modal-summary-val{
            font-size: 13px;
            font-weight: 500;
            color: rgba(255,255,255,0.65);
        }

        body.mwp-page-shop .modal-divider-line{
            height: 1px;
            background: rgba(255,255,255,0.06);
            margin: 4px 0;
        }

        body.mwp-page-shop .modal-pay-btn{
            width: 100%;
            border: none;
            padding: 14px 20px;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: -0.1px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            color: #fff;
            border-color: rgba(255,255,255,0.22);
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.15),
                0 6px 30px rgba(0,0,0,0.6),
                0 0 20px rgba(255,255,255,0.03);
                            background: linear-gradient(90deg,
                #e74c3c 0%, #0A1733 5%, #0E1E41 10%, #13254F 15%,
                #192D5E 20%, #1F356D 25%, #263E7C 30%, #2C4685 35%,
                #324E8E 40%, #365697 45%, #385E9F 50%, #365697 55%,
                #324E8E 60%, #2C4685 65%, #263E7C 70%, #1F356D 75%,
                #192D5E 80%, #13254F 85%, #0E1E41 90%, #0A1733 95%, #071126 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-shop-shimmer 15s linear infinite;
                      background-size: 200% 100%;
            border: 1px solid rgba(255,255,255,0.12);
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.1),
                0 4px 20px rgba(0,0,0,0.5);
            transition: all 0.2s ease;
        }

        body.mwp-page-shop .modal-pay-btn::before{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 60%);
            border-radius: 14px;
        }

        body.mwp-page-shop .modal-pay-btn::after{
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 60%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
            animation: mwp-shop-btnShine 4s ease-in-out infinite;
        }

        body.mwp-page-shop .modal-pay-btn:hover{
            transform: translateY(-1px);
        }

        body.mwp-page-shop .modal-pay-btn:active{
            transform: scale(0.98) translateY(0);
        }

        body.mwp-page-shop .toast-notify{
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #111116;
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 14px 20px;
            color: white;
            font-weight: 500;
            z-index: 3000;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 10px 40px rgba(0,0,0,0.6);
            animation: mwp-shop-slideInRight 0.3s ease;
            font-size: 14px;
            letter-spacing: 0.2px;
            transition: opacity 0.3s;
        }

        body.mwp-page-shop .loading-spinner{
            display: inline-block;
            width: 14px; height: 14px;
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            border-top-color: white;
            animation: mwp-shop-spin 0.6s linear infinite;
            margin-right: 8px;
            vertical-align: middle;
        }

        @media (max-width: 750px) {
            body.mwp-page-shop .cards-wrapper{ padding: 1.5rem; }
            body.mwp-page-shop .cards-container{ gap: 1.5rem; }
            body.mwp-page-shop .price{ font-size: 1.7rem; padding: 0.8rem 0.8rem 1.3rem; }
            body.mwp-page-shop .content{ padding-top: 100px; }
            body.mwp-page-shop .image-box{ min-height: 220px; }

            body.mwp-page-shop .modal-body{ flex-direction: column; min-height: unset; }
            body.mwp-page-shop .modal-left{ border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
            body.mwp-page-shop .modal-method-card{ min-height: 100px; }
        }
    


        body.mwp-page-test *{ margin: 0; padding: 0; box-sizing: border-box; }

        body.mwp-page-test{
            --red: #c0392b;
            --red-bright: #e74c3c;
            --red-glow: rgba(192, 57, 43, 0.35);
            --bg: #000000;
            --surface: #0a0a0a;
            --surface2: #111111;
            --border: rgba(255,255,255,0.07);
            --text: #ffffff;
            --text-dim: #888888;
            --text-muted: #444444;
        }

        @keyframes mwp-test-shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        @keyframes mwp-test-activeGlow {
            0% { background-position: 0% center; filter: drop-shadow(0 0 4px rgba(255,255,255,0.15)); }
            50% { background-position: 100% center; filter: drop-shadow(0 0 10px rgba(255,255,255,0.45)); }
            100% { background-position: 0% center; filter: drop-shadow(0 0 4px rgba(255,255,255,0.15)); }
        }

        @keyframes mwp-test-btnShine {
            0% { left: -100%; }
            20% { left: 150%; }
            100% { left: 150%; }
        }

        @keyframes mwp-test-fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes mwp-test-countUp {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes mwp-test-pulseRed {
            0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
            50% { box-shadow: 0 0 20px 6px var(--red-glow); }
        }

        body.mwp-page-test{
            min-height: 100vh;
            background: #000000;
            font-family: -apple-system, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', system-ui, sans-serif;
            font-weight: 500;
            color: #fff;
            overflow-x: hidden;
        }

        
        body.mwp-page-test .header{
            position: fixed;
            top: 0; left: 0; width: 100%;
            background: rgba(8,8,8,0.82);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            z-index: 1000;
            border-bottom: 0.5px solid var(--border);
        }

        body.mwp-page-test .container{
            max-width: 1200px;
            margin: 0 auto;
            padding: 13px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        body.mwp-page-test .logo{
            font-size: 21px;
            font-weight: 590;
            letter-spacing: -0.2px;
            background: linear-gradient(90deg, #555 0%, #aaa 20%, #fff 35%, #eee 50%, #fff 65%, #aaa 80%, #555 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-test-shimmer 15s linear infinite;
        }

        body.mwp-page-test .nav{ display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }

        body.mwp-page-test .nav-link{
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: -0.2px;
            padding: 5px 0;
            position: relative;
            background: linear-gradient(90deg, #444 0%, #777 50%, #444 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }

        body.mwp-page-test .nav-link:hover{
            background: linear-gradient(90deg, #888 0%, #fff 40%, #ccc 60%, #888 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-test-shimmer 2s linear infinite;
        }

        body.mwp-page-test .nav-link.active{
            background: linear-gradient(90deg, #888 0%, #ccc 15%, #fff 30%, #eee 45%, #fff 60%, #ccc 75%, #888 90%, #fff 100%);
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-test-activeGlow 3s ease-in-out infinite;
            font-weight: 510;
        }

        body.mwp-page-test .button{
            border: none;
            padding: 9px 22px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 510;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            color: #e8e8e8;
            background: #2a2a2a;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), inset 0 -1px 0 rgba(0,0,0,0.35), 0 2px 12px rgba(0,0,0,0.6);
            transition: box-shadow 0.3s ease, transform 0.15s ease;
        }

        body.mwp-page-test .button::before{
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 60%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
            animation: mwp-test-btnShine 5s ease-in-out infinite;
        }

        body.mwp-page-test .button:active{ transform: scale(0.97); }

        
        body.mwp-page-test .hero-section{
            padding-top: 80px;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        body.mwp-page-test .hero-section::before{
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(192,57,43,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        body.mwp-page-test .hero{
            text-align: center;
            animation: mwp-test-fadeUp 1s ease both;
        }

        body.mwp-page-test .hero h1{
            font-size: clamp(3rem, 12vw, 5.5rem);
            font-weight: 590;
            letter-spacing: -0.025em;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        body.mwp-page-test .hero p{
            font-size: clamp(1.1rem, 5vw, 1.7rem);
            font-weight: 490;
            letter-spacing: -0.01em;
            color: #cccccc;
        }

        
        body.mwp-page-test .section{
            max-width: 1200px;
            margin: 0 auto;
            padding: 90px 28px;
        }

        body.mwp-page-test .section-label{
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--red-bright);
            margin-bottom: 12px;
        }

        body.mwp-page-test .section-title{
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 650;
            letter-spacing: -0.03em;
            color: #fff;
            margin-bottom: 50px;
        }

        body.mwp-page-test .section-divider{
            width: 100%;
            height: 0.5px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
        }

        
        
        body.mwp-page-test .media-grid{
            display: grid;
            grid-template-columns: 60fr 40fr;
            gap: 24px;
            align-items: start;
        }

        
        body.mwp-page-test .video-wrap{
            border-radius: 16px;
            overflow: hidden;
            background: #0d0d0d;
            border: 0.5px solid rgba(255,255,255,0.08);
            box-shadow: 0 8px 40px rgba(0,0,0,0.6);
        }

        body.mwp-page-test .video-wrap .aspect{
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        body.mwp-page-test .video-wrap iframe{
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            border: none;
            display: block;
        }

        body.mwp-page-test .video-label{
            padding: 14px 18px;
            font-size: 13px;
            color: var(--text-dim);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-weight: 600;
        }

        
        body.mwp-page-test .screenshots-wrap{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        body.mwp-page-test .screenshots-label{
            font-size: 13px;
            color: var(--text-dim);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-weight: 600;
        }

        
        body.mwp-page-test .slider-container{
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: #0d0d0d;
            border: 0.5px solid rgba(255,255,255,0.08);
            box-shadow: 0 8px 40px rgba(0,0,0,0.6);
            height: 260px; 
            width: 100%;
        }

        body.mwp-page-test .slider-track{
            display: flex;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
        }

        body.mwp-page-test .slide{
            min-width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            background: #111;
            flex-shrink: 0;
        }

        body.mwp-page-test .slide-placeholder{
            min-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #333;
            background: #0d0d0d;
            letter-spacing: 0.05em;
            flex-direction: column;
            gap: 12px;
            flex-shrink: 0;
        }

        body.mwp-page-test .slide-placeholder .icon{
            font-size: 36px;
            opacity: 0.3;
        }

        body.mwp-page-test .slider-btn{
            position: absolute;
            top: 50%; transform: translateY(-50%);
            background: rgba(0,0,0,0.7);
            border: 0.5px solid rgba(255,255,255,0.12);
            color: #fff;
            width: 38px; height: 38px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.2s, border-color 0.2s;
            z-index: 10;
            backdrop-filter: blur(8px);
        }

        body.mwp-page-test .slider-btn:hover{ background: rgba(192,57,43,0.5); border-color: var(--red); }
        body.mwp-page-test .slider-btn.prev{ left: 12px; }
        body.mwp-page-test .slider-btn.next{ right: 12px; }

        body.mwp-page-test .slider-dots{
            display: flex;
            justify-content: center;
            gap: 8px;
            padding-top: 4px;
        }

        body.mwp-page-test .dot{
            width: 6px; height: 6px;
            border-radius: 50%;
            background: #333;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
        }

        body.mwp-page-test .dot.active{ background: var(--red-bright); transform: scale(1.3); }

        
        body.mwp-page-test .stats-section{
            background: var(--surface);
            border-top: 0.5px solid var(--border);
            border-bottom: 0.5px solid var(--border);
        }

        body.mwp-page-test .stats-inner{
            max-width: 1200px;
            margin: 0 auto;
            padding: 70px 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
        }

        body.mwp-page-test .stat-item{
            flex: 1;
            text-align: center;
            padding: 20px 40px;
            animation: mwp-test-countUp 0.6s ease both;
        }

        body.mwp-page-test .stat-item:not(:last-child){
            border-right: 0.5px solid var(--border);
        }

        body.mwp-page-test .stat-number{
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 700;
            letter-spacing: -0.04em;
            background: linear-gradient(135deg, #fff 0%, #bbb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }

        body.mwp-page-test .stat-label{
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dim);
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        body.mwp-page-test .stat-sub{
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 4px;
            letter-spacing: 0.05em;
        }

        
        body.mwp-page-test .socials-row{
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        body.mwp-page-test .social-card{
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 10px 28px;
            background: var(--surface2);
            border: 0.5px solid var(--border);
            border-radius: 16px;
            cursor: pointer;
            text-decoration: none;
            transition: border-color 0.3s, background 0.3s, transform 0.2s;
            flex: 1;
            min-width: 220px;
        }

        body.mwp-page-test .social-card:hover{
            border-color: rgba(255,255,255,0.18);
        }

        body.mwp-page-test .social-icon{
            width: 44px; height: 44px;
            display: flex; align-items: center; justify-content: center;
            font-size: 32px;
            overflow: hidden;
        }

        body.mwp-page-test .social-icon img{
            width: 28px; height: 28px;
            object-fit: contain;
        }

        body.mwp-page-test .social-info{ display: flex; flex-direction: column; gap: 3px; }
        body.mwp-page-test .social-name{ font-size: 16px; font-weight: 600; color: #fff; }
        body.mwp-page-test .social-desc{ font-size: 13px; color: var(--text-dim); }

        body.mwp-page-test .social-arrow{
            margin-left: auto;
            color: var(--text-muted);
            font-size: 18px;
            transition: color 0.3s, transform 0.3s;
        }

        body.mwp-page-test .social-card:hover .social-arrow{ color: #fff; transform: translateX(3px); }

        
        body.mwp-page-test .features-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        body.mwp-page-test .feature-card{
            background: var(--surface2);
            border: 0.5px solid var(--border);
            border-radius: 16px;
            padding: 28px;
            transition: border-color 0.3s, transform 0.3s;
            position: relative;
            overflow: hidden;
        }

        body.mwp-page-test .feature-card::before{
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(192,57,43,0.4), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        body.mwp-page-test .feature-card:hover{
            border-color: rgba(192,57,43,0.2);
            transform: translateY(-3px);
        }

        body.mwp-page-test .feature-card:hover::before{ opacity: 1; }

        body.mwp-page-test .feature-icon{
            font-size: 28px;
            margin-bottom: 16px;
        }

        body.mwp-page-test .feature-title{
            font-size: 17px;
            font-weight: 650;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }

        body.mwp-page-test .feature-desc{
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-dim);
        }

        
        body.mwp-page-test .faq-list{
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        body.mwp-page-test .faq-item{
            background: var(--surface2);
            border: 0.5px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            transition: border-color 0.3s;
        }

        body.mwp-page-test .faq-item.open{
            border-color: rgba(192,57,43,0.25);
        }

        body.mwp-page-test .faq-question{
            width: 100%;
            background: none;
            border: none;
            color: #fff;
            font-size: 16px;
            font-weight: 550;
            letter-spacing: -0.01em;
            padding: 22px 24px;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            font-family: inherit;
            transition: color 0.2s;
        }

        body.mwp-page-test .faq-question:hover{ color: #ddd; }



        body.mwp-page-test .faq-answer{
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
        }

        body.mwp-page-test .faq-answer-inner{
            padding: 0 24px 22px;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-dim);
            border-top: 0.5px solid var(--border);
            padding-top: 18px;
        }

        
        body.mwp-page-test footer{
            background: var(--surface);
            border-top: 0.5px solid var(--border);
            padding: 60px 28px;
        }

        body.mwp-page-test .footer-inner{
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            align-items: start;
        }

        body.mwp-page-test .footer-left{ display: flex; flex-direction: column; gap: 16px; }

        body.mwp-page-test .footer-email{
            font-size: 14px;
            color: var(--text-dim);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        body.mwp-page-test .footer-email a{
            color: #bbb;
            text-decoration: none;
            transition: color 0.2s;
        }

        body.mwp-page-test .footer-email a:hover{ color: #fff; }

        body.mwp-page-test .footer-socials{ display: flex; gap: 12px; margin-top: 4px; }

        body.mwp-page-test .footer-social-icon{
            width: 36px; height: 36px;
            background: #1a1a1a;
            border: 0.5px solid var(--border);
            border-radius: 5px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s, transform 0.2s;
            overflow: hidden;
        }

        body.mwp-page-test .footer-social-icon img{
            width: 20px; height: 20px;
            object-fit: contain;
        }

        body.mwp-page-test .footer-social-icon:hover{
            background: #222;
            border-color: rgba(255,255,255,0.15);
        }

        body.mwp-page-test .footer-logo-center{
            text-align: center;
            font-size: 55px;
            font-weight: 700;
            letter-spacing: -0.04em;
            background: linear-gradient(135deg, #555 0%, #aaa 30%, #fff 50%, #aaa 70%, #555 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mwp-test-shimmer 8s linear infinite;
            line-height: 1;
        }

        body.mwp-page-test .footer-nav{ display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }

        body.mwp-page-test .footer-nav-title{
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        body.mwp-page-test .footer-nav a{
            font-size: 14px;
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.2s;
            text-align: right;
        }

        body.mwp-page-test .footer-nav a:hover{ color: #fff; }

        body.mwp-page-test .footer-bottom{
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 24px;
            border-top: 0.5px solid var(--border);
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
        }

        
        body.mwp-page-test .reveal{
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        body.mwp-page-test .reveal.visible{
            opacity: 1;
            transform: none;
        }

        
        @media (max-width: 900px) {
            body.mwp-page-test .media-grid{ grid-template-columns: 1fr; }
            body.mwp-page-test .slider-container{ height: 220px; }
            body.mwp-page-test .features-grid{ grid-template-columns: 1fr 1fr; }
            body.mwp-page-test .footer-inner{ grid-template-columns: 1fr; text-align: center; }
            body.mwp-page-test .footer-nav{ align-items: center; }
            body.mwp-page-test .footer-nav a{ text-align: center; }
            body.mwp-page-test .footer-socials{ justify-content: center; }
            body.mwp-page-test .stats-inner{ flex-direction: column; gap: 30px; }
            body.mwp-page-test .stat-item{ border-right: none !important; border-bottom: 0.5px solid var(--border); padding: 20px; }
            body.mwp-page-test .stat-item:last-child{ border-bottom: none; }
            body.mwp-page-test .footer-logo-center{ font-size: 40px; }
        }

        @media (max-width: 600px) {
            body.mwp-page-test .features-grid{ grid-template-columns: 1fr; }
            body.mwp-page-test .container{ padding: 10px 16px; flex-direction: column; text-align: center; }
            body.mwp-page-test .nav{ justify-content: center; gap: 20px; }
            body.mwp-page-test .section{ padding: 60px 16px; }
            body.mwp-page-test .slider-container{ height: 180px; }
        }
    

@keyframes mwp-shared-accent-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.mwp-hero-title-large {
    font-size: 78px !important;
}

.mwp-shimmer-accent-text,
.mwp-shimmer-accent-text-fast,
.mwp-shimmer-accent-text-slow {
    background: linear-gradient(90deg, #ffffff, #e74c3c, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mwp-shimmer-accent-text {
    animation: mwp-shared-accent-shimmer 5s linear infinite;
}

.mwp-shimmer-accent-text-fast {
    animation: mwp-shared-accent-shimmer 2s linear infinite;
}

.mwp-shimmer-accent-text-slow {
    animation: mwp-shared-accent-shimmer 7s linear infinite;
}

.mwp-hero-accent-text {
    font-size: 1em;
}

.mwp-inline-link-light {
    color: #ffffff;
    text-decoration: none;
}

.mwp-hidden,
.modal-hidden {
    display: none !important;
}

[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="160"] { transition-delay: 0.16s; }
[data-reveal-delay="240"] { transition-delay: 0.24s; }
[data-reveal-delay="320"] { transition-delay: 0.32s; }
[data-reveal-delay="400"] { transition-delay: 0.4s; }

[data-nav-href] {
    cursor: pointer;
}

body.mwp-lock-scroll {
    overflow: hidden !important;
}

body.mwp-page-auth .input-field.input-filled,
body.mwp-page-auth .input-field.input-field-filled {
    background: linear-gradient(90deg, #ffffff, #e74c3c, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: mwp-shared-accent-shimmer 9s linear infinite;
}

body.mwp-page-dashboard .dashboard-actions-section {
    padding-top: 40px;
}

body.mwp-page-dashboard .dashboard-meta-date {
    font-size: 12px;
    color: var(--text-muted);
}

body.mwp-page-dashboard .dashboard-helper-text {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
}

body.mwp-page-dashboard .dashboard-helper-text-with-bottom-gap {
    margin-bottom: 12px;
}

body.mwp-page-dashboard .dashboard-toggle-row-spaced {
    margin-top: 10px;
}

body.mwp-page-dashboard .dashboard-settings-button-wide {
    width: 100%;
    padding: 11px;
}

body.mwp-page-dashboard .beta-notice-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, 'SF Pro Display', sans-serif;
}

body.mwp-page-dashboard .beta-notice-card {
    background: linear-gradient(145deg, #0f0f12, #0a0a0e);
    border-radius: 12px;
    max-width: 460px;
    width: 90%;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.6);
    text-align: center;
}

body.mwp-page-dashboard .beta-notice-title {
    font-size: 23px;
    font-weight: 620;
    color: #fff;
    margin-bottom: 16px;
}

body.mwp-page-dashboard .beta-notice-description {
    font-size: 14px;
    line-height: 1.5;
    color: #aaa;
    margin-bottom: 32px;
}

body.mwp-page-dashboard .beta-notice-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

body.mwp-page-dashboard .beta-notice-secondary-button,
body.mwp-page-dashboard .beta-notice-primary-button {
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

body.mwp-page-dashboard .beta-notice-secondary-button {
    background: #2a2a2a;
    padding: 12px 24px;
    border-radius: 5px;
    color: #ddd;
}

body.mwp-page-dashboard .beta-notice-primary-button {
    background: #c0392b;
    padding: 12px 28px;
    border-radius: 14px;
    color: #fff;
}

body.mwp-page-dashboard .beta-notice-timer {
    margin-top: 20px;
    font-size: 13px;
    color: #888;
}

body.mwp-page-dashboard .modal-overlay.modal-hidden {
    display: none !important;
}

body.mwp-page-shop .image-box.image-box-auto-height {
    min-height: auto;
}

body.mwp-page-shop .shop-product-image.shop-product-image-hidden {
    display: none !important;
}

body.mwp-page-shop .shop-toast-accent {
    background: linear-gradient(90deg, #5C2400, #D16B1A, #5C2400);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: mwp-shared-accent-shimmer 2s linear infinite;
}

body.mwp-page-shop .shop-toast-accent-fast {
    animation-duration: 1s;
}
