/* Скрытие атрибуции Leaflet (для карты)
.leaflet-control-attribution {
    display: none;
}
*/

/* Основные стили для body */
body {
    background-color: black;
    color: #b4b4b4;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* Основной контейнер навигации */
.navbar {
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1000;
}

/* Верхняя строка: логотип, название, язык, даты */
.navbar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Контейнер для логотипа, названия и языка */
.navbar-logo {
    display: flex;
    align-items: center;
}

/* Стили для логотипа */
.navbar-logo img {
    height: 100px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(162, 213, 242, 0.6);
}

/* Контейнер для названия и языка */
.navbar-logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 1rem;
}

/* Стили для названия сайта */
.eol-highlight-menu {
    color: #a2d5f2;
    text-shadow: 0 0 4px rgba(162, 213, 242, 0.5);
    font-size: 1.5rem;
}

.eol-highlight {
    color: #a2d5f2;
    text-shadow: 0 0 4px rgba(162, 213, 242, 0.5);
}

.let15 {
    font-weight: bold;              /* Жирный */
    font-size: 1.5em;               /* Больше обычного текста */
    letter-spacing: 2px;            /* Разрядка для "космического" вида */
    position: relative;
    bottom: 0.4rem;
}

.plot-container {
    width: 60%;
    margin: 0 auto;
}

/* Кнопка бургер-меню */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 10rem; /* Смещение влево относительно right: 1rem */
    top: 0rem;
    width: 120px;
    height: 120px;
    padding: 0;
}

/* SVG-иконка меню */
.navbar-toggle-icon {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 8px rgba(162, 213, 242, 0.8));
}

/* Линии вихря в SVG */
.wind-line {
    stroke-linecap: round;
    stroke-width: 8;
    transition: all 0.3s ease;
}

/* Анимация вращения линий в обычном состоянии */
.wind-line-1 {
    animation: spin-wind 4s linear infinite;
}
.wind-line-2 {
    animation: spin-wind 3.5s linear infinite reverse;
}
.wind-line-3 {
    animation: spin-wind 3s linear infinite;
}

/* Анимация вихря */
@keyframes spin-wind {
    0% {
        transform: rotate(0deg);
        transform-origin: center;
    }
    100% {
        transform: rotate(360deg);
        transform-origin: center;
    }
}

/* Трансформация в крестик при активации */
.navbar-toggle.active .wind-line-1 {
    d: path("M20 20 L80 80");
    stroke: #a2d5f2;
    animation: none;
}
.navbar-toggle.active .wind-line-2 {
    d: path("M80 20 L20 80");
    stroke: #a2d5f2;
    animation: none;
}
.navbar-toggle.active .wind-line-3 {
    opacity: 0;
}

/* Нижняя строка: основное меню */
.navbar-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

/* Список пунктов меню */
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Элементы меню */
.nav-list li {
    margin: 0 1rem;
    position: relative;
}

/* Ссылки меню */
.nav-list a {
    color: #F4A460;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Эффект при наведении на ссылки */
.nav-list a:hover {
    color: #a2d5f2;
    text-shadow: 0 0 8px rgba(162, 213, 242, 0.6);
}

/* Посещённые ссылки */
.nav-list a:visited {
    color: #F4A460;
}

/* Родительский элемент выпадающего меню */
.nav-dropdown > span {
    color: #F4A460;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Эффект при наведении на выпадающий пункт */
.nav-dropdown > span:hover {
    color: #a2d5f2;
    text-shadow: 0 0 8px rgba(162, 213, 242, 0.6);
}

/* Выпадающее подменю */
.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(47, 47, 47, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 200px;
    z-index: 10;
}

/* Показ подменю при наведении */
.nav-dropdown:hover .nav-submenu {
    display: block;
}

/* Элементы подменю */
.nav-submenu li {
    margin: 0;
    padding: 0.5rem 1rem;
}

/* Ссылки подменю */
.nav-submenu a {
    font-size: 0.9rem;
}

/* Подсветка пункта "Часовой прогноз погоды" */
.nav-list a.highlight-weather-forecast {
    color: #bdebfd !important;
    text-shadow: 0 0 1px rgba(162, 213, 242, 0.8);
    font-size: 1rem;
    animation: pulse-glow 5s ease-in-out infinite;
}

/* Hover для подсветки */
.nav-list a.highlight-weather-forecast:hover {
    color: #bdebfd !important;
    text-shadow: 0 0 8px rgba(162, 213, 242, 0.9) !important;
}

/* Visited для подсветки */
.nav-list a.highlight-weather-forecast:visited {
    color: #bdebfd !important;
    text-shadow: 0 0 8px rgba(162, 213, 242, 0.8);
}

/* Анимация пульсации свечения */
@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 7px rgba(162, 213, 242, 0.6), 0 0 3px rgba(162, 213, 242, 0.1);
    }
    50% {
        text-shadow: 0 0 18px rgba(162, 213, 242, 0.8), 0 0 6px rgba(162, 213, 242, 0.4);
    }
}

/* Блок с датами */
.data-info {
    position: absolute;
    right: 2rem;
    top: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    font-size: 0.9rem;
}

/* Таблица дат */
.data-info table {
    color: #e0e0e0;
    border-collapse: collapse;
}

/* Ячейки таблицы */
.data-info td {
    padding: 0.2rem 0.5rem;
    color: #F4A460;
    font-weight: 600;
}

/* Значения в таблице */
.data-info td:last-child {
    color: #fcf0e2;
    font-weight: 400;
}

.navbar-eol-lang {
    position: relative;
    top: -1rem;
    left: 1rem;
}

/* Форма выбора языка */
.language-form {
    position: relative;
    align-items: center;
    gap: 0.3rem;
    top: 1.1rem;

}

/* Лейбл формы языка */
.language-form label {
    color: #F4A460;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Выпадающий список языка */
.language-form select {
    background: rgba(255, 255, 255, 0.1); /* Серый фон в закрытом состоянии */
    border: 1px solid #a2d5f2;
    color: rgb(224, 224, 224);
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    -webkit-appearance: none; /* Отключаем нативный стиль для WebKit-браузеров */
    -moz-appearance: none; /* Отключаем нативный стиль для Firefox */
    appearance: none; /* Стандартизированный способ отключения нативного стиля */
}

/* Стили для элементов option */
.language-form select option {
    background: rgba(47, 47, 47, 0.95); /* Серый фон для раскрытого списка, аналогичный .nav-submenu */
    color: rgb(224, 224, 224); /* Цвет текста, как в select */
    font-family: 'Inter', sans-serif; /* Шрифт, как в основном интерфейсе */
    font-size: 0.9rem; /* Размер шрифта, как в select */
    padding: 0.5rem; /* Отступы для улучшения читаемости */
}

/* Эффект при наведении на select */
.language-form select:hover {
    box-shadow: 0 0 8px rgba(162, 213, 242, 0.5);
}

/* Для поддержки в Firefox (некоторые браузеры игнорируют стили option) */
.language-form select::-moz-focus-inner {
    border: 0;
    padding: 0;
}



/* Футер */
footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    color: #a2d5f2;
    text-shadow: 0 0 4px rgba(162, 213, 242, 0.5);
}

/* Стили для solar_plan.html */
.faq-section {
    max-width: 90%;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


.faq-section-wind {
    max-width: 90%;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
                url('/static/images/wind-farm-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;  /* Красивый параллакс при скролле */
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
/* Затемнение (overlay) для лучшей читаемости текста */
.faq-section-wind::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);  /* Полупрозрачный чёрный слой (регулируйте opacity от 0.4 до 0.7) */
    z-index: -1;  /* Под контентом */
}


.faq-section-sun {
    max-width: 90%;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
                url('/static/images/sun-farm-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;  /* Красивый параллакс при скролле */
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
/* Затемнение (overlay) для лучшей читаемости текста */
.faq-section-sun::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);  /* Полупрозрачный чёрный слой (регулируйте opacity от 0.4 до 0.7) */
    z-index: -1;  /* Под контентом */
}


/* Заголовки страницы */
.solar-title {
    color: #a2d5f2;
    text-shadow: 0 0 4px rgba(162, 213, 242, 0.5);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

/* Текст инструкции */
.text-center.italic {
    color: #e0e0e0;
    font-style: italic;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Контейнер для карты и формы */
.map-form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1rem;
}


/* Контейнер карты */
#map-container {
    width: 100%;
    height: 400px;
    border-radius: 6px; /* Скругление углов контейнера */
    overflow: hidden; /* Обрезает выступающие углы карты */
    position: relative;
    background: rgba(255, 255, 255, 0.05); /* Фон в стиле твоего дизайна */
}


/* Стили для контейнера кнопок зума (родитель, чтобы фон иконок не наследовался) */
#map-container .ol-zoom {
    background-color: transparent !important; /* Темно-серый фон, как у .nav-submenu */
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important; /* Тень как у navbar */
}

/* Стили для кнопок зума */
#map-container .ol-zoom-in,
#map-container .ol-zoom-out {
    border-radius: 6px !important; /* Скругление углов кнопок зума */
    background-color: transparent !important; /* Прозрачный фон, чтобы родительский фон применялся */
    color: #a2d5f2 !important; /* Голубой цвет иконок (+/-), как у .eol-highlight */
    border: 1px solid #a2d5f2 !important; /* Граница как у форм */
    font-size: 26px !important; /* Размер иконок */
    transition: background 0.3s ease, box-shadow 0.3s ease; /* Плавные переходы */
}

/* Стили для контейнера атрибуции */
#map-container .ol-attribution {
    background-color: transparent !important; /* Темно-серый фон */
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Стили для кнопки атрибуции */
#map-container .ol-attribution button {
    border-radius: 6px !important; /* Скругление углов */
    background-color: transparent !important; /* Прозрачный фон */
    color: #a2d5f2 !important; /* Голубой цвет иконки "i" */
    border: 1px solid #a2d5f2 !important; /* Граница */
    font-family: 'Inter', sans-serif !important; /* Твой шрифт */
    font-size: 24px !important; /* Размер иконки */
    padding: 6px !important; /* Область касания */
}

@media (max-width: 768px) {
    /* Исправление иконки "i" (псевдоэлемент) */
    #map-container .ol-attribution button::before {
        content: "i" !important; /* Код иконки OpenLayers */
}
}




/* Поля формы */
.form-fields {
    flex: 0 0 20%;
    min-width: 170px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Группа полей формы */
.form-group {
    margin-bottom: 1rem;
}

/* Лейблы формы */
.form-group label {
    display: block;
    color: #F4A460;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Поля ввода и select */
.form-group input,
.form-group select {
    width: 95%;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #a2d5f2;
    color: #e0e0e0;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    transition: box-shadow 0.3s ease;
}

/* Эффект при наведении на поля ввода */
.form-group input:hover,
.form-group select:hover {
    box-shadow: 0 0 8px rgba(162, 213, 242, 0.5);
}

/* Кнопка формы */
.solar-form button {
    background: #568e30;
    color: #e0e0e0;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Эффект при наведении на кнопку */
.solar-form button:hover {
    box-shadow: 0 0 8px rgba(162, 213, 242, 0.6);
}

/* Ошибки формы */
.solar-error {
    color: #e56969;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Секция результатов */
.result-section {
    margin-top: 2rem;
    padding-top: 2rem;
}

/* Обновлённые стили для таблиц результатов */
.table-container3 {
    margin-top: 0rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Таблицы результатов */
.table-container3 table {
    margin: 0;
    color: #e0e0e0;
    border: 1px solid #343434;
    font-family: 'Inter', sans-serif;
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
}

/* Заголовки таблиц */
.table-container3 th {
    height: 40px;
    text-align: left;
    padding: 0.5rem 1rem;
    border: 1px solid #343434;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: #F4A460;
}

/* Ячейки таблиц */
.table-container3 td {
    padding: 0.5rem 1rem;
    border: 1px solid #343434;
    text-align: left;
}

/* Выделение строки в таблице результатов */
.highlight-row {
    box-shadow: 0 0 18px rgba(128, 203, 255, 0.74);
}

/* Ячейки в выделенной строке */
.highlight-row td {
    color: #568e30;
    font-size: 1.5rem;
    font-weight: 600;
}






/* Адаптивные стили для экранов до 1080px */
@media (max-width: 1080px) {
    .plot-container {
    width: 85%;
}
    .nav-list li {
        margin: 0 0.3rem;
        font-size: 0.8rem;
        text-align: center;
    }
    .nav-list a {
        font-size: 0.8rem;
    }
    .nav-list a.highlight-weather-forecast {
        font-size: 0.8rem;
    }
}

/* Адаптивные стили для экранов до 768px */
@media (max-width: 768px) {
    .plot-container {
        width: 100%;
    }
    .language-form {
        gap: 0.3rem;
        top: 1.5rem;
    }
    .data-info {
        display: none;
    }
    .navbar {
        padding: 1rem;
    }
    .navbar-eol-lang {
        position: relative;
        top: 1rem;
        left: 1rem;
    }
    .navbar-logo img {
        display: none;
        margin-left: 1rem;
        height: 80px;
    }
    .eol-highlight {
        font-size: 1.2rem;
    }
    .navbar-top {
        flex-direction: column;
        align-items: flex-start;
        height: 100px;
    }
    .navbar-logo {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-logo-text {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .navbar-toggle {
        display: block;
        right: 2rem;
        width: 96px;
        height: 96px;
    }
    .navbar-toggle-icon {
        width: 96px;
        height: 96px;
    }
    .navbar-bottom {
        display: none;
        width: 100%;
        position: absolute;
        left: 0;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        padding: 1rem;
        z-index: 1000;
    }
    .navbar-bottom.active {
        display: block;
    }
    .nav-list {
        flex-direction: column;
        width: 90%;
    }
    .nav-list li {
        margin: 0.5rem 0;
        font-size: 1.2rem;
    }
    .nav-list a {
        font-size: 1.2rem;
    }
    .nav-list a.highlight-weather-forecast {
        font-size: 1.2rem;
    }

    .nav-dropdown > span {
        display: block;
        padding: 0.5rem 0;
    }
    .nav-submenu {
        position: static;
        display: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        padding-left: 1rem;
    }
    .nav-submenu.active {
        display: block;
    }
    .data-info {
        position: static;
        margin-top: 3rem;
        text-align: center;
    }
    .data-info table {
        margin: 0 auto;
    }
}

/* Адаптивные стили для экранов до 480px */
@media (max-width: 480px) {
    .eol-highlight {
        font-size: 1rem;
    }
    .navbar-bottom {
        top: 140px;
    }
    .solar-title {
        font-size: 1.2rem;
    }
    .form-group select {
        padding: 0.4rem;
    }
    .solar-form button {
        padding: 0.4rem 0.8rem;
    }
    .navbar-toggle {
        width: 84px;
        height: 84px;
    }
    .navbar-toggle-icon {
        width: 84px;
        height: 84px;
    }
}


/* Адаптивные стили для экранов до 468px */
@media (max-width: 468px) {
    .banner-container {
        margin: 5px 0 0 0; /* Меньше отступы на мобильных */
    }
    .weather-banner {
        max-width: 95%; /* Полная ширина на маленьких экранах */
    }
}

/* Адаптивные стили для экранов до 380px */
@media (max-width: 380px) {
    .eol-highlight-menu {
        font-size: 1.2rem;
    }
    .language-form {
        top: 2.5rem;
    }
    .navbar-toggle {
        width: 72px;
        height: 72px;
    }
    .navbar-toggle-icon {
        width: 72px;
        height: 72px;
    }
    .let15 {
            font-weight: bold;              /* Жирный */
            font-size: 1.5em;               /* Больше обычного текста */
            bottom: 0rem;
        }
}

/* Адаптивные стили для экранов до 320px */
@media (max-width: 320px) {
    .eol-highlight-menu {
        font-size: 1.2rem;
    }
    .language-form {
        top: 2.5rem;
    }
    .navbar-toggle {
        right: 1rem;
        width: 60px;
        height: 60px;
    }
    .navbar-toggle-icon {
        right: 1rem;
        width: 60px;
        height: 60px;
    }

    .nav-list {
        flex-direction: column;
        width: 91%;
    }
    .nav-list li {
        font-size: 1.0rem;
    }
    .nav-list a {
        font-size: 1.0rem;
    }
    .nav-list a.highlight-weather-forecast {
        font-size: 1.0rem;
    }

}

/* Сохранённые стили из исходного style.css */
.centered-red-text {
    text-align: center;
    color: #e56969;
}

.text-container, .text-container_2 {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.table-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.table-container table {
    flex: 0 1 calc(24% - 2px);
    margin: 5px;
    color: grey;
    border: 1px solid #ddd;
    font-family: "arial";
    width: 100%;
}

.table-container th {
    width: 50%;
    height: 110px;
    text-align: left;
    padding: 2px 10px;
}

.table-container td {
    width: 50%;
    padding: 2px 8px;
    border: 0px solid #ddd;
    text-align: left;
}

.table-container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.table-container2 table {
    flex: 0 1 calc(25% - 2px);
    margin: 0px;
    color: grey;
    border: 0px solid #ddd;
    font-family: "arial";
    width: 100%;
}

.table-container2 th {
    width: 50%;
    height: 20px;
    text-align: left;
    padding: 2px 2px;
}

.table-container2 td {
    width: 50%;
    padding: 2px 2px;
    border: 0px solid #ddd;
    text-align: left;
}

.table-container3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.table-container3 table {
    margin: 0px;
    color: grey;
    border: 1px solid #343434;
    font-family: "arial";
    width: 100%;
    border-collapse: collapse;
}

.table-container3 th {
    height: 25px;
    text-align: left;
    padding: 5px 10px;
    border: 1px solid #343434;
    background-color: #1d1d1d;
}

.table-container3 td {
    padding: 8px 5px;
    border: 1px solid #343434;
    text-align: left;
}

.button-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007bff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
}

.button-link:hover {
    background-color: #0056b3;
}

.token {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    color: #a2d5f2;
    text-shadow: 0 0 4px rgba(162, 213, 242, 0.3);
}

a {
    color: #F4A460;
    text-decoration: none;
}

a:hover {
    color: #a2d5f2;
    text-shadow: 0 0 8px rgba(162, 213, 242, 0.6);
}

a:visited {
    color: #C89B6D;
}


/* Контейнер для баннера (responsive) */
.banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 8px 0 -20px 0; /* Отступы от меню и контента */
}

/* Стили для SVG-баннера */
.weather-banner {
    position: relative; /* Базовое для наложения */
    z-index: 100; /* Выше других блоков (header ~1000, main ~1) */
    width: 90%;
    max-width: 568px; /* Не шире оригинального дизайна */
    height: auto; /* Сохраняет пропорции */
    border-radius: 10px; /* Скругление углов */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Тень для глубины */
}

