/* WEB PANEL PROXY public CSS */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            background: #1a1a2e;
            background-image:
                radial-gradient(ellipse at 20% 50%, rgba(255, 200, 100, 0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(255, 100, 150, 0.05) 0%, transparent 60%);
            overflow: hidden;
            position: relative;
        }

        /* Летающие звёздочки */
        .stars {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .star {
            position: absolute;
            font-size: 1.2rem;
            animation: floatStar 8s ease-in-out infinite;
            opacity: 0.3;
        }

        .star:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; font-size: 1.8rem; }
        .star:nth-child(2) { top: 20%; right: 8%; animation-delay: 1.5s; font-size: 1.4rem; }
        .star:nth-child(3) { bottom: 25%; left: 10%; animation-delay: 3s; font-size: 2rem; }
        .star:nth-child(4) { bottom: 15%; right: 5%; animation-delay: 4.5s; font-size: 1.6rem; }
        .star:nth-child(5) { top: 50%; left: 2%; animation-delay: 2s; font-size: 1.2rem; }
        .star:nth-child(6) { top: 40%; right: 3%; animation-delay: 3.5s; font-size: 1.5rem; }

        @keyframes floatStar {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-30px) rotate(180deg); opacity: 0.8; }
        }

        .container {
            max-width: 700px;
            width: 100%;
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 48px;
            padding: 3rem 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
            position: relative;
            z-index: 1;
            text-align: center;
        }

        /* Коты */
        .cats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.8rem;
            flex-wrap: wrap;
        }

        .cat {
            font-size: 4.5rem;
            display: inline-block;
            animation: catDance 1.8s ease-in-out infinite;
            filter: drop-shadow(0 8px 24px rgba(255, 200, 100, 0.15));
            cursor: default;
            transition: 0.2s;
            user-select: none;
        }

        .cat:hover {
            transform: scale(1.15);
            animation-play-state: paused;
        }

        .cat:nth-child(1) { animation-delay: 0s; }
        .cat:nth-child(2) { animation-delay: 0.3s; font-size: 5rem; }
        .cat:nth-child(3) { animation-delay: 0.6s; }
        .cat:nth-child(4) { animation-delay: 0.9s; font-size: 4.8rem; }

        @keyframes catDance {
            0%, 100% { transform: rotate(-8deg) translateY(0); }
            25% { transform: rotate(8deg) translateY(-8px); }
            50% { transform: rotate(-5deg) translateY(0); }
            75% { transform: rotate(10deg) translateY(-5px); }
        }

        /* Заголовок */
        .title {
            font-size: 2.6rem;
            font-weight: 900;
            color: #f0ece6;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .title .highlight {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .subtitle {
            font-size: 1.1rem;
            color: #a09088;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .subtitle i {
            color: #fbbf24;
            margin: 0 4px;
        }

        /* Прогресс-бар с котами */
        .progress-section {
            margin: 1.8rem 0 2.2rem;
        }

        .progress-track {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            margin-bottom: 0.8rem;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
            background-size: 200% 100%;
            border-radius: 8px;
            animation: progressLoad 3s ease-in-out infinite;
        }

        @keyframes progressLoad {
            0% { width: 0%; background-position: 200% 0; }
            50% { width: 75%; background-position: 0% 0; }
            100% { width: 100%; background-position: -200% 0; }
        }

        .progress-text {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #6a5f58;
            font-weight: 500;
        }

        .progress-text .paws {
            color: #fbbf24;
            letter-spacing: 2px;
        }

        /* Смешные статусы */
        .status-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 20px;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0 2rem;
            min-height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .status-box .emoji {
            font-size: 2rem;
            animation: emojiPop 1s ease-in-out infinite;
        }

        @keyframes emojiPop {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .status-box .message {
            font-size: 1.05rem;
            color: #f0ece6;
            font-weight: 500;
        }

        .status-box .message span {
            color: #fbbf24;
        }

        /* Кнопка */
        .btn-fun {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border: none;
            padding: 0.9rem 2.8rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.05rem;
            color: #1a1a2e;
            cursor: pointer;
            transition: 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: inherit;
            box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
        }

        .btn-fun:hover {
            transform: scale(1.04);
            box-shadow: 0 12px 32px rgba(251, 191, 36, 0.3);
        }

        .btn-fun:active {
            transform: scale(0.96);
        }

        .btn-fun i {
            font-size: 1.2rem;
        }

        /* Счётчик тыков */
        .click-counter {
            margin-top: 1.5rem;
            font-size: 0.85rem;
            color: #6a5f58;
        }

        .click-counter span {
            color: #fbbf24;
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* Адаптив */
        @media (max-width: 600px) {
            .container {
                padding: 2rem 1.5rem;
                border-radius: 32px;
            }

            .cats {
                gap: 1rem;
            }

            .cat {
                font-size: 3.2rem !important;
            }

            .title {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1rem;
            }

            .status-box .message {
                font-size: 0.9rem;
            }

            .btn-fun {
                width: 100%;
                justify-content: center;
                padding: 0.8rem 1.5rem;
            }

            .stars {
                display: none;
            }
        }

        @media (max-width: 400px) {
            .cat {
                font-size: 2.6rem !important;
            }
            .title {
                font-size: 1.6rem;
            }
            .status-box {
                padding: 1rem;
            }
            .status-box .emoji {
                font-size: 1.5rem;
            }
        }