/* WEB PANEL PROXY public CSS */
:root {
            --bg-color: #0d0f12;
            --primary-color: #00f3ff;
            --secondary-color: #ff0055;
            --text-color: #e0e6ed;
            --panel-bg: rgba(16, 20, 29, 0.75);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            position: relative;
        }

        /* Анимированный фоновый Canvas */
        #bg-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        /* Главный контейнер */
        .container {
            position: relative;
            z-index: 2;
            background: var(--panel-bg);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 16px;
            padding: 2.5rem 3rem;
            max-width: 600px;
            width: 90%;
            text-align: center;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.15),
                        inset 0 0 15px rgba(0, 243, 255, 0.05);
        }

        /* Статус-индикатор */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 0, 85, 0.15);
            border: 1px solid var(--secondary-color);
            color: var(--secondary-color);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--secondary-color);
            animation: pulse 1.5s infinite;
        }

        /* Заголовок */
        h1 {
            font-size: 2.2rem;
            margin-bottom: 0.8rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
        }

        p {
            color: #94a3b8;
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 2rem;
        }

        /* Таймер обратного отсчета */
        .timer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-bottom: 2rem;
        }

        .timer-box {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 12px 5px;
            transition: transform 0.2s, border-color 0.2s;
        }

        .timer-box:hover {
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

        .timer-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            font-family: monospace;
        }

        .timer-label {
            font-size: 0.7rem;
            color: #64748b;
            text-transform: uppercase;
            margin-top: 4px;
        }

        /* Прогресс-бар */
        .progress-wrapper {
            margin-bottom: 1.5rem;
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #64748b;
            margin-bottom: 6px;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            width: 72%;
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
            border-radius: 3px;
            box-shadow: 0 0 10px var(--primary-color);
            animation: progressGlow 2s infinite alternate;
        }

        /* Анимации */
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.3; transform: scale(0.8); }
        }

        @keyframes progressGlow {
            0% { filter: brightness(1); }
            100% { filter: brightness(1.3); }
        }

        /* Адаптивность */
        @media (max-width: 480px) {
            .container { padding: 1.5rem; }
            h1 { font-size: 1.6rem; }
            .timer-value { font-size: 1.3rem; }
        }