body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            /* Фоновое изображение из вашего запроса */
            background-image: url('https://files.716.su/sites/common/images/background.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            overflow-x: hidden;
        }

        /* Контейнер в стиле "Жидкое стекло" */
        .glass-container {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 28px;
            padding: 3rem 2rem;
            width: 90%;
            max-width: 480px;
            text-align: center;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            color: #ffffff;
        }

        .glass-container:hover {
            background: rgba(255, 255, 255, 0.16);
            transform: translateY(-5px);
        }

        .logo {
            max-width: 50%;
            filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
            margin-bottom: 1.5rem;
        }

        h1 {
            font-size: 2rem;
            font-weight: 800;
            margin: 0 0 1.5rem 0;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.6);
            color: #ffffff;
        }

        /* Улучшение читаемости обычного текста и списков */
        p, li {
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            text-shadow: 0 1px 4px rgba(0,0,0,0.7);
            font-weight: 400;
        }

        ul {
            text-align: left;
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        /* Стилизация ссылок внутри текста и списков */
        p a, li a {
            color: #00e5ff;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dashed rgba(0, 229, 255, 0.4);
            transition: all 0.3s ease;
        }

        p a:hover, li a:hover {
            color: #ffffff;
            border-bottom-color: #ffffff;
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
        }

        /* Кнопки-ссылки */
        .nav-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .nav-links a {
            text-decoration: none;
            color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
            padding: 14px 20px;
            border-radius: 12px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            text-shadow: 0 1px 2px rgba(0,0,0,0.4);
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.5);
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        hr {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
            margin: 2rem 0;
        }

        /* Адаптивность */
        @media (max-width: 480px) {
            .glass-container {
                padding: 2.5rem 1.5rem;
            }
            h1 {
                font-size: 1.6rem;
            }
        }