/* Общие стили */
body {
    font-family: 'Noto Sans', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
    overflow-x: hidden;
	cursor: url('/images/cursor/normal.cur'), auto;
	}
a,
button,
.button,
.header-auth-button,
.open_modal {
    cursor: url('/images/cursor/target_refine_fixed.cur'), pointer;
}-
a {
    text-decoration: none;
    color: inherit;
}

h1, h2, p {
    margin: 0;
    padding: 0;
}

 
/* Вертикальный слайдер */
.slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Слайдер - основные стили */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.background-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}

/* Контейнер для текста на слайде */
.content {
    position: absolute;
    top: 15%; /* Смещаем вверх */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; /* Контент на переднем плане */
    text-align: center;
    color: white;
    max-width: 80%;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    white-space: normal;
    height: auto;
}

/* Стрелочки для навигации */
.scroll-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-nav button {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 15px;
    font-size: 2em;
    cursor: pointer;
    border-radius: 50%;
    margin: 10px;
    transition: background-color 0.3s ease;
}

.scroll-nav button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.arrow {
    font-size: 1.5em;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Стили для блока выбора языка */
.language-selector {
    position: relative;
    display: inline-block;
}

#languageButton {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

#languageMenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #222;
    list-style: none;
    margin: 0;
    padding: 10px;
    width: 150px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#languageMenu li {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

#languageMenu li:hover {
    background-color: #444;
}

#languageMenu li img {
    width: 20px;
    margin-right: 10px;
}

.flag-icon {
    width: 30px;
    height: auto;
}

/* Показываем меню выбора языка */
.language-selector:hover #languageMenu {
    display: block;
}

/* Новые стили для слайда с картинками */
.image-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px; /* отступы между героями */
    position: absolute;
    top: 55%; /* ближе к нижней части экрана */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 3;
}

.image-box {
    width: 170px; /* точный размер как на оригинале */
    transition: transform 0.3s ease;
    position: relative;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 8px;
}

/* Стандартное изображение */
.default-img {
    opacity: 1;
    z-index: 1;
    position: relative;
}

/* Картинка при наведении */
.hover-img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

/* Наведение */
.image-box:hover .default-img {
    opacity: 0;
    transform: scale(1.05);
}

.image-box:hover .hover-img {
    opacity: 1;
    transform: scale(1.05);
}

/* Адаптация под мобильные */
@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
        top: 55%;
        gap: 15px;
    }

    .image-box {
        width: 60%;
    }
}


/* Картинка по умолчанию */
.default-img {
    opacity: 1;
}

/* Картинка при наведении */
.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; /* Скрываем картинку по умолчанию */
    transition: opacity 0.3s ease-in-out;
}

/* При наведении показываем второе изображение */
.image-box:hover .hover-img {
    opacity: 1;
}

.image-box:hover .default-img {
    opacity: 0;
}

/* Мобильные устройства: настройка для маленьких экранов */
@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
        width: 90%;
    }

    .image-box {
        width: 80%;
        margin-bottom: 20px;
    }
}


/* Стили для текста на слайде */
.content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.content p {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

/* Эффект свечения при наведении на заголовок */
.content h1:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
    color: #f39c12;
}

/* Эффект свечения при наведении на описание */
.content p:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
    color: #f39c12;
}

/* Стили для контейнера с фоновым изображением */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/r2online/images/slide1_bg.jpg'); /* Путь к изображению */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2; /* Размещаем фон позади всего содержимого */
}

/* Стили для контента */
.content {
    position: relative;
    z-index: 1; /* Текст будет поверх фонового изображения */
    text-align: center;
    color: white;
    margin-top: 20px; /* Поднимаем текст */
    padding-top: 50px; /* Поднимаем текст еще выше */
}

/* Контейнер с картинками */
.image-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; /* Размер контейнера */
    z-index: 0; /* Картинки будут позади текста */
    text-align: center;
}

/* Каждый блок с изображениями */
.image-box {
    width: 18%;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0; /* Картинки внутри контейнера будут позади текста */
}

/* Стили для картинок по умолчанию */
.default-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Эффект при наведении: увеличиваем картинку */
.image-box:hover .default-img {
    transform: scale(1.1); /* Увеличиваем картинку */
}


/* Когда картинка по умолчанию скрыта, показываем при наведении */
.image-box:hover .hover-img {
    display: block;
}

/* Стиль при наведении на изображение */
.image-box:hover .default-img {
    transform: scale(1.1); /* Увеличиваем картинку */
}

/* Мобильные стили: */
@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
        width: 90%;
    }

    .image-box {
        width: 80%; /* Для мобильных экранов картинки будут немного больше */
        margin-bottom: 20px;
    }
}

/* Контейнер для фонового изображения */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/slide3_bg.jpg'); /* Путь к изображению */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1; /* Фон находится на заднем плане */
}

/* Контент с текстом */
.content {
    position: absolute;
    top: 10%; /* Текст теперь будет находиться выше */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1; /* Текст поверх фона */
    text-align: center;
    color: white;
    max-width: 90%; /* Ограничиваем ширину текста */
}

.content h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.5em;
}

/* Контейнер для картинок */
.image-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 40%; /* Картинки теперь будут начинаться с середины экрана */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    margin-top: 20px; /* Немного увеличиваем отступ сверху */
    z-index: 0; /* Картинки находятся ниже текста */
    text-align: center;
}

/* Каждый блок с изображениями */
.image-box {
    width: 18%;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

/* Стили для картинок по умолчанию */
.default-img {
    width: 200%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Стили для картинок при наведении */
.hover-img {
    display: none;
    width: 150%; /* Увеличиваем картинку на 10% */
    height: auto;
    transition: transform 0.3s ease-in-out;
}

/* Когда картинка по умолчанию скрыта, показываем при наведении */
.image-box:hover .hover-img {
    display: block;
}

/* Убираем обычную картинку при наведении */
.image-box:hover .default-img {
    transform: scale(0.9); /* Уменьшаем оригинальную картинку */
}

/* Стиль для увеличенной картинки (hover) */
.image-box:hover .hover-img {
    transform: scale(1.1); /* Увеличиваем hover картинку на 10% */
}

/* Мобильные стили */
@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
        width: 90%;
    }

    .image-box {
        width: 80%; /* Для мобильных экранов картинки будут немного больше */
        margin-bottom: 20px;
    }
}

.image-box p {
    font-size: 1.2rem; /* Увеличь значение при необходимости */
    line-height: 1.5;
    color: #fff; /* если фон тёмный */
}

.bold-text {
    font-weight: bold;
    font-size: 1.4rem; /* Можно задать отдельно, если нужно ещё крупнее */
}

/* Анимация вращения */
@keyframes rotateLogo {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Пульсация/свечение */
@keyframes pulseGlow {
    0% {
        filter: drop-shadow(0 0 5px #00f0ff);
    }
    50% {
        filter: drop-shadow(0 0 20px #00f0ff);
    }
    100% {
        filter: drop-shadow(0 0 5px #00f0ff);
    }
}

.rotating-logo {
    width: 100px; /* или нужный тебе размер */
    animation: rotateLogo 10s linear infinite, pulseGlow 2s ease-in-out infinite;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}


.glowing-text {
    animation: textGlow 2s ease-in-out infinite;
    color: #fff; /* Белый цвет лучше всего смотрится с неоном */
    font-weight: bold;
}

/* Основной блок */
#slide1 {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Видео остаётся самым нижним */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Контент на переднем плане */
.content {
    position: relative;
    z-index: 3; /* Выше картинки и видео */
    text-align: center;
    color: white;
    top: 20%;
    padding: 20px;
}



/* >>> Новая фоновая картинка <<< */
.slide1-floating-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; /* Между видео и текстом */
    width: 1200px; /* Увеличенный размер */
    height: 700px;
    background-image: url('/r2online/images/slide1_bg2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0.85;

    animation: floatUpDown 6s ease-in-out infinite;
}

/* Анимация: лёгкое плавание вверх-вниз */
@keyframes floatUpDown {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-20px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}



.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #fdd835;
    text-decoration: none;
    cursor: pointer;
}



input {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
}



.start-game-button {
    display: inline-block;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
}

.start-game-button img {
    display: block;
    width: 250px; /* или подбери нужный тебе размер */
    height: auto;
    transition: filter 0.3s ease, transform 0.3s ease;
    border-radius: 8px; /* можно убрать, если не нужно округление */
}

/* Эффект свечения при наведении */
.start-game-button:hover img {
    filter: brightness(1.4) drop-shadow(0 0 10px #00ffff);
    transform: scale(1.05);
}



.left-menu,
.center-menu,
.right-menu {
  display: flex;
  align-items: center;
}

.center-menu {
  flex: 1;
  justify-content: center;
}

.text-menu {
    display: flex;
    gap: 20px;
}

.text-link {
    text-decoration: none;
    color: #fff; /* или другой цвет под вашу тему */
    font-weight: 500;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #00ffff; /* подсветка при наведении */
}

/* Правая часть */
.right-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto; /* Страховка: отправляет вправо */
}

.social-icon-img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon-img:hover {
    transform: scale(1.1);
}



/* Логотип */
.logo {
    margin: 10px 20px;
}

/* Навигация */
nav ul {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}


/* Языковой селектор */
.language-selector {
    position: relative;
}

.language-selector button {
    background: none;
    border: none;
    cursor: pointer;
}

.flag-icon {
    width: 24px;
    height: auto;
}

/* Выпадающее меню языков */
#languageMenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 5px 0;
    z-index: 1000;
}

#languageMenu li {
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

#languageMenu li:hover {
    background-color: #444;
}


/* Общие стили для меню */
nav ul {
    background-color: #1a1a1a;
    padding: 10px;
    display: flex;
    justify-content: center;
    list-style: none;
    border-bottom: 2px solid #444;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #f0e6d2;
    font-family: 'Cinzel', serif;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #f0e6d2;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: #f0e6d2;
    color: #1a1a1a;
}


/* Стиль для стрелочки */
.arrow {
    margin-left: 10px;
    font-size: 18px;
}

/* Контейнер для выпадающего меню */
.dropdown {
    position: relative;
    display: inline-block;
}


/* Элементы выпадающего меню */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 1.1rem;
    text-align: left;
    transition: background-color 0.3s ease, padding-left 0.2s ease;
    border-left: 4px solid transparent;
}

.dropdown-content a:hover {
    background-color: #ff4081;
    padding-left: 16px;
    border-left: 4px solid #ff4081;
}

/* Открытие выпадающего меню с анимацией */
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Стиль для стрелочки вниз в активном состоянии */
.dropdown:hover .arrow {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.button .icon {
    vertical-align: middle;
    margin-right: 6px;
    width: 70px;
    height: 70px;
}

.map {
    width: calc( 100% - 450px - 70px);
    position: relative;
    z-index: 1;
}

@media (max-width: 1460px) {
    .map {
        width: calc( 100% - 350px - 40px);
    }
}

@media (max-width: 1350px) {
    .map {
        width: 100%;
        margin-top: 40px;
        margin-bottom: 70px;
    }
}

@media (max-width: 1024px) {
    .map {
        margin-bottom: 0px;
    }
}

.map__title {
    width: 100%;
    font-family: "Albertus Nova";
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    color: #f7bf66;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 1200px) {
    .map__title {
        font-size: 20px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .map__title {
        font-size: 18px;
        line-height: 18px;
    }
}

.map__text {
    width: 100%;
    font-family: "Lato";
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #dcd9d3;
    text-align: center;
    margin-top: 25px;
}

@media (max-width: 1200px) {
    .map__text {
        margin-top: 15px;
        font-size: 16px;
        line-height: 20px;
    }
}

.map__layout {
    width: 100%;
    position: relative;
}

@media (max-width: 1024px) {
    .map__layout {
        background: rgba(38, 36, 33, 0.5);
        padding: 10px;
        border-radius: 5px;
        margin-top: 20px;
    }
}

.map__layout:after {
    content: '';
    width: 1232px;
    height: 677px;
    position: absolute;
    z-index: 1;
    top: calc( ( ( 100% - 677px ) / 2 ) + 150px);
    left: calc( ( ( 100% - 1232px ) / 2 ));
    background: url("../images/bg/map_bg.png") center center no-repeat;
    background-size: 100% 100%;
}

@media (max-width: 1024px) {
    .map__layout:after {
        display: none;
    }
}

.map__container {
    width: 100%;
    position: relative;
    z-index: 2;
    overflow-x: auto;
}

.map-box {
    width: 872px;
    height: 559px;
    background: url("../images/map/map.png") center center no-repeat;
    background-size: 100% 100%;
    position: relative;
    margin: 100px auto 0px;
}

.map-box__point {
    display: block;
    position: absolute;
}

.map-box__point-slot {
    width: 34px;
    width: 34px;
    height: 34px;
    background: url("../images/map/point_slot.png") center center no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0px 0px 15px #fbba34;
    box-shadow: 0px 0px 15px #fbba34;
    cursor: pointer;
    -webkit-transition: -webkit-box-shadow .3s ease-in-out;
    transition: -webkit-box-shadow .3s ease-in-out;
    transition: box-shadow .3s ease-in-out;
    transition: box-shadow .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
}

.map-box__point-slot img {
    width: calc( 100% - 4px);
    height: calc( 100% - 4px);
}

.map-box__point:hover .map-box__point-slot {
    -webkit-box-shadow: 0px 0px 20px #ffca61, 0px 0px 20px #ffca61;
    box-shadow: 0px 0px 20px #ffca61, 0px 0px 20px #ffca61;
}

.map-box__point.small .map-box__point-flag {
    width: 40px;
    height: 32px;
    position: absolute;
    left: calc( ( 100% - 40px ) / 2);
    bottom: calc( 100% + 5px);
    z-index: 2;
    -webkit-transition: -webkit-transform .3s ease-in-out, -webkit-filter .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out, -webkit-filter .3s ease-in-out;
    transition: transform .3s ease-in-out, filter .3s ease-in-out;
    transition: transform .3s ease-in-out, filter .3s ease-in-out, -webkit-transform .3s ease-in-out, -webkit-filter .3s ease-in-out;
}

.map-box__point.small:hover .map-box__point-flag {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-filter: brightness(130%);
    filter: brightness(130%);
}

.map-box__point.big .map-box__point-flag {
    width: 70px;
    height: 103px;
    position: absolute;
    left: calc( ( 100% - 70px ) / 2);
    bottom: calc( 100% + 30px);
    z-index: 2;
    -webkit-transition: -webkit-transform .3s ease-in-out, -webkit-filter .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out, -webkit-filter .3s ease-in-out;
    transition: transform .3s ease-in-out, filter .3s ease-in-out;
    transition: transform .3s ease-in-out, filter .3s ease-in-out, -webkit-transform .3s ease-in-out, -webkit-filter .3s ease-in-out;
}

.map-box__point.big:hover .map-box__point-flag {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-filter: brightness(130%);
    filter: brightness(130%);
}

.map-box__point.big .map-box__point-text {
    width: 150px;
    height: 47px;
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: calc( 100% + 5px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url("../images/map/point_info_left_bg.png") left center no-repeat, url("../images/map/point_info_right_bg.png") right center no-repeat, url("../images/map/point_info_middle_bg.png") left 10px center no-repeat;
    background-size: auto 100%, auto 100%, calc( 100% - 20px) 100%;
    padding: 7px 20px 0px;
    text-align: center;
    font-family: "Lato";
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    color: #242424;
}

.map-box__point.point-1 {
    top: 34px;
    left: 72px;
}

.map-box__point.point-2 {
    top: 140px;
    left: 200px;
}

.map-box__point.point-2 .map__lands-point-text {
    width: 96px;
}

.map-box__point.point-3 {
    top: 392px;
    left: 192px;
}

.map-box__point.point-3 .map__lands-point-text {
    width: 96px;
}

.map-box__point.point-4 {
    top: 148px;
    left: 676px;
}

.map-box__point.point-4 .map__lands-point-text {
    width: 96px;
}

.map-box__point.point-5 {
    top: 316px;
    left: 654px;
}

.map-box__point.point-6 {
    top: 166px;
    left: 108px;
}

.map-box__point.point-7 {
    top: 230px;
    left: 142px;
}

.map-box__point.point-8 {
    top: 372px;
    left: 82px;
}

.map-box__point.point-9 {
    top: 206px;
    left: 230px;
}

.map-box__point.point-10 {
    top: 286px;
    left: 244px;
}

.map-box__point.point-11 {
    top: 300px;
    left: 294px;
}

.map-box__point.point-12 {
    top: 328px;
    left: 340px;
}

.map-box__point.point-13 {
    top: 368px;
    left: 380px;
}

.map-box__point.point-14 {
    top: 120px;
    left: 320px;
}

.map-box__point.point-15 {
    top: 184px;
    left: 378px;
}

.map-box__point.point-16 {
    top: 274px;
    left: 450px;
}

.map-box__point.point-17 {
    top: 368px;
    left: 458px;
}

.map-box__point.point-18 {
    top: 92px;
    left: 468px;
}

.map-box__point.point-19 {
    top: 146px;
    left: 538px;
}

.map-box__point.point-20 {
    top: 300px;
    left: 554px;
}

.map-box__point.point-21 {
    top: 404px;
    left: 628px;
}

.map-box__point.point-22 {
    top: 190px;
    left: 764px;
}

.map-box__point.point-23 {
    top: 310px;
    left: 776px;
}

.map-box__point.point-24 {
    top: 477px;
    left: 756px;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  flex-wrap: wrap;
  flex-direction: row;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.left-buttons,
.right-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.left-buttons {
  justify-content: flex-start;
  flex: 1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* это важно! */
    height: 100px; /* или сколько тебе нужно */
    padding: 0 30px;
}

.right-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    background: url(https://cdn.ncwest.com/lineage2/04102025-D9B41F2C4E08BE7B/images/global/top-nav-download.png) no-repeat center;
    background-size: cover;
    padding: 0 20px;
    margin-left: auto; /* 💥 вот он, ключ! */
}


.header-nav {
    display: flex;
    flex: 1;
    height: 100%;
    justify-content: space-between;
    align-items: stretch;
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100px;
    padding: 0; /* убираем лишний отступ */
}

.header-nav {
    display: flex;
    flex: 1;
    align-items: stretch;
}

.left-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}


.header-auth-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 30px;
    background: transparent;
    font-family: le-monde-livre-std, trajan-pro-3, serif;
    color: #fff;
    text-shadow: 0 0 4px rgba(128, 0, 255, 0.6); /* легкий фиолетовый свет */
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.4s ease, background 0.3s ease;
    position: relative;
}




.right-buttons {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    height: 100%;
    margin-left: auto;
    background: url(https://cdn.ncwest.com/lineage2/04102025-D9B41F2C4E08BE7B/images/global/top-nav-download.png) no-repeat right center;
    background-size: cover;
    overflow: hidden;
}

/* СВЕЧЕНИЕ при наведении — полностью под блоком */
.right-buttons::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
background: radial-gradient(circle at center,
    rgba(179, 136, 255, 0.5) 0%,
    rgba(179, 136, 255, 0.3) 40%,
    rgba(179, 136, 255, 0.15) 80%,
    transparent 100%);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.right-buttons:hover::after {
    opacity: 1;
}


.right-buttons a + a {
    position: relative;
}

.right-buttons a + a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(to bottom, #b388ff, #7c4dff);
    opacity: 0.8;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Для того, чтобы она тянулась по высоте хедера */
    padding: 0 24px;
    background: transparent;
    font-family: le-monde-livre-std, trajan-pro-3, serif;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Убедимся, что вся кнопка подсвечивается */
.button:hover {
    background: rgba(255, 140, 0, 0.25); /* Оранжевый полупрозрачный */
    box-shadow: inset 0 0 15px rgba(255, 140, 0, 0.3), 0 0 10px rgba(255, 140, 0, 0.3);
    color: #fff;
}

.button1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 100%;
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    font-family: le-monde-livre-std, trajan-pro-3, serif;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.dropdown {
    position: relative;
    height: 100%;
}

/* ВОТ ОН — эффект при наведении на всю область dropdown */
.dropdown:hover {
    background: rgba(255, 140, 0, 0.2); /* полупрозрачный оранжевый фон */
    box-shadow: inset 0 0 20px rgba(255, 140, 0, 0.3), 0 0 15px rgba(255, 140, 0, 0.3);
    border-radius: 4px;
}

/* Убедимся, что dropdown-content не закрывает эффект */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 100, 0, 0.25); /* более насыщенный оранжевый */
    padding: 10px 0;
    display: none;
    z-index: 3;
    backdrop-filter: blur(3px); /* мягкость */
    border-radius: 0 0 6px 6px;
    box-shadow:
        0 4px 20px rgba(255, 120, 0, 0.5),
        inset 0 0 12px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}


.dropdown:hover .dropdown-content {
    display: block;
}



