/* WEB PANEL PROXY public CSS */
:root {
            --bg-color: #0b0f19;
            --card-bg: rgba(255, 255, 255, 0.04);
            --card-border: rgba(255, 255, 255, 0.08);
            --accent-glow: #3b82f6;
            --accent-purple: #8b5cf6;
            --text-main: #f3f4f6;
            --text-muted: #9ca3af;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
            position: relative;
        }

        /* Декоративные фоновые свечения */
        .glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            z-index: 0;
            opacity: 0.5;
            animation: pulse 8s ease-in-out infinite alternate;
        }

        .glow-1 {
            width: 350px;
            height: 350px;
            background: var(--accent-glow);
            top: -50px;
            left: -50px;
        }

        .glow-2 {
            width: 400px;
            height: 400px;
            background: var(--accent-purple);
            bottom: -50px;
            right: -50px;
        }

        @keyframes pulse {
            0% { transform: scale(1) translate(0, 0); }
            100% { transform: scale(1.2) translate(30px, -20px); }
        }

        /* Главный контейнер */
        .container {
            position: relative;
            z-index: 1;
            width: 90%;
            max-width: 650px;
            padding: 2.5rem;
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--card-border);
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            text-align: center;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 50px;
            color: #60a5fa;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background-color: #60a5fa;
            border-radius: 50%;
            box-shadow: 0 0 8px #60a5fa;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        p.description {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        /* Прогресс-бар */
        .progress-wrapper {
            margin-bottom: 2rem;
            text-align: left;
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .progress-bar-bg {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-bar-fill {
            height: 100%;
            width: 85%; /* Процент готовности */
            background: linear-gradient(90deg, var(--accent-glow), var(--accent-purple));
            border-radius: 10px;
            transition: width 1s ease-in-out;
        }

        /* Форма подписки */
        .subscribe-form {
            display: flex;
            gap: 10px;
            margin-bottom: 2rem;
        }

        .subscribe-form input[type="email"] {
            flex: 1;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .subscribe-form input[type="email"]:focus {
            border-color: var(--accent-glow);
            box-shadow: 0 0 12px rgba(59, 130, 246, 0.3);
        }

        .subscribe-form button {
            padding: 14px 24px;
            background: linear-gradient(135deg, var(--accent-glow), var(--accent-purple));
            border: none;
            border-radius: 12px;
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .subscribe-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
        }

        /* Соцсети и контакты */
        .footer-contacts {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            padding-top: 1.5rem;
            border-top: 1px solid var(--card-border);
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .footer-contacts a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contacts a:hover {
            color: #fff;
        }

        /* Адаптивность для мобильных */
        @media (max-width: 576px) {
            .container {
                padding: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            .subscribe-form {
                flex-direction: column;
            }
            .subscribe-form button {
                width: 100%;
            }
            .footer-contacts {
                flex-direction: column;
                gap: 10px;
            }
        }