    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-image: url('../Images/exptextb.jpg');
            background-attachment: fixed;
            background-color: #f5e6d3;
            color: #993200;
            font-family: 'Comic Sans MS', 'Chalkboard SE', cursive, sans-serif;
            line-height: 1.5;
            padding: 20px;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
        }

        /* Заголовок */
        .site-title {
            text-align: center;
            margin: 20px 0 10px;
        }

        .site-title h1 {
            font-size: 2.8rem;
            color: #993200;
            letter-spacing: 3px;
        }

        /* Форма поиска */
        .search-form {
            background: rgba(255, 255, 255, 0.5);
            padding: 15px;
            border-radius: 50px;
            margin: 20px 0;
            text-align: center;
        }

        .search-form form {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .search-form input[type="search"] {
            padding: 10px 18px;
            font-size: 1rem;
            border-radius: 30px;
            border: 1px solid #cc8800;
            background: #fff;
            font-family: inherit;
            width: 250px;
            max-width: 60%;
        }

        .search-form input[type="submit"] {
            background: #CC9900;
            color: white;
            border: none;
            padding: 10px 24px;
            font-size: 1rem;
            border-radius: 30px;
            cursor: pointer;
            font-family: inherit;
            transition: background 0.3s;
        }

        .search-form input[type="submit"]:hover {
            background: #222;
        }

        /* Ссылки — одна колонка по центру */
        .links-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin: 30px 0;
        }

        .links-list a {
            display: block;
            background: rgba(255, 255, 255, 0.6);
            color: #993200;
            text-decoration: none;
            font-size: 1.7rem;
            font-weight: bold;
            padding: 12px 24px;
            border-radius: 40px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid transparent;
            width: 100%;
            max-width: 450px;
        }

        .links-list a:hover {
            background: #CC9900;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        /* Специальные ссылки (словари, справочники) */
        .special-section {
            margin: 40px 0 20px;
            padding-top: 20px;
            border-top: 2px solid #cc8800;
        }

        .special-title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #993200;
        }

        .special-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .special-list a {
            display: block;
            background: rgba(255, 255, 255, 0.5);
            color: #993200;
            text-decoration: none;
            font-size: 1.6rem;
            font-weight: bold;
            padding: 10px 20px;
            border-radius: 30px;
            text-align: center;
            transition: all 0.3s;
            width: 100%;
            max-width: 400px;
        }

        .special-list a:hover {
            background: #CC9900;
            color: white;
        }

        /* Кнопка "Наверх" */
        .fixedbut1 {
            position: fixed;
            bottom: 100px;
            right: 20px;
            display: none;
            background: #CC9900;
            color: #fff;
            text-decoration: none;
            padding: 8px 24px;
            font-size: 1.2rem;
            border-radius: 40px;
            font-family: inherit;
            cursor: pointer;
            border: none;
            z-index: 1000;
            transition: background 0.2s;
        }

        .fixedbut1:hover {
            background: #222;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .container {
                max-width: 100%;
            }
            .links-list a {
                max-width: 90%;
                font-size: 1rem;
            }
            .special-list a {
                max-width: 85%;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 550px) {
            body {
                padding: 15px;
            }
            .site-title h1 {
                font-size: 2rem;
            }
            .links-list a {
                padding: 10px 20px;
            }
        }
    </style>