        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(145deg, #f6f8fc 0%, #eef2f7 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            color: #1e293b;
        }

        .plugin-card {
            max-width: 1000px;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 40px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            padding: 2.5rem;
            transition: transform 0.2s ease;
        }

        @media (max-width: 640px) {
            body {
                padding: 1rem;
            }
            .plugin-card {
                padding: 1.5rem;
                border-radius: 32px;
            }
        }

        /* Шапка */
        .plugin-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .plugin-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
        }

        .plugin-icon i {
            font-size: 42px;
            color: white;
        }

        .plugin-title-section h1 {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: linear-gradient(to right, #1e293b, #334155);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.25rem;
        }

        .plugin-badge {
            background: #e0f2fe;
            color: #0369a1;
            padding: 0.25rem 0.75rem;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            border: 1px solid #bae6fd;
        }

        /* Описание */
        .description {
            background: #f8fafc;
            padding: 1.75rem;
            border-radius: 24px;
            margin-bottom: 2.5rem;
            border: 1px solid #e2e8f0;
            line-height: 1.6;
        }

        .description p {
            color: #334155;
            font-size: 1.1rem;
        }

        .feature-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1.25rem;
        }

        .feature-tag {
            background: white;
            padding: 0.4rem 1rem;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #475569;
            border: 1px solid #cbd5e1;
            box-shadow: 0 1px 2px rgba(0,0,0,0.02);
        }

        /* Блок кнопок и счетчиков */
        .download-actions {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .buttons-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        @media (max-width: 500px) {
            .buttons-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        .download-btn {
            background: white;
            border-radius: 20px;
            padding: 1.5rem 1.5rem 1.2rem 1.5rem;
            text-decoration: none;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.03);
            transition: all 0.2s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .download-btn:hover {
            border-color: #94a3b8;
            box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
        }

        .btn-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.2rem;
        }

        .btn-icon {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .wp-icon {
            background: #2271b1;
            color: white;
        }

        .github-icon {
            background: #0d1117;
            color: white;
        }

        .btn-text {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0f172a;
        }

        .btn-sub {
            font-size: 0.9rem;
            color: #64748b;
            margin-top: 2px;
        }

        .stats-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 0.5rem;
            border-top: 1px dashed #cbd5e1;
            padding-top: 1rem;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #475569;
            font-weight: 500;
        }

        .stat-item i {
            font-size: 1.1rem;
            color: #64748b;
        }

        .counter-number {
            font-weight: 700;
            font-size: 1.5rem;
            color: #0f172a;
            letter-spacing: -0.01em;
            line-height: 1;
        }

        .counter-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: #64748b;
            margin-left: 0.25rem;
        }

        /* Нижний блок с тоталом */
        .total-stats {
            background: #1e293b;
            border-radius: 20px;
            padding: 1.2rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .total-label {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 500;
            opacity: 0.9;
        }

        .total-number {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #fff, #e2e8f0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .update-note {
            font-size: 0.85rem;
            color: #94a3b8;
        }

        /* Индикатор загрузки */
        .loading-skeleton {
            display: inline-block;
            width: 60px;
            height: 1.5rem;
            background: #e2e8f0;
            border-radius: 8px;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }

        .error-message {
            color: #ef4444;
            font-size: 0.9rem;
        }

        .footer-note {
            margin-top: 1.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: #64748b;
        }