/* WEB PANEL PROXY public CSS */
/* Базовые сбросы и шрифты */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #fdfbf7; /* Кремовый фон */
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Шапка */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2e7d32; /* Темно-зеленый */
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo span {
            font-size: 1.8rem;
        }

        nav a {
            margin-left: 20px;
            text-decoration: none;
            color: #555;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #2e7d32;
        }

        /* Основной контент */
        main {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 4rem 2rem;
        }

        .hero {
            max-width: 800px;
        }

        h1 {
            font-size: 3rem;
            color: #1b5e20;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2.5rem;
        }

        /* Кнопка */
        .btn {
            display: inline-block;
            background-color: #4caf50;
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s, transform 0.2s;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        }

        .btn:hover {
            background-color: #388e3c;
            transform: translateY(-2px);
        }

        .btn:active {
            transform: translateY(0);
        }

        /* Декоративные элементы */
        .features {
            display: flex;
            gap: 2rem;
            margin-top: 4rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .feature-item {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            width: 200px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            border: 1px solid #eee;
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            display: block;
        }

        .feature-text {
            font-size: 0.9rem;
            font-weight: 600;
            color: #444;
        }

        /* Подвал */
        footer {
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
            color: #999;
            background-color: #f4f4f4;
            margin-top: auto;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            nav a {
                margin: 0 10px;
                font-size: 0.9rem;
            }

            .features {
                flex-direction: column;
                align-items: center;
            }
        }