 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Указание шрифта */
            margin: 0;
            background-color: #1a1a1a;
            color: #fff;
            line-height: 1.6;
        }
        .container {
            max-width: 960px;
            margin: 0 auto;
            padding: 20px;
            position: relative; /* Для позиционирования всплывающего окна */
        }
        header {
            background-image: url('12.webp'); /* Путь к вашему изображению */
            background-size: cover;
            background-position: center;
            padding: 100px 20px; /* Увеличим отступ, чтобы текст был виден на фоне */
            text-align: center;
            border-radius: 10px;
            margin-bottom: 30px;
            color: white; /* Цвет текста на фоне изображения */
        }
        header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Тень для лучшей читаемости */
        }
        header p {
            font-size: 1.2em;
            opacity: 0.8;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Тень для лучшей читаемости */
        }
        .main-content {
            background-color: #2c2c2c;
            padding: 30px 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            color: #fff;
        }
        .main-content h2 {
            font-size: 2em;
            margin-bottom: 15px;
            color: #64b5f6;
        }
        .main-content p {
            opacity: 0.8;
            margin-bottom: 15px;
        }
        .main-content ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        .main-content li {
            opacity: 0.8;
            margin-bottom: 10px;
        }
        .promo {
            background-color: #2c2c2c;
            padding: 30px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
        }
        .promo h2 {
            font-size: 2em;
            margin-bottom: 15px;
            color: #ffc107;
        }
        .promo a {
            display: inline-block;
            background-color: #ffc107;
            color: #1a1a1a;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .promo a:hover {
            background-color: #e0a800;
        }
        footer {
            text-align: center;
            padding: 20px 0;
            opacity: 0.6;
            font-size: 0.9em;
        }

        /* Всплывающее окно */
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #1e293b;
            color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
            z-index: 1000;
            text-align: center;
        }
        .popup h2 {
            font-size: 2em;
            margin-bottom: 15px;
            color: #ffc107;
        }
        .popup p {
            font-size: 1.2em;
            margin-bottom: 20px;
        }
        .popup a {
            display: inline-block;
            background-color: #ffc107;
            color: #1a1a1a;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .popup a:hover {
            background-color: #e0a800;
        }
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        .hide {
            display: none;
        }

        /* Адаптивные стили */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            header {
                padding: 60px 15px;
            }
            header h1 {
                font-size: 2em;
            }
            .main-content h2 {
                font-size: 1.8em;
            }
            .main-content p {
                font-size: 1em;
            }
            .main-content ul {
                padding-left: 15px;
            }
            .main-content li {
                font-size: 1em;
            }
            .popup {
                padding: 20px;
                max-width: 90%;
            }
            .popup h2 {
                font-size: 1.8em;
            }
            .popup p {
                font-size: 1em;
            }
            .popup a {
                padding: 10px 20px;
            }
        }