@import "reset.css";

:root {
	--servtextcolor: currentColor; /* the default */
	--servbgcolor: transparent; /* the default */
}

html,
body {
	overflow-x: hidden;
}

body {
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	background: rgb(34, 35, 39);
	color: #222326;
	font-size: 14px;
	/* min-width: 450px; */
}

.main {
	overflow-x: hidden;
	position: relative;
	/* min-width: 450px; */
}

/* Обёртка баннера: overflow visible, чтобы баннер не обрезался контейнером/content-wrp */
.header-banner-bleed {
	width: 100%;
	overflow: visible;
	position: relative;
}

/* Блок баннера: плавно масштабируется по ширине окна (clamp), не ниже 320px, full-width */
.main.main_top {
	position: relative;
	overflow: visible;
	padding-top: 0;
	padding-bottom: 0;
	z-index: 10;
	box-sizing: border-box;
	/* 31.25vw: при 1920px = 600px, при 1024px = 320px; без резких скачков */
	height: clamp(320px, 31.25vw, 600px);
	/* Full-width */
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
}

/* Низ баннера — градиент ~25% высоты (было 140px при 600px ≈ 23.3%) */
.main.main_top::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 25%;
	z-index: 1;
	pointer-events: none;
	/* rgba(18,30,49,0) вместо transparent — иначе интерполяция с синим даёт лишний оттенок у верхней кромки слоя */
	background: linear-gradient(to bottom, rgba(18, 30, 49, 0) 0%, rgba(18, 30, 49, 0.45) 40%, var(--bg-2) 100%);
}

.main.main_top .l2b-header-bnr {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	display: block;
	/* URL задаётся в header_banner.php как --l2b-banner-img (иначе inline background-image блокирует градиент в CSS) */
	background-image: var(--l2b-banner-img, none);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	/* Плавное затухание картинки внизу */
	mask-image: linear-gradient(to bottom, black 0%, black 75%, transparent 100%);
	-webkit-mask-image: linear-gradient(to bottom, black 0%, black 75%, transparent 100%);
}

/* Секция под баннером: overlap пропорционален высоте баннера (~41.67% = 5/12), корректно на 4K и узких экранах */
.main-after-banner {
	position: relative;
	z-index: 15;
	/* 13.02vw = 31.25vw * (5/12); при 1920px = 250px, при 320px баннере = 133px */
	margin-top: calc(-1 * clamp(133px, 13.02vw, 250px));
}

/* Личный кабинет: wrapper и switcher в одну вертикальную линию с сайдбаром */
.main-after-banner--billing {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}
/* Страница «Добавить сервер»: расширяем блок, чтобы контент + сайдбар (260px) помещались без наезда */
.main-after-banner--billing:has(.billing-addserver-page) {
	max-width: 1540px;
}
.main-after-banner--billing .unified-vip-switcher-wrapper,
.main-after-banner--billing .wrapper {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.main_top {
	padding-top: 350px;
}

a {
	color: rgb(156, 92, 10);
	text-decoration: none;
	transition-duration: 0.3s;
	transition-property: opacity, color, background-color, background;
}

a:hover {
	text-decoration: underline;
}

img {
	max-width: 100%;
}

.wrapper {
	max-width: 1260px;
	width: 100%;
	margin: 0 auto;
	min-height: 500px;
	position: relative;
	z-index: 4;
	background-color: #202020; /* или #181818 для глубокой темноты */
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.vote-slider-wrapper {
  margin-top: 30px;
  text-align: center;
  font-family: 'PT Sans', sans-serif;
}

.vote-slider-label {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  color: #ccc;
}

.vote-slider-track {
  position: relative;
  width: 300px;
  height: 44px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1e1e1e, #2e2e2e);
  border: 1px solid #444;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: inset 0 0 4px #000, 0 0 10px rgba(0, 0, 0, 0.3);
}

.vote-slider-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #f7901e, #d97a18);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: background 0.3s;
}

.vote-slider-thumb.dragging {
  background: linear-gradient(135deg, #ffa54c, #e88420);
}

.vote-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255,143,42,.92), rgba(255,143,42,.58));
  color: #1a120a;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  z-index: var(--z-overlay, 10050);
  box-shadow: 0 4px 16px rgba(255,143,42,.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, bottom 0.3s ease;
}

.vote-toast.visible {
  opacity: 1;
  bottom: 50px;
}

.vote-thank {
  font-size: 16px;
  font-weight: bold;
  color: #90ee90;
  margin-top: 20px;
}

.hidden {
  display: none !important;
}

/* Контейнер двух колонок: нижние края .side-wrapper_past и .right-col на одном уровне */
.inline-zone-2col {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 0;
}

.left-col {
  flex: 1 1 420px;
  min-width: 420px;
  box-sizing: border-box;
}

.right-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  align-self: flex-start;
  box-sizing: border-box;
  min-width: 0;
}

.right-col .side-wrapper_top {
  width: 100%;
}

.right-col .side-wrapper_top_online {
  width: 100%;
}

.right-col .side-wrapper_top_online .side_top_online {
  margin-top: 10px !important;
}

/* Обёртка для блока FUTURE и PAST */
.side-wrapper {
  margin-bottom: 0;
}

.vote-icon {
  display: inline-block;
  margin-left: 6px;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.vote-icon i {
  color: #888;
  transition: color 0.2s ease;
  pointer-events: auto;
}

.vote-icon:hover i {
  color: #f7901e;
}

/* Чтобы палец оставался поверх перекрывающей ссылки */
.server__link {
  z-index: 1;
}

.vote-icon {
  z-index: 10;
  position: relative;
}

.vote-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vote-popup.hidden {
  display: none;
}

.vote-popup__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.72);
  z-index: 0;
}

.vote-popup__content {
  position: relative;
  z-index: 1;
  background: #2a2525;
  border: 1px solid #5a5454;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  color: #eaf0ff;
  box-shadow: 0 8px 40px rgba(0,0,0,0.65);
}

.vote-popup__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.vote-popup__btn {
  margin-top: 20px;
}

.vote-popup__close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #6b6b6b;
  border-radius: 4px;
  background: transparent;
  padding: 0;
  line-height: 1;
  transition: border-color 0.2s, background 0.2s;
}

.vote-popup__close:hover {
  border-color: #aaa;
  background: rgba(255,255,255,0.06);
}

.pulse {
  animation: pulseAnim 0.3s ease;
}
@keyframes pulseAnim {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.server-switcher {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.tab-btn {
  background: #1e1e1e;
  border: 1px solid #f7901e;
  padding: 4px 12px;
  font-weight: bold;
  color: #f7901e;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;
  transition: 0.2s ease;
}
.tab-btn.active {
  background: #f7901e;
  color: #1a120a;
}

/* Unified VIP Switcher — по ширине как .mid (.wrapper) */
.unified-vip-switcher-wrapper {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 20;
  opacity: 1;
  pointer-events: auto;
}

.unified-vip-switcher {
  display: flex;
  gap: 12px;

  height: 50px;
  align-items: center;

  background: rgba(30, 30, 30, 0.58);
  padding: 0 12px;

  border-radius: 6px;
  border: 1px solid rgba(42, 42, 42, 0.9);
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.unified-vip-switcher__back {
	margin-right: 4px;
}
.unified-vip-switcher__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Кнопки Реклама и Добавить сервер - без оранжевой обводки */
.unified-vip-switcher__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: #3a3434;
  border: 1px solid #8f8f8f;
  color: #fff;
  padding: 6px 16px;
  min-width: 80px;
  font-weight: bold;
  font-size: 13px;
  line-height: 1;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: 0.2s ease;
}

.unified-vip-switcher__action:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  color: #fff;
  text-decoration: none;
}

.unified-vip-switcher__action--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Кнопка Личный Кабинет - с оранжевой обводкой */
.unified-vip-switcher__menu #login_pane .login__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: #3a3434;
  border: 1px solid #f7901e;
  color: #f7901e;
  padding: 6px 16px;
  min-width: 80px;
  font-weight: bold;
  font-size: 13px;
  line-height: 1;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: 0.2s ease;
}

.unified-vip-switcher__menu #login_pane .login__link:hover {
  background: rgba(247, 144, 30, 0.15);
  border-color: #ffa54c;
  color: #ffa54c;
  text-decoration: none;
}

.unified-vip-switcher__menu #login_pane {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
}

.unified-vip-switcher__menu #login_pane .login {
  display: flex;
  align-items: center;
}

.unified-vip-switcher__menu #login_pane .login__label {
  display: inline;
}

.unified-vip-switcher__menu #login_pane .login__mess {
  margin-left: 4px;
}

.unified-vip-switcher__menu #login_pane .dropdown-form {
  left: auto;
  right: 0;
  margin-left: 0;
}


.unified-vip-btn {
  background: #3a3434;
  border: 1px solid #f7901e;

  padding: 6px 16px;     /* кнопки уже */
  min-width: 80px;       /* уже, чем было 100px */

  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;       /* чуть компактнее */
  line-height: 1;        /* чтобы не раздувало по высоте */
  transition: 0.2s ease;

  text-align: center;
  white-space: nowrap;
}


.unified-vip-btn:hover {
  background: rgba(247, 144, 30, 0.15);
  border-color: #ffa54c;
}

.unified-vip-btn.active {
  background: #f7901e;
  color: #000;
  border-color: #f7901e;
}

/* Обводка как у unified-vip-btn (оранжевая) */
.unified-vip-switcher__lk-btn {
  border: 1px solid #8f8f8f;
}
a.unified-vip-switcher__lk-btn {
  text-decoration: none;
  display: inline-block;
}
.unified-vip-switcher__lk-btn:hover {
  border-color: #ffa54c;
}

.server-tab.hidden {
  display: none;
}
.server-tab.visible {
  display: block;
}

.tab-btn-top {
  background: #1e1e1e;
  border: 1px solid #f7901e;
  padding: 4px 12px;
  font-weight: bold;
  color: #f7901e;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;
  transition: 0.2s ease;
}
.tab-btn-top.active {
  background: #f7901e;
  color: #1a120a;
}

.server-switcher-opened {
  display: flex;
  gap: 8px;
  margin-top: 5px;
}

.tab-btn-opened {
  background: #1e1e1e;
  border: 1px solid #f7901e;
  color: #f7901e;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s ease;
}

.tab-btn-opened:hover {
  background: #f7901e;
  color: #1a120a;
}

.tab-btn-opened.active {
  background: #f7901e;
  color: #1a120a;
}

.buyvotes-box {
  background: #1b1b1b;
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  margin: 30px auto;
  color: #eee;
}
.buyvotes-box h2 {
  font-size: 20px;
  margin-bottom: 15px;
}
.buyvotes-box select,
.buyvotes-box button {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 8px;
  border: none;
}
.buyvotes-box button.buyvotes-btn {
  background: linear-gradient(180deg, rgba(255,143,42,.92), rgba(255,143,42,.58));
  font-weight: bold;
  cursor: pointer;
  color: #1a120a;
  border: 1px solid rgba(255,143,42,.5);
}


/* Стили TOP блока (отступы как у .side — единообразие колонок) */
.top-servers {
  width: 420px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, #1b1d23, #101216);
  padding: 10px 20px;
  margin: 10px;
  border-radius: 6px;
  overflow: visible;
  color: #ddd;
  border: 1px solid #2a2a2a;
}

.bg_l2b {
	background-color: rgb(27, 27, 27);
}

.section-row {
	box-sizing: border-box;
	padding: 0 20px;
}

.section-row_w {
	width: 100%;
}

/* header */

.header {
	height: auto;
	width: 100%;
	min-height: 80px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	padding: 10px 20px;
	box-sizing: border-box;
	position: relative;
	z-index: 5;
}

/* Контейнер для содержимого header - ограничиваем ширину как у .wrapper */
.header__container {
	max-width: 1260px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	box-sizing: border-box;
}



.menu-wrp {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.menu-wrp.menu-wrp_active {
	display: flex;
}

.menu {
	display: flex;
	justify-content: center;
	flex-direction: row;
	box-sizing: border-box;
}

.menu-wrp_active .menu {
	animation: menu 1s ease 1;
	animation-fill-mode: forwards;
}

@keyframes menu {
	0% {
		opacity: 0;
		transform: scale(0) translateY(-400px);
	}

	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.menu__link {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 10px;
	color: #fff;
	font-size: 12px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	box-sizing: border-box;
	transition: 0.3s all;
	height: 34px;
	padding: 0 10px;
	border-radius: 3px;
	background-color: rgb(39, 36, 33);
	font-weight: bold;
	border: 2px solid transparent;
}

.menu__link_add {
	box-shadow: 0 0 16px rgba(66, 209, 254, 0.19);
	background: rgba(255, 81, 0, 0.53);
	border: none;
	margin-right: 0;
	transition: 0.3s all;
	font-weight: bold;
	border: 2px solid rgba(83, 40, 21, 0.61);
}

.menu__link_decor:hover {
	background-color: #33383d;
	text-decoration: none;
}

.menu__link:hover {
	text-decoration: none;
	background: rgb(255, 81, 0);
	border: 2px solid rgba(83, 40, 21, 0.61);
}

.menu__i {
	background: none;
	height: 20px;
	display: inline-block;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 20px !important;
	margin-right: 6px;
}

.menu__txt {
	margin: 0;
	box-sizing: border-box;
}

.burger-btn {
	position: fixed;
	right: 10px;
	top: 10px;
	z-index: 88;
	background-color: rgba(0, 0, 0, 0.5);
	height: 36px;
	width: 40px;
	border-radius: 3px;
	cursor: pointer;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0;
}

.burger-btn__line {
	height: 4px;
	width: 22px;
	position: relative;
	left: auto;
	right: auto;
	top: auto;
	bottom: auto;
	margin: 0;
	background-color: #fff;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.25s ease;
	flex-shrink: 0;
}

.burger-btn__line_top,
.burger-btn__line_middle,
.burger-btn__line_bottom {
	transform: none;
}

.burger-btn_active .burger-btn__line_top {
	transform: translateY(9px) rotate(45deg);
	transform-origin: center;
}

.burger-btn_active .burger-btn__line_middle {
	opacity: 0;
	transform: scaleX(0);
}

.burger-btn_active .burger-btn__line_bottom {
	transform: translateY(-9px) rotate(-45deg);
	transform-origin: center;
}

/* logo */

.logo {
	text-decoration: none;
	display: block;
	color: #fff;
	font-size: 10px;
	max-width: 200px;
	position: relative;
	z-index: 0;
	margin-right: 20px;
}

/* login */

.login {
}

.login_m_a {
	margin-left: auto;
}

.login__link {
	color: rgb(148, 56, 13);
	position: relative;
	margin: 0 10px;
}

.login__link:hover {
	color: rgb(190, 75, 22);
}

.login__ico {
	font-size: 20px;
	transition: 0.3s all;
	padding: 5px 0;
}

.login__mess {
	position: absolute;
	left: calc(100% - 5px);
	bottom: calc(100% - 5px);
}

/* top bnr */

.l2b-header-bnr {
	width: 100%;
	text-align: center;
	display: block;
	position: relative;
	z-index: 1;
	margin-top: 0px;

	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;

	height: 600px;
	min-height: 560px;
	max-height: 640px;
}

.top_bnr_wrp {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #20252a;
    z-index: 2;
    position: relative;
}

.top_bnr_468 {
	min-height: 60px;
	width: 468px;
	margin: 10px;
	max-width: 100%;
}

/* Полоса с кнопками */
.mode-switcher-overlay {
  position: absolute;
  top: 384px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.mode-switcher-overlay .inner {
  max-width: 1244px;
  justify-content: left;
  align-items: center;
  width: 100%;
  display: flex;
  gap: 22px;
  background: rgba(27, 27, 27, 0.9);
  padding: 8px 8px; /* уменьшили высоту */
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  pointer-events: auto;
}

.mode-btn {
  width: 462px;
  height: 30px;
  background: #3a3a3a;
  margin-left: 6px;
  color: #fff;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  transition: 0.2s;
}

.mode-btn.active {
  background: linear-gradient(to bottom, #FF8C00, #cc6d00);
  box-shadow: inset 0 0 0 2px #ffa54c;
  color: #fff;
}

.mode-btn.top {
  width: 250px;
  background: linear-gradient(to bottom, #A52A2A, #800000);
  box-shadow: inset 0 0 0 2px #8B0000;
}

.mode-btn:hover {
  background: linear-gradient(to bottom, #ff9933, #b85f00);
}

.mode-btn.top:hover {
  background: linear-gradient(to bottom, #A52A2A, #DC143C);
}

@media (max-width: 768px) {
  .mode-switcher-overlay {
    top: 315px; /* чуть ближе к баннеру */
  }

  .mode-switcher-overlay .inner {
    gap: 12px;
    padding: 4px 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .mode-btn {
    width: 45%;
    height: 36px;
    font-size: 15px;
    line-height: 36px;
    padding: 0;
  }

  .mode-btn.active {
    box-shadow: inset 0 0 0 2px #ffb347;
  }
}

/* mid */

.mid {
	min-height: 200px;
	display: flex;
	justify-content: space-around;
	align-items: stretch;
	position: relative;
}

/* Главная/категории: подложка не #202020 от .wrapper — прозрачно, виден градиент body */
.main-after-banner:not(.main-after-banner--billing) .wrapper {
	background-color: transparent;
}

.mid:not(.mid--billing) {
	background: transparent;
}

/* Личный кабинет: фон .mid до конца сайдбара, чтобы сайдбар не торчал */
.mid.mid--billing {
	background-color: #181818;
	border-radius: 6px;
	justify-content: flex-start;
	gap: 10px;
}

/* ЛК: не даём контенту выталкивать правый sidebar за пределы wrapper */
.mid.mid--billing .content-wrp {
	flex: 1 1 auto;
	min-width: 0;
}

.mid.mid--billing .sidebar {
	flex: 0 0 260px;
	width: 260px;
	min-width: 260px;
	margin: 10px 0 10px 0;
}

.content-wrp {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
	padding-bottom: 10px;
	flex-grow: 1;
	position: relative;
	background-color: #181818;
	border-radius: 6px;
	min-height: 0;
}

/* Главная/категории (не ЛК): без min-width:0 flex-цепочка .mid → .content-wrp → .content-wrp__main
   не сужается ниже суммы min-content колонок — колонки inline-zone могут наезжать друг на друга. */
.mid:not(.mid--billing) .content-wrp,
.mid:not(.mid--billing) .content-wrp__main {
	min-width: 0;
}

/* Основной контент — растягивается, SEO прижат к низу; при переполнении — скролл внутри */
.content-wrp__main {
	flex: 1 1 0;
	min-height: 0;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	align-items: flex-start;
	justify-content: space-around;
	overflow-y: auto;
}

/* Контейнер SEO + about — прижат к низу content-wrp, не наползает при скролле */
.content-wrp__bottom {
	flex-shrink: 0;
	width: 100%;
	position: static;
	z-index: auto;
	margin-top: auto;
}

/* На странице addserver (billing/addserver/) скрываем SEO-блок «Личный кабинет», чтобы не перекрывал кнопку «Добавить сервер» */
.content-wrp:has(.billing-addserver-page) .content-wrp__bottom {
	display: none !important;
}

.side__container_ma {
	margin: 0 auto 0 20px;
}

.side__container {
	padding-bottom: 1px;
}

/* Скрываем блок "Вчера" (дата-шапка) в side__container_type_def */
.side__container_type_def:has(.ttl__day_yesterday) .ttl {
	display: none;
}

/* ttl */

.ttl {
	min-height: 30px;
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	color: #D3D3D3;
	text-transform: uppercase;
	cursor: default;
}

.ttl_theme_def {
	min-height: 30px;
	border-bottom: 1px solid rgb(220, 223, 225);
	margin: 6px 0 6px;
	justify-content: center;
	border-top: 1px solid rgb(220, 223, 225);
}
/* Отступ контента под заголовком (умеренный, чтобы не суммироваться с уже имеющимися) */
.ttl_theme_def + * {
	margin-top: 12px;
}

.ttl_theme_coloring {
	min-height: 50px;
	margin-bottom: 10px;
	justify-content: center;
	background-image: linear-gradient(
		to right,
		rgba(255, 0, 0, 0) 0%,
		rgb(255, 170, 113) 20%,
		rgb(255, 62, 0) 50%,
		rgb(255, 154, 86) 80%,
		rgba(255, 147, 0, 0) 100%
	);
	color: rgb(255, 255, 255);
}

.ttl_stream {
	color: rgb(255, 255, 255);
	background-color: rgb(255, 137, 51);
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	height: 40px;
	justify-content: center;
}

.ttl__accentuation {
	color: #ff7e00;
	margin-right: 4px;
	font-weight: bold;
}

.ttl__day {
	background-color: rgb(255, 81, 0);
	color: #fff;
	font-size: 12px;
	border-radius: 3px;
	text-transform: none;
	font-weight: 400;
	margin: 0 10px;
	padding: 2px 5px;
}

.day-name {
	color: rgb(255, 81, 0);
}

/* ttl_theme_base */

.ttl_theme_base {
	background-color: #202020;
	color: #fff;
	border-radius: 5px;
	margin: 15px -10px;
	padding: 0 10px;
	font-size: 13px;
	box-sizing: border-box;
	border: 1px solid #2a2a2a;
}

.side {
  width: 420px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, #1b1d23, #101216);
  padding: 10px 20px 10px 20px;
  margin: 10px;
  border-radius: 6px;
  overflow: visible;
  color: #ddd;
  border: 1px solid #2a2a2a;
}

/* Красивые отступы для блоков "Скоро откроются" и "Уже открылись",
   точно такие же как у top-servers - переопределяем базовые стили .side */
.side.side_future,
.side.side_past {
  padding: 10px 20px 5px 20px;
  margin: 10px;
}

@keyframes side {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.servers__desc {
	color: #676d73;
	font-size: 12px;
	text-transform: none;
	padding: 0 5px;
	height: 20px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	margin-bottom: 10px;
	background: #232323;
    border: 1px solid #333;
    color: #aaa;
}

/* server */

.server {
	max-width: 420px;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 0;
	font-size: 12px;
	cursor: pointer;
	border-radius: 4px;
	color: #f0f0f0;
	margin-bottom: 0px;
	height: 30px;
	overflow: visible;
}

.server .server__bg-vip {
  content: "";
  display: block;
  position: absolute;
  left: -10px;
  top: 2px;
  right: -10px;
  bottom: 2px;
  z-index: -4;
  border-radius: 5px;
  background: linear-gradient(
    90deg,
    rgba(255, 235, 205, 0.10) 0%,
    rgba(210, 180, 140, 0.10) 100%
  );
  backdrop-filter: blur(1px);
}

.server__title,
.server__chron,
.server__rate,
.server__date {
  color: #f0f0f0;
  font-weight: 600;
}

.server__link {
	position: relative;
    z-index: 2;
}

.server:hover {
	text-decoration: none;
}

.server__vip {
	text-overflow: ellipsis;
	min-height: 15px;
	line-height: 15px;
	position: relative;
	width: 26px;
	height: 15px;
	box-sizing: border-box;
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	border-radius: 3px;
	background: rgba(243, 243, 243, 0.24);
	flex-shrink: 0;
	color: #aaa;
}

.server__vip:after {
	content: "";
	position: absolute;
	left: 8px;
	top: 7px;
	z-index: 3;
	width: 11px;
	height: 2px;
	background-color: rgba(234, 234, 234, 0.64);
}

.server__title {
	text-overflow: ellipsis;
	min-height: 15px;
	line-height: 15px;
	position: relative;
	text-transform: uppercase;
	width: 220px;
	box-sizing: border-box;
	padding: 0 0 0 6px;
	text-align: left;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	letter-spacing: -0.5px;
}

.server__grp {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.server__chron {
	text-overflow: ellipsis;
	min-height: 15px;
	line-height: 15px;
	position: relative;
	width: 66px;
	text-align: left;
	color: #55585b;
	font-size: 12px;
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.server__rate {
	text-overflow: ellipsis;
	min-height: 15px;
	line-height: 15px;
	position: relative;
	width: 50px;
	text-align: left;
	color: #55585b;
	font-size: 12px;
	overflow: hidden;
}

.server__date {
	text-overflow: ellipsis;
	min-height: 15px;
	line-height: 15px;
	position: relative;
	width: 58px;
	color: #55585b;
	font-size: 12px;
	text-align: right;
}

.server__link {
	display: block;
	text-decoration: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.server__link_uf {
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	background-color: rgb(7, 176, 255);
	color: #fff;
	font-size: 16px;
	transition: none;
	z-index: 100;
}

.server__link_uf:hover {
	opacity: 1;
	text-decoration: none;
}

.server__edit {
	position: absolute;
	right: -18px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	color: rgb(90, 90, 90);
	opacity: 0;
	transition: 0.3s all;
}

.server:hover .server__edit {
	opacity: 1;
}

.server__more {
	position: absolute;
	left: -8px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	color: rgb(90, 90, 90);
	opacity: 0;
	transition: 0.3s all;
}

.server:hover .server__more {
	opacity: 1;
}

.server__adittion {
	display: inline-block;
	position: relative;
	z-index: 20;
	margin-left: 3px;
}

.server__plus {
	display: inline-block;
	font-size: 11px;
	line-height: 1;
	font-weight: 600;
	color: rgb(255, 116, 0);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.server:hover .server__plus {
	opacity: 1;
}

.server__country {
	display: block;
	max-width: 20px;
	position: relative;
	z-index: 10;
	margin-left: 3px;
}

.marking {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 20px;
	margin-left: 3px;
	box-sizing: border-box;
	padding-bottom: 2px;
	position: relative;
	z-index: 20;
}

.marking__item {
	color: rgb(255, 62, 0);
	font-size: 12px;
	line-height: 10px;
	text-transform: lowercase;
	font-weight: 700;
	position: relative;
	letter-spacing: -1px;
}

.marking__item:hover {
	color: var(--text);
}

.marking__item_type_pts {
	color: rgb(255, 62, 0);
	text-shadow: 0 1px 1px #00000045;
}

.marking__item_type_new {
	color: rgb(9, 225, 3);
	text-shadow: 0 1px 1px #00000045;
}

.today__date,
.tomorrow__date,
.yesterday__date {
	font-size: 12px;
	text-transform: lowercase;
	padding: 0 6px 0 4px;
	top: -2.5px !important;
	border-radius: 4px;
	position: relative;
	font-weight: 600;
	color: rgba(234,240,255,.9);
}

.today__date {
	background: linear-gradient(180deg, rgba(102,199,138,.28), rgba(102,199,138,.14));
	border: 1px solid rgba(102,199,138,.38);
}

.tomorrow__date {
	background: linear-gradient(180deg, rgba(213,95,95,.28), rgba(213,95,95,.14));
	border: 1px solid rgba(213,95,95,.38);
}

.yesterday__date {
	background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
	border: 1px solid rgba(255,255,255,.16);
}

.when__txt {
	font-weight: bold;
}

/* Отступ между карточками серверов только на главной (в .server глобально 0 — для ЛК/демо) */
.side-wrapper_top .server,
.side-wrapper_future .server,
.side-wrapper_past .server {
	margin-bottom: 4px;
}

/* server__rate row: сетка — см. theme (колонка иконок + рейт) */

/* Пиктограммы ОБТ/Бонус: одна колонка 22px — OBT и Bonus всегда друг под другом, выравнивание по вертикали */
.side_future .server__priority-icons,
.side_past .server__priority-icons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	width: 22px;
	min-width: 22px;
	flex-shrink: 0;
	margin-right: 0;
}
.side_future .server__priority-icons:empty,
.side_past .server__priority-icons:empty {
	width: 22px;
	min-width: 22px;
	margin-right: 0;
}

.side-wrapper_top .server__promo-gift-wrap {
	position: relative;
	flex-shrink: 0;
	z-index: 10;
	pointer-events: auto;
	margin-left: 0;
	min-width: 22px;
}

/* Фикс. ширина рейта — иконки промо в один столбец независимо от x1/x123/GVE/RvR */
.side-wrapper_top .server__rate-row .server__rate {
	min-width: 44px;
	flex-shrink: 0;
}

/* «Мостик» между иконкой и попапом — курсор не покидает обёртку при движении к кнопке */
.side-wrapper_top .server__promo-gift-wrap::before {
	content: '';
	position: absolute;
	left: 100%;
	top: -6px;
	bottom: -6px;
	width: 12px;
	z-index: 1;
}

.side-wrapper_top .server__promo-gift {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	user-select: none;
	pointer-events: auto;
}

.side-wrapper_top .server__promo-gift:hover {
	opacity: 0.9;
}

.side-wrapper_top .server__promo-gift-wrap--exhausted .server__promo-gift,
.server__promo-gift--exhausted {
	opacity: 0.45;
	cursor: default;
}

.side-wrapper_top .server__promo-gift-wrap--exhausted .server__promo-gift:hover,
.server__promo-gift--exhausted:hover {
	opacity: 0.5;
}

/* Попап промокодов: стили без привязки к родителю, чтобы работали и при переносе в body */
.server__promo-popover {
	pointer-events: auto;
	position: fixed;
	width: 260px;
	max-width: 90vw;
	padding: 14px;
	background: var(--bg-0, #1a1717);
	border: 1px solid var(--stroke-1, #4a4545);
	border-radius: 8px;
	box-shadow: 0 8px 40px rgba(0,0,0,0.95);
	z-index: var(--z-modal, 10051);
	text-align: left;
	left: 0;
	top: 0;
	margin: 0;
	opacity: 1 !important;
}

.server__promo-popover__title {
	font-size: 14px;
	font-weight: 700;
	color: var(--text, #ffffff);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.server__promo-popover__text {
	font-size: 12px;
	color: var(--muted, #e5e5e5);
	margin-bottom: 12px;
	line-height: 1.4;
}

.server__promo-popover__rewards {
	list-style: none;
	margin: 0 0 12px 0;
	padding: 0;
	font-size: 13px;
	color: var(--text, #f0f0f0);
}

.server__promo-popover__rewards li {
	margin-bottom: 4px;
}

.server__promo-popover__copy {
	display: block;
	width: 100%;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.server__promo-popover__exhausted-msg {
	font-size: 12px;
	color: var(--danger, #e05050);
	margin-top: 8px;
	line-height: 1.4;
}

.server__promo-popover__empty {
	font-size: 12px;
	color: var(--danger, #d95454);
	margin-top: 8px;
}

/* .side-wrapper_top promo-popover стили наследуются из общих .server__promo-popover__* правил выше */

/* informer (скрыты до переделки) */

.informer {
	display: none !important;
	position: absolute;
	right: 7px;
	top: 50%;
	align-items: center;
	z-index: 20;
	transform: translateY(-50%);
}

.tip {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	line-height: 16px;
	/* background: transparent url(../images/coin.svg) no-repeat center; */
	margin: 0 0 0 3px;
	box-sizing: border-box;
}

.tip_style_foreign {
	background: transparent url(../images/en.png) no-repeat center center;
	background-size: contain;
}

.tip_style_newbie {
	background: transparent url(../images/newbie.png) no-repeat center center;
	background-size: contain;
}

.tip_style_money {
	background: transparent url(../images/ico/coins.svg) no-repeat center;
	background-size: contain;
}

.tip_style_bonus {
	background: transparent url(../images/ico/gift.svg) no-repeat center;
	background-size: contain;
}

.server_type_vip-3 .tip_style_bonus {
	background: transparent url(../images/ico/giftbox.svg) no-repeat center;
	background-size: contain;
}

.tip_style_obt {
	font-size: 12px;
	text-align: center;
	color: rgb(120, 120, 120);
	text-transform: lowercase;
	font-weight: 400;
	line-height: 7px;
	cursor: default;
	padding-bottom: 1px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 20px;
}

.tip_style_legendary {
	width: 10px;
	height: 10px;
	font-size: 12px;
	text-transform: uppercase;
	color: #fff;
	background-color: #000;
}

.tip_none {
	display: none;
}

.tip_active {
	display: inline-block;
}

.tip__ttl {
	text-transform: uppercase;
	font-size: 12px;
}

.tooltip {
	position: absolute;
	bottom: calc(100% + 6px);
	left: 50%;
	width: 160px;
	height: auto;
	box-sizing: border-box;
	padding: 9px 5px;
	display: block;
	text-align: center;
	background-color: rgba(36, 36, 36, 0.76);
	color: rgb(255, 255, 255);
	pointer-events: none;
	border-radius: 5px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.34);
	transition: 0.2s all;
	opacity: 0;
	font-weight: 700;
	font-size: 12px;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	transform: translateX(-50%);
}

.tooltip_ta_l {
	text-align: left;
}

.tooltip_size_big {
	width: 250px;
}

.tooltip_style_min {
	text-transform: uppercase;
}

/* Пиктограммы приоритетного показа (только side_future и side_past, не в ТОП): ОБТ и Бонус Старт */
.side_future .server__priority-icon-wrap,
.side_past .server__priority-icon-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	z-index: 10;
	cursor: default;
}
.side_future .server__priority-icon,
.side_past .server__priority-icon {
	display: block;
	width: 18px;
	height: 18px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.side_future .server__priority-icon--obt,
.side_past .server__priority-icon--obt {
	background-image: url(../images/ico/priority-obt.svg);
}
.side_future .server__priority-icon--bonus,
.side_past .server__priority-icon--bonus {
	background-image: url(../images/ico/priority-bonus-start.svg);
}
.side_future .server__priority-icon-wrap:hover .server__priority-icon--bonus,
.side_past .server__priority-icon-wrap:hover .server__priority-icon--bonus {
	animation: priority-bonus-spin 1.2s linear infinite;
}
@keyframes priority-bonus-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.tooltip:after {
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	margin-left: -5px;
	bottom: -5px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid rgba(36, 36, 36, 0.76);
	transition: 0.2s all;
}

.tip:hover .tooltip,
.open-tooltip:hover .tooltip {
	opacity: 1;
}

.tooltip__title {
	color: #fcef40;
	display: block;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
}

.tooltip__content {
	text-align: left;
	padding-left: 10px;
	padding-right: 10px;
	text-transform: none;
	box-sizing: border-box;
}

.tip_style_bonus ul,
.tip_style_money ul {
	list-style: square inside;
	text-align: left;
}

.tip_style_bonus ol,
.tip_style_money ol {
	list-style: decimal inside;
	text-align: left;
}

/* server_status_vip */

.server_status_vip .server__vip {
	color: #D3D3D3;
	border-radius: 2px;
	text-transform: uppercase;
	font-weight: 700;
	box-sizing: border-box;
	padding-left: 1px;
}

.server_status_vip .server__vip:after {
	display: none;
}

.server_status_vip .server__vip:before {
	content: "vip";
}

/* server_type_vip-1 */

.server_type_vip-1 .server__title {
	color: #D3D3D3;
	font-size: 14px;
	font-weight: 700;
}

.server_type_vip-1 .server__vip {
	color: #D3D3D3;
	font-size: 12px;
	font-weight: 700;
	background-color: rgba(255, 255, 255, 0.1);
}

/* server_type_vip-2 */

.server_type_vip-2 .server__title {
	color: #D3D3D3;
	font-size: 14px;
	font-weight: 700;
}

.server_type_vip-2 .server__vip {
	color: #D3D3D3;
	font-size: 12px;
	font-weight: 700;
	background: rgb(255, 81, 0);
}

.server_type_vip-2 .server__bg-vip {
  content: "";
  display: block;
  position: absolute;
  left: -10px;
  top: 2px;
  right: -10px;
  bottom: 2px;
  z-index: -4;
  border-radius: 5px;
  background: linear-gradient(
    90deg,
    rgba(47, 79, 79, 0.35) 0%,
    rgba(47, 79, 79, 0.35) 100%
  );
  backdrop-filter: blur(2px);
}

/* server_type_vip-3 */

.server_type_vip-3 {
	color: #D3D3D3;
}

.server_type_vip-3 .server__title {
	color: #D3D3D3;
	font-weight: 700;
	font-size: 14px;
}

.server_type_vip-3 .server__vip {
	color: #D3D3D3;
	background: transparent url(../images/ico/crown4.svg) no-repeat center center;
	font-size: 0;
	height: 22px;
	background-size: contain;
}

.server_type_vip-3 .server__bg-vip {
  content: "";
  display: block;
  position: absolute;
  left: -10px;
  top: 2px;
  right: -10px;
  bottom: 2px;
  z-index: -4;
  border-radius: 5px;
  background: linear-gradient(
    90deg,
    rgba(255, 120, 0, 0.25) 0%,
    rgba(255, 80, 0, 0.25) 100%
  );
  backdrop-filter: blur(2px);
}

.server_type_vip-3:not(.server_bg_custom):hover .server__bg-vip {
	background-image: linear-gradient(
		to right,
		rgb(255, 0, 0) 0%,
		rgb(255, 115, 0) 100%
	);
}

.server_type_vip-3 .server__rate {
	font-weight: 700;
}

.server_type_vip-3 .server__chron {
	font-weight: 700;
}

.server_type_vip-3 .server__date {
	font-weight: 700;
}

.server_type_vip-3 .tip_style_obt {
	color: #fff7c9;
}

.server_type_vip-3 .marking__item_type_new {
	color: rgb(255, 223, 88);
}

.server_type_vip-3 .marking__item_type_pts {
	color: rgb(255, 223, 88);
}

.server_type_vip-3 .marking__item_type_new:hover {
	color: rgb(0, 0, 0);
}

.server_type_vip-3 .marking__item_type_pts:hover {
	color: rgb(0, 0, 0);
}

.server .server__rate,
.server .server__chron,
.server .server__date,
.server .server__plus {
  color: #D3D3D3;
}

.server_type_vip-2 .server__rate,
.server_type_vip-2 .server__chron,
.server_type_vip-2 .server__date,
.server_type_vip-2 .server__plus {
  color: #D3D3D3;
  font-weight: 600;
}

.server_type_vip-3 .server__plus {
  color: #D3D3D3;
}

/* server_bnr */

.server_bnr {
	height: 90px;
	padding-bottom: 60px;
}

.server__bnr {
	/* background-image: url(../images/); */
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	bottom: 5px;
	right: 0;
	height: 55px;
	border-radius: 5px;
	transition: 0.2s all;
}

.server_bnr:hover .server__bnr {
	filter: brightness(120%);
}

.server__bg {
	display: block;
	position: absolute;
	left: -10px;
	top: 2px;
	right: -10px;
	bottom: 2px;
	z-index: -2;
	border-radius: 5px;
	transition: 0.2s all;
	background-color: transparent;
	/* border: 1px solid transparent; */
	pointer-events: none;
}

.server:not(.server_bg_custom):not(.server_type_vip-3):hover .server__bg {
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.news__not {
	min-height: 20px;
}

/* sidebar */

.sidebar {
  width: 260px;
  flex-shrink: 0;
  color: #ddd;
  font-size: 14px;
  box-sizing: border-box;
  padding: 10px;
  margin: 10px 0 10px 10px;
  background: linear-gradient(to bottom, #1b1d23, #101216);
  position: relative;
  border-radius: 6px;
  border: 1px solid #2a2a2a;
}

/* Telegram news block (подтянут вверх для выравнивания заголовка с «ТОП СЕРВЕРОВ») */
.tg-news-block {
  width: 100%;
  max-width: 240px;
  margin: -12px 0 15px 0;
  box-sizing: border-box;
}

.tg-news-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tg-news-card {
  background: #1b1d23;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.tg-news-card__media {
  position: relative;
}

.tg-news-card__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.tg-news-card__image--placeholder {
  height: 140px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.tg-news-card__logo {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: #111;
  object-fit: cover;
}

.tg-news-card__logo--placeholder {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: #2f2f2f;
}

.tg-news-card__body {
  padding: 10px 12px 8px 12px;
}

.tg-news-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.tg-news-card__text {
  font-size: 12px;
  color: #c7c7c7;
  line-height: 1.4;
  margin-bottom: 0;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.tg-news-card__text:hover {
  scrollbar-color: #f7901e transparent;
}

.tg-news-card__text::-webkit-scrollbar {
  width: 4px;
}

.tg-news-card__text::-webkit-scrollbar-track {
  background: transparent;
}

.tg-news-card__text::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 6px;
}

.tg-news-card__text:hover::-webkit-scrollbar-thumb {
  background: #f7901e;
}

.tg-news-card__footer {
  padding: 0 12px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tg-news-card__channel {
  font-size: 12px;
  color: #f7901e;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.tg-news-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  max-width: 100%;
  height: 32px;
  border-radius: 6px;
  background: #f7901e;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #ffa54c;
}

.tg-news-card__btn:hover {
  background: #ffa54c;
  text-decoration: none;
}

.mid_dirrection_left .sidebar {
  width: 260px;
  flex-shrink: 0;
  color: #ddd;
  font-size: 14px;
  box-sizing: border-box;
  padding: 10px;
  margin: 10px 0 10px 10px;
  background: linear-gradient(to bottom, #1b1d23, #101216);
  position: relative;
  border-radius: 6px;
  border: 1px solid #2a2a2a;
}

.sidebar_menu_wrapper ul {
	display: inline-block;
	box-sizing: border-box;
	text-align: center;
	padding: 0 10px;
	width: 100%;
}

.sidebar_menu_wrapper ul li > a {
  color: #bbb;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-block;
  text-transform: uppercase;
  transition: 0.2s;
}

.sidebar_menu_title {
	color: #747474;
	font-size: 20px;
	text-shadow: 0 3px 5px rgba(0, 0, 0, 0.35);
	text-transform: uppercase;
	text-align: center;
	padding: 10px 0;
}

.sidebar_menu_contet {
	border-top: 2px solid #393333;
	border-bottom: 2px solid #393333;
	padding: 6px 0;
	box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.4) inset;
}

/* scl */

.scl {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}

.scl_mb {
	margin-bottom: 15px;
}

.scl__link {
	font-size: 20px;
	margin: 10px;
	color: #fff;
	background-color: rgb(108, 108, 108);
	opacity: 0.5;
	transition: 0.3s all;
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	text-decoration: none;
	border-radius: 2px;
}

.scl__link:hover {
	opacity: 1;
	text-decoration: none;
}

/* bnr-240 */

.bnr-240 {
	text-align: center;
	text-align: center;
	max-height: 400px;
	overflow: hidden;
	max-width: 220px;
	transition: 0.3s all;
}

.bnr-240_m {
	margin: 15px auto;
}

.bnr-sld {
	position: relative;
}

.bnr-sld__edit {
	position: absolute;
	right: 5px;
	top: 5px;
	opacity: 0;
	transition: 0.3s all;
}

.bnr-sld:hover .bnr-sld__edit {
	opacity: 1;
}

/* about-page */

.about-page {
	position: relative;
	border: 1px dashed #444;
	box-sizing: border-box;
	width: calc(100% - 30px);
	margin: 0 auto 0;
	border-radius: 3px;
}

.about-page ul {
	list-style: square inside;
	padding-left: 10px;
}

.about-page li {
	margin: 5px 0;
}

.about-page__content {
	padding: 12px 16px;
	box-sizing: border-box;
	line-height: 18px;
	background-color: #1e1e1e;
	color: #ccc;
}

.about-page__content p {
	margin-bottom: 6px;
}

.about-page__edit {
	position: absolute;
	right: 2px;
	top: 1px;
	opacity: 0.5;
	transition: 0.3s all;
}

.about-page__edit:hover {
	opacity: 1;
}

/* footer */

.footer {
	min-height: 80px;
	color: #f1f1f1;
	font-size: 14px;
}

.footer_title {
	text-align: center;
	font-size: 24px;
	padding: 16px 0;
	font-weight: 400;
}

.footer_info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer_info > div {
	padding: 16px;
	text-align: center;
}

.bnr_88_wrp {
	display: inline-block;
	margin: 0 16px;
}

.copyr {
	text-align: right;
	line-height: 16px;
	margin: 5px 15px;
	color: rgb(121, 115, 104);
}

.copyr__desc {
	color: rgba(103, 111, 121, 0.3);
	font-size: 12px;
}

.f-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.f-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px 0;
	margin-right: auto;
}

.f-nav__link {
	color: #687079;
	font-size: 14px;
	text-decoration: none;
	position: relative;
	margin: 15px 20px;
	display: inline-block;
}

.f-nav__link:hover {
	text-decoration: none;
}

.f-nav__link:after {
	content: "";
	display: block;
	height: 1px;
	background-color: #687079;
	position: absolute;
	left: 0;
	bottom: -3px;
	right: 100%;
	transition: 0.3s all;
}

.f-nav__link:hover:after {
	right: 0;
}

.logo-best-anons {
	transition: 0.3s all;
	opacity: 0.5;
}

.logo-best-anons:hover {
	opacity: 1;
}

/* other */

.visible {
	opacity: 1;
}

.old_ie {
	background-color: #000;
	font-size: 30px;
	padding: 120px 0 20px;
	text-align: center;
	z-index: 999999;
	width: 100%;
}

/* .today,
.yesterday,
.tomorrow {
    display: inline-block
} */

.full_server_go_site_wrp {
	text-align: center;
	margin: 20px 0;
}

.full_server_go_site {
	background: linear-gradient(180deg, rgba(255,143,42,.88), rgba(255,143,42,.52));
	border-radius: 6px;
	border: 1px solid rgba(255,143,42,.5);
	display: inline-block;
	cursor: pointer;
	color: #1a120a;
	font-size: 15px;
	font-weight: 700;
	padding: 6px 24px;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(255,143,42,.22);
	transition: background 0.2s, box-shadow 0.2s;
}

.full_server_go_site:hover {
	background: linear-gradient(180deg, rgba(255,143,42,.96), rgba(255,143,42,.60));
	box-shadow: 0 6px 16px rgba(255,143,42,.32);
	text-decoration: none;
}

.full_server_go_site:active {
	position: relative;
	top: 1px;
}

/* .l2b_side {
    box-sizing: border-box;
    padding: 20px
}

.full_server_soc_wrp {
    text-align: center
}

.soc_in_full {
    margin: 15px 0 0
} */

#share42 > .share42-item {
	transition: 0.3s all;
	filter: grayscale(100%);
}

#share42 > .share42-item:hover {
	filter: brightness(130%);
}

.full_server_status_vip {
	margin-bottom: 30px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 25px;
}

.full_server_title {
	font-size: 25px !important;
}

.full_server_type_vip-1 {
	color: #ff4621;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.41);
}

.full_server_type_vip-2 {
	color: #ffb521;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.45);
}

.feedback_contacts_title {
	font-size: 26px;
	font-weight: 700;
	text-align: center;
	padding: 20px 0;
}

.feedback_contacts_flex {
	box-sizing: border-box;
	padding: 0 7%;
	display: flex;
	align-items: center;
}

.feedback_contacts_flex > div {
	width: 50%;
	text-align: center;
}

.feedback_contacts__item {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 10px;
}

.feedback_ico {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.feedback_link {
	font-weight: 700;
	font-size: 18px;
	text-decoration: underline;
}

.feedback_link:hover {
	text-decoration: none;
}

.feedback_span {
	font-weight: 700;
	font-size: 18px;
}

.sp_wrp img {
	width: 50%;
}

.add_news_wrapper {
	padding-bottom: 30px;
}

.add_news_title {
	text-align: center;
	padding: 20px 0;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.info_wrapper {
	border: 2px solid #00a9c5;
	margin: 36px auto 0;
	position: relative;
	padding: 30px 20px 20px;
	text-align: center;
}

.input_wrapper {
	border: 2px solid rgba(34, 35, 38, 0.18);
	max-width: 300px;
	width: 100%;
	min-height: 45px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.input_wrapper_select {
	width: 300px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	margin-bottom: 20px;
}

.input_wrapper input,
.input_wrapper textarea,
.input_wrapper select {
	border: 1px solid rgba(0, 0, 0, 0.09) !important;
	width: 200px;
	height: 25px;
	padding: 0;
	line-height: 25px;
	background-color: #f3f3f3;
	text-align: center;
	transition: 0.3s all;
}

.input_wrapper textarea {
	height: auto;
	min-height: 25px;
	box-sizing: border-box;
	padding: 5px;
}

.input_wrapper input:focus,
.input_wrapper textarea:focus .input_wrapper select:focus {
	border: 1px solid rgba(105, 105, 105, 0.36) !important;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.26);
}

.fieldsubmit {
	text-align: center;
}

.chosen-container-single .chosen-default {
	color: #222326;
	position: relative;
}

#category_chosen {
	position: relative;
}

#category_chosen:after {
	content: "";
	display: block;
	position: absolute;
	top: 18px;
	right: 12px;
	width: 0;
	height: 0;
	border-top: 5px solid #999;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
}

.chosen-container-single .chosen-single {
	border: 2px solid rgba(34, 35, 38, 0.18);
}

.chosen-container-single .chosen-single-with-deselect span,
.chosen-container-single .chosen-single span {
	margin-right: 0 !important;
}

.l2b_tip {
	display: block;
	max-height: 0;
	transition: 0.3s all;
	line-height: 16px;
	font-size: 12px;
	color: #a49898;
	transition: 0.3s all;
	opacity: 0;
	padding: 2px 10px 5px;
	visibility: hidden;
	max-width: 200px;
}

:hover:not(.on-focus) > .l2b_tip,
.on-focus input:focus + .l2b_tip,
.on-focus textarea:focus + .l2b_tip {
	max-height: 50px;
	opacity: 1;
	visibility: visible;
}

.inp_pad {
	padding-right: 15px;
	padding-left: 15px;
	box-sizing: border-box;
}

.l2b_btn_submit {
	width: 100%;
	background: linear-gradient(180deg, rgba(255,143,42,.88), rgba(255,143,42,.52));
	border-radius: 6px;
	border: 1px solid rgba(255,143,42,.5);
	display: inline-block;
	cursor: pointer;
	color: #1a120a;
	font-size: 15px;
	font-weight: 700;
	padding: 3px 24px;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(255,143,42,.22);
	transition: background 0.2s, box-shadow 0.2s;
}

.l2b_btn_submit:hover {
	background: linear-gradient(180deg, rgba(255,143,42,.96), rgba(255,143,42,.60));
	box-shadow: 0 6px 16px rgba(255,143,42,.32);
	text-decoration: none;
}

.l2b_btn_submit:active {
	position: relative;
	top: 1px;
}

.select_btn_wrp {
	text-align: center;
	background-color: #1e1e1e;
	box-sizing: border-box;
	padding: 20px 0;
}

.select_btn_span {
	font-style: italic;
}

.best_btn_wrp {
	text-align: center;
}

.best_btn_wrp > div {
	display: inline-block;
	margin: 4px;
	font-size: 0;
	position: relative;
	z-index: 10;
	cursor: pointer;
}

.best_btn_wrp > div .fly_prev {
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	right: 2px;
	bottom: 2px;
	left: 2px;
	z-index: 1;
	background-color: rgba(255, 0, 0, 0.6);
	transition: 0.3s all;
}

#best_btn_left_top.best_btn_active #fly_prev_left_top {
	background-color: transparent;
	transform: translate(-150px, -150px);
	bottom: 100%;
	right: 100%;
}

#best_btn_right_top.best_btn_active #fly_prev_right_top {
	background-color: transparent;
	transform: translate(300px, -150px);
	bottom: 100%;
	right: 100%;
}

#best_btn_left_bottom.best_btn_active #fly_prev_left_bottom {
	background-color: transparent;
	transform: translate(-150px, 150px);
	bottom: 100%;
	right: 100%;
}

#best_btn_right_bottom.best_btn_active #fly_prev_right_bottom {
	background-color: transparent;
	transform: translate(300px, 150px);
	bottom: 100%;
	right: 100%;
}

.best_btn_left_top,
.best_btn_right_top,
.best_btn_left_bottom,
.best_btn_right_bottom {
	display: block;
	width: 150px;
	height: 50px;
	border: 2px solid red;
	background-color: rgba(255, 255, 255, 0.55);
	position: fixed;
	z-index: 9999;
	transition: 0.3s all;
	pointer-events: none;
	opacity: 0;
}

.best_btn_left_top {
	left: 0;
	top: 0;
}

.best_btn_right_top {
	right: 0;
	top: 0;
}

.best_btn_left_bottom {
	left: 0;
	bottom: 0;
}

.best_btn_right_bottom {
	right: 0;
	bottom: 0;
}

.best_btn_left_top.btn_fix_active,
.best_btn_right_top.btn_fix_active,
.best_btn_left_bottom.btn_fix_active,
.best_btn_right_bottom.btn_fix_active {
	opacity: 1;
	animation: btn_fix_active 2s infinite;
	transition-delay: 0.2s;
}

@keyframes btn_fix_active {
	0% {
		border: 4px solid red;
	}

	50% {
		border: 4px solid rgba(255, 0, 0, 0.2);
	}

	100% {
		border: 4px solid red;
	}
}

.best_btn_wrp > div > img {
	box-sizing: border-box;
	border: 2px solid transparent;
	position: relative;
	z-index: 2;
}

.best_btn_active img {
	border: 2px solid red !important;
}

#btn_for_public_wrp {
	min-height: 140px;
	border: 1px solid #ccc;
	max-width: 80%;
	margin: 20px auto;
	box-sizing: border-box;
	padding: 20px;
}

#btn_for_public_wrp > div {
	display: none;
	transition: 0.3s all;
	opacity: 0;
	transform: rotateY(90deg);
}

.btn_for_public textarea {
	width: 100%;
	min-height: 100px;
	box-sizing: border-box;
	padding: 5px 10px;
}

#block_bnr {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 5;
}

#block_bnr img {
	width: 100%;
	height: auto;
	display: block;
	box-shadow: 0 0 10px #000;
}

#block_bnr_left {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 390px;
	height: 1100px;
	transition: 0.3s all;
}

#block_bnr_right {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1000;
	width: 390px;
	height: 1100px;
	transition: 0.3s all;
}

/* Высота 820px только когда баннер не в блоке .main.main_top (например, в других шаблонах) */
.l2b-header-bnr {
	width: 100%;
	text-align: center;
	height: 820px;
	display: inline-block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1;
	/* min-width: 450px; */
	background-position: center top;
	background-repeat: no-repeat;
}

.l2b_top_bnr img {
	object-fit: cover;
	object-position: 50% 50%;
	/* -webkit-mask: linear-gradient(to bottom, rgb(0, 0, 0) 10%, rgba(0, 0, 0, 0.27) 55%, rgba(0, 0, 0, 0) 100%); */
}

#progress {
	position: fixed;
	z-index: 99999;
	top: 0;
	left: -6px;
	width: 1%;
	height: 3px;
	background: var(--accent);
	border-radius: 1px;
	transition: width 500ms ease-out, opacity 400ms linear;
}

.border_top_title {
	border-top: 2px solid #393333;
	box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.4) inset;
}

.servers_cat_sort_wrp {
	box-sizing: border-box;
	padding: 10px;
}

.servers_cat_sort_wrp a {
	color: #da8324;
	line-height: 30px;
}

.block_bnr {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 10px;
	height: 160px;
	margin-bottom: 30px;
	text-align: center;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	border: 1px dashed #444;
	line-height: 18px;
	border-radius: 6px;
	color: #8a9098;
	background-color: #1e1e1e;
}

.bnr_code {
	display: none;
	visibility: hidden;
	opacity: 0;
	transition: 0.3s all;
}

.bnr_code textarea {
	color: #818c8a;
	font-size: 12px;
	height: 130px;
	resize: none;
	width: 100%;
}

.bnr_code_active {
	display: block;
	visibility: visible;
	opacity: 1;
}

.block_bnr textarea {
	width: 100%;
	max-width: 100%;
	height: auto;
	min-height: 100px;
	box-sizing: border-box;
	padding: 10px;
}

.block_bnr_btn {
	position: absolute;
	text-transform: uppercase;
	width: 120px;
}

.block_bnr_btn:hover {
	cursor: pointer;
}

.block_bnr_btn:before {
	font: normal normal normal 10px/1 FontAwesome;
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #000;
	position: absolute;
}

.l2b_active_b:before {
	content: "\f00c";
}

#block_bnr_btn_left_top {
	left: 10px;
	top: 10px;
	text-align: left;
	padding-left: 20px;
}

#block_bnr_btn_left_top:before {
	left: 0;
	top: 1px;
}

#block_bnr_btn_right_top {
	right: 10px;
	top: 10px;
	text-align: right;
	padding-right: 20px;
}

#block_bnr_btn_right_top:before {
	right: 0;
	top: 1px;
}

#block_bnr_btn_left_bottom {
	left: 10px;
	bottom: 10px;
	text-align: left;
	padding-left: 20px;
}

#block_bnr_btn_left_bottom:before {
	left: 0;
	top: 1px;
}

#block_bnr_btn_right_bottom {
	right: 10px;
	bottom: 10px;
	text-align: right;
	padding-right: 20px;
}

#block_bnr_btn_right_bottom:before {
	right: 0;
	top: 1px;
}

.bnr_900_wrp {
	flex-basis: 100%;
	padding: 0 0 10px;
	margin: 20px 25px;
}

.calendar {
	z-index: 20;
}

.page_form_style #dle-content {
	padding: 5%;
	box-sizing: border-box;
}

.highslide-controls a {
	transition: 0 all;
}

/* crumbs */

.crumbs {
	color: #fff;
	margin-right: auto;
}

.crumbs__title {
	/* color: rgb(255, 140, 0); */
	color: rgb(243, 108, 46);
	font-size: 14px;
	cursor: default;
}

.crumbs__desc,
#dle-speedbar a {
	color: rgb(255, 186, 118);
	font-size: 12px;
	text-decoration: none;
	transition: 0.3s all;
	max-width: 220px;
}

#dle-speedbar a:hover {
	color: rgb(243, 108, 46);
}

/* 
.sd-title {
    color: rgb(104, 110, 115);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgb(225, 222, 220);
    cursor: default;
}

.sd-title_mb {
    margin-bottom: 15px
}

.select-st {
    width: 100%;
    border: 1px solid transparent;
    background-color: #dee0e2;
    color: #676d73;
    font-size: 14px;
    height: 40px;
    padding: 5px 10px;
    border-radius: 3px
}

.select-st_mb {
    margin-bottom: 15px
}

.sd-title_pos_mbtal {
    text-align: left;
    margin-bottom: 15px
} */

/* g-btn */

.g-btn {
	color: rgb(99, 53, 53);
	text-transform: uppercase;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	height: 40px;
	border-radius: 3px;
	cursor: pointer;
	transition: 0.3s all;
	background-color: rgba(255, 119, 56, 0.9);
	border: 2px solid rgba(83, 40, 21, 0.61);
	box-sizing: border-box;
}

.g-btn_w_full {
	width: 100%;
}

.g-btn:hover {
	color: #fff;
	background-color: rgb(255, 98, 25);
}

.g-btn_mb {
	margin-bottom: 15px;
}

.g-btn_sub {
	padding: 0 40px;
}

.g-btn_style_grey {
	color: rgb(105, 105, 105);
	background-color: rgba(192, 192, 192, 0.9);
	border: 2px solid rgba(152, 152, 152, 0.6);
}

.g-btn_style_grey:hover {
	color: rgb(255, 255, 255);
	background-color: rgb(255, 98, 25);
	border: 2px solid rgba(177, 177, 177, 0.6);
}

.g-btn_style_min {
	color: rgb(105, 105, 105);
	background-color: rgb(234, 234, 234);
	border: 1px solid rgba(152, 152, 152, 0.6);
	height: 30px;
}

.g-btn_style_min:hover {
	color: rgb(255, 255, 255);
	background-color: rgb(255, 98, 25);
	border: 1px solid rgba(177, 177, 177, 0.6);
}

.g-btn_luck {
	color: rgb(255, 255, 255);
	background: rgb(255, 120, 0);
	border: 0;
	height: 30px;
	border-radius: 0;
}

.g-btn_luck:hover {
	color: rgb(255, 255, 255);
	background-color: rgb(255, 133, 77);
	border: 0;
	text-decoration: none;
}

.blog-list_mb {
	margin-bottom: 15px;
}

.blog-news {
	display: block;
	text-decoration: none;
	padding: 7px 10px;
	border-bottom: 1px dashed #e1dedc;
	transition: 0.3s all;
	position: relative;
	z-index: 0;
	background-color: transparent;
}

.blog-news:hover {
	background-image: linear-gradient(
		to right,
		rgb(255, 0, 0) 0%,
		rgb(255, 147, 0) 100%
	);
}

.blog-news:hover {
	text-decoration: none;
	color: #fff;
}

.blog-news__title {
	color: #776f6a;
	font-size: 14px;
	margin-bottom: 7px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 3px 0;
}

.blog-news:hover .blog-news__title {
	color: #fff;
}

.blog-news__info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	color: #999fa5;
	font-size: 12px;
}

.blog-news:hover .blog-news__info {
	color: #fff;
}

.section-wrp {
	display: flex;
	align-items: flex-start;
	justify-content: space-around;
	padding: 0 20px 20px;
	flex-grow: 1;
}

.section-wrp_acb {
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}

.section-wrp_submit-wrp {
	margin-top: 30px;
	justify-content: flex-end;
}

.section-wrp_submit-wrp--center {
	justify-content: center;
}

/* Сообщение о лимите серверов на странице addserver (вместо кнопки «Добавить сервер») — текст подставляется по текущей локали */
.addserver-limit-wrp {
	justify-content: center;
}
.addserver-limit-msg {
	margin: 0;
	padding: 1rem 1.25rem;
	text-align: center;
	color: var(--servtextcolor, #ccc);
	font-size: 1rem;
	line-height: 1.4;
}

.section-right {
	width: 308px;
	flex-shrink: 0;
}

.section-left {
	flex-grow: 1;
	margin-right: 20px;
}

.section-fdc {
	display: flex;
	flex-direction: column;
	align-self: stretch;
	align-items: stretch;
	justify-content: stretch;
}

.block-worn {
	border: 1px dashed #444;
	padding: 15px 20px;
	box-sizing: border-box;
	line-height: 18px;
	color: #8a9098;
	background-color: #1e1e1e;
	border-radius: 6px;
}

.block-worn__fg {
	flex-grow: 1;
}

.list-info {
	list-style: disc inside;
}

.list-info__li {
	margin-bottom: 17px;
	line-height: 20px;
}

.list-info_link {
	font-weight: 700;
	color: #1677bd;
}

.add-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.add-info_vert {
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.add-info_share {
	flex-direction: column;
	text-align: left;
}

.add-info_style_bb {
	border-bottom: 1px solid #dcdfe1;
	padding-bottom: 15px;
}

.add-info_alert {
	border: 1px solid #d55f5f;
	padding: 15px 20px;
	box-sizing: border-box;
	line-height: 18px;
	border-radius: 6px;
	color: #eaf0ff;
	background-color: rgba(213,95,95,0.12);
}

.add-info_style_bb:nth-last-child(1) {
	border-bottom: none;
	padding-bottom: 0;
}

.add-info_pos_last {
	margin-bottom: 0;
}

.add-info input,
.add-info select,
.add-info .chosen-container,
.add-info textarea {
	height: 40px;
	background-color: rgba(255,255,255,0.05);
	color: #eaf0ff;
	box-sizing: border-box;
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 5px;
	max-width: 420px !important;
	width: 350px !important;
	flex-shrink: 0;
}

.add-info .inpt {
	height: 40px;
	background-color: rgba(255,255,255,0.05);
	color: #eaf0ff;
	box-sizing: border-box;
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 5px;
	max-width: 420px !important;
	width: 100% !important;
	flex-shrink: 0;
	min-width: 0;
}

.add-info__input_size_min {
	width: 200px !important;
}

.add-info_share input {
	width: 100% !important;
	margin-top: 8px;
	max-width: 100%;
}

.add-info textarea {
	height: 110px;
}

.add-info__name {
	box-sizing: border-box;
	padding-right: 20px;
}

.add-info_share .add-info__name {
	padding: 0;
	margin-right: auto;
}

.add-info__title {
	color: #535659;
	font-size: 12px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
}

.add-info__desc {
	font-size: 12px;
	color: #a3a8ab;
	line-height: 16px;
}

.ico-money {
	display: inline-block;
	background: url(../images/coin_m.png) no-repeat;
	width: 17px;
	height: 17px;
}

.ico-money_m_r {
	margin-right: 6px;
}

.ico-gift {
	display: inline-block;
	background: url(../images/gift.png) no-repeat;
	width: 14px;
	height: 14px;
}

.ico-gift_m_r {
	margin-right: 6px;
}

.ico-country {
	display: inline-block;
	background: url(../images/ico-country.png) no-repeat;
	width: 16px;
	height: 16px;
}

.ico-country_m_r {
	margin-right: 6px;
}

.more-about {
	border: 1px solid #dcdfe1;
	box-sizing: border-box;
	border-radius: 5px;
	margin-bottom: 30px;
}

.txt-pink {
	color: #e34a7f;
}

.txt-blue {
	color: #5791c7;
}

.txt-white {
	color: #fff;
}

/* partner */

.partner {
	display: inline-flex;
	align-items: stretch;
	text-decoration: none;
	text-align: center;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	min-height: 130px;
	width: calc(33% - 32px);
	min-width: 200px;
	margin: 15px;
	border: 1px dashed #dcdfe1;
	border-radius: 5px;
	transition: 0.3s all;
	flex-direction: column;
	background-color: #f4f4f4;
}

.partner:hover {
	text-decoration: none;
}

.partner__title {
	color: #20252a;
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	word-break: break-all;
	text-transform: uppercase;
}

.partner__content {
	flex-grow: 1;
	text-decoration: none;
	text-align: center;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #20252a;
	background-blend-mode: luminosity;
	transition: 0.3s all;
}

.partner:hover .partner__content {
	text-decoration: none;
	opacity: 1;
	background-color: rgba(0, 0, 0, 0);
}

/* lang */

.change-lang {
	display: inline-flex;
	height: 22px;
	width: 33px;
	border: 1px dashed #3a3f43;
	border-radius: 5px;
	background-color: #20252a;
	box-sizing: border-box;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	flex-shrink: 0;
	margin: 10px 5px;
	cursor: pointer;
	transition: 0.3s all;
	opacity: 0.6;
	margin: 0 40px 0 0;
}

.change-lang:hover {
	opacity: 1;
}

/* Переключатель языков РУ/EN в овальном стиле */
.lang-switcher {
	display: inline-flex;
	background: linear-gradient(to bottom, #1b1d23, #101216);
	border: 1px solid #2a2a2a;
	border-radius: 20px;
	padding: 2px;
	gap: 2px;
	flex-shrink: 0;
	margin: 0 40px 0 0;
	width: 60px; /* в 2 раза уже (было ~120px) */
}

.lang-switcher__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px; /* уменьшил ширину */
	height: 24px;
	padding: 0 4px; /* уменьшил padding */
	border-radius: 18px;
	font-size: 10px; /* немного уменьшил шрифт */
	font-weight: 600;
	text-transform: uppercase;
	color: #aaa;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	background: transparent;
	box-sizing: border-box;
}

.lang-switcher__btn:hover {
	color: #ddd;
	background: rgba(255, 255, 255, 0.05);
}

.lang-switcher__btn_active {
	color: #fff;
	background: linear-gradient(90deg, #f7971e, #ffd200);
	box-shadow: 0 2px 4px rgba(247, 151, 30, 0.3);
	cursor: default; /* блокируем курсор на активной кнопке */
	pointer-events: none; /* блокируем клики на активной кнопке */
}

.lang-switcher__btn_active:hover {
	color: #fff;
	background: linear-gradient(90deg, #f7971e, #ffd200); /* убираем hover эффект для активной */
}

/* inform */

.inform {
}

.inform__panel {
	display: flex;
	align-items: center;
}

.header__inform {
	margin-left: auto;
}

.inform__balance {
	color: rgb(153, 140, 129);
	font-size: 12px;
}

.inform__balance-link {
	color: rgb(255, 120, 0);
	text-decoration: none;
}

.inform__currency {
	color: rgb(153, 140, 129);
	font-weight: normal;
}

/* heading */

.heading {
	color: #c0c8d4;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-bottom: 1px solid #3a3a3a;
	cursor: default;
	background: #1e1e1e;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.heading_type_1 {
	margin: 15px 0;
}

/* Оформление gw-checkbox */

.gw-checkbox {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 10px 30px 10px 0;
}

.gw-checkbox__label {
	height: 14px;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	color: #d0d0d0;
	font-size: 13px;
	box-sizing: border-box;
}

.gw-checkbox__block {
	display: inline-block;
	width: 14px;
	height: 14px;
	box-sizing: border-box;
	border-radius: 0;
	border: 1px solid #242524;
	position: relative;
	cursor: pointer;
	margin-right: 8px;
	flex-shrink: 0;
}

.gw-checkbox__block:after {
	content: "";
	background-color: rgb(75, 75, 75);
	border-radius: 50%;
	position: absolute;
	left: 1px;
	top: 1px;
	opacity: 0;
	pointer-events: none;
	border-radius: 0;
	width: 10px;
	height: 10px;
	transform: scale(0);
	transition: 0.2s all;
}

.gw-checkbox__input {
	display: none;
}

.gw-checkbox__input:checked ~ .gw-checkbox__block:after {
	opacity: 1;
	transform: scale(1);
}

.gw-checkbox__link {
	color: rgb(219, 99, 0);
}

/* server type */

.server-type-wrp {
	display: flex;
	flex-wrap: wrap;
}

.gw-checkbox_server-type {
	width: 50%;
	box-sizing: border-box;
	padding-right: 5px;
	margin: 10px 0;
}

.gw-checkbox_server-type:hover .gw-checkbox__block {
	border: 1px solid rgb(156, 156, 156);
}

/* e-list */

.e-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.e-list__link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(50% - 1px);
	font-size: 13px;
	color: rgb(255, 255, 255);
	background-color: rgb(108, 108, 108);
	transition: none;
	text-align: center;
	text-decoration: none;
	padding: 9px 0;
	border-radius: 0;
	margin-bottom: 2px;
	text-transform: uppercase;
	font-weight: 700;
	cursor: pointer;
	position: relative;
}

.e-list__link_w_100 {
	width: 100%;
}

.e-list__link:hover {
	text-decoration: none;
	background: rgb(255, 120, 0);
}

.e-list__link_color_orange {
	background: rgb(255, 120, 0);
}

.e-list__link_color_orange:hover {
	background: rgb(255, 135, 30);
}

.e-list__link_size_min {
	font-size: 12px;
	color: rgb(255, 255, 255);
	padding: 6px 0;
	text-transform: none;
}

/* our-btns */

.site-share__btns {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.site-share__btn {
	width: calc(50% - 1px);
	margin-bottom: 2px;
	height: 50px;
	border: 2px solid rgb(244, 244, 244);
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	text-transform: uppercase;
	text-align: center;
	padding: 0 10px;
	line-height: 20px;
	font-weight: 700;
	color: rgb(117, 117, 117);
	cursor: pointer;
	background-color: #fff;
}

.site-share__btn:hover {
	border: 2px solid rgb(204, 204, 204);
	color: rgb(90, 90, 90);
	background-color: rgb(239, 239, 239);
}

.site-share__btn_active,
.site-share__btn_active:hover {
	color: rgb(255, 255, 255);
	background-color: rgb(255, 98, 25);
	border: 2px solid rgba(177, 177, 177, 0.6);
}

.site-share__img-wrp {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	box-sizing: border-box;
	margin: 10px 0;
}

.site-share__copy {
	position: relative;
}

.site-share__result {
	position: absolute;
	top: calc(50% + 5px);
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	padding: 5px 10px;
	background-color: rgba(2, 2, 2, 0.76);
	color: rgb(140, 254, 81);
	border-radius: 3px;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s all;
	font-size: 12px;
	text-align: center;
}

.site-share__result_active {
	visibility: visible;
	opacity: 1;
	top: calc(100% + 5px);
}

/* bar-side */

.bar-side {
	position: absolute;
	left: 2px;
	top: 18px;
	font-size: 16px;
	z-index: 2;
	cursor: pointer;
	color: rgb(106, 112, 119);
}

.bar-side:hover {
	color: #000;
}

.mid_dirrection_left .bar-side {
	left: auto;
	right: 2px;
}

.bar-side__ico {
	transform: rotateY(180deg);
}

.mid_dirrection_left .bar-side__ico {
	transform: rotateY(0deg);
}

.bar-side__dirrection {
	display: none;
}

.bar-side__dirrection_left {
	display: inline;
}

.mid_dirrection_left .bar-side__dirrection_right {
	display: inline;
}

.mid_dirrection_left .bar-side__dirrection_left {
	display: none;
}

/* filter */

.filter {
	position: absolute;
	right: 2px;
	top: 18px;
	z-index: 2;
	cursor: pointer;
	color: rgb(106, 112, 119);
	font-size: 14px;
}

.filter:hover {
	color: #000;
}

.mid_dirrection_left .filter {
	right: auto;
	left: 2px;
}

.filter__dirrection {
	display: none;
}

.filter__dirrection_left {
	display: inline;
}

.mid_dirrection_left .filter__dirrection_right {
	display: none;
}

.mid_dirrection_left .filter__dirrection_left {
	display: inline;
}

/* Twitch */

.stream-box_none {
	display: none;
}

.streams {
	overflow: auto;
	width: 420px;
}

.streams_m_b {
	margin-bottom: 10px;
}

.streams__switches {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap-reverse;
	transform: translateY(1px);
	position: relative;
	z-index: 2;
}

.streams__switch {
	display: inline-block;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	cursor: pointer;
	background-color: rgb(228, 232, 233);
	width: 25%;
	text-align: center;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	padding: 0 5px;
}

.streams__txt {
	display: inline-block;
	max-width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.streams__switch_active {
	background-color: #fff;
}

.streams__switch:nth-last-child(1) {
	border-right: 1px solid #ccc;
}

.streams__container {
	max-width: 100%;
	box-sizing: border-box;
	border: 1px solid #ccc;
	background-color: #fff;
	overflow: hidden;
	transition: 0.3s all;
	padding: 0;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.streams__container_status_off {
	height: 50px;
}

.streams__container_load {
	display: none;
}

.stream__offline {
	text-transform: uppercase;
}

/* Модалка «Наша кнопка» в ЛК */
.lk-site-share-modal {
	position: fixed;
	inset: 0;
	z-index: 10050;
}
.lk-site-share-modal__overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
	z-index: 10050;
}
.lk-site-share-modal__content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 520px;
	max-width: 92vw;
	max-height: 90vh;
	overflow-y: auto;
	background: #2a2525;
	border: 1px solid #5a5454;
	border-radius: 8px;
	padding: 16px;
	box-sizing: border-box;
	z-index: 10051;
	text-align: center;
}
.lk-site-share-modal__close {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 28px;
	height: 28px;
	border-radius: 4px;
	border: 1px solid #6b6b6b;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
}
.lk-site-share-modal__title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #fff;
}
.lk-site-share-modal .site-share__btn {
	border-color: #6b6b6b;
	background: #1f1a1a;
	color: #d0d0d0;
}
.lk-site-share-modal .site-share__btn:hover {
	border-color: #8a8a8a;
	background: #2a2525;
	color: #fff;
}
.lk-site-share-modal .site-share__btn_active,
.lk-site-share-modal .site-share__btn_active:hover {
	background: rgb(255, 98, 25);
	border-color: rgb(255, 98, 25);
	color: #fff;
}
.lk-site-share-modal .site-share__copy {
	background: #4a4444;
	border-color: #6b6b6b;
	color: #fff;
	margin-top: 10px;
}
.lk-site-share-modal .site-share__copy:hover {
	background: #5a5454;
	border-color: #8a8a8a;
}

.ba-modal {
	max-width: 500px;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,.16);
	background:
		radial-gradient(420px 180px at 50% -44px, rgba(120,170,255,.12), transparent 62%),
		linear-gradient(180deg, rgba(24,36,56,.97), rgba(12,20,34,.98));
	box-shadow: 0 30px 62px rgba(0,0,0,.62), inset 0 1px 0 rgba(255,255,255,.08);
	box-sizing: border-box;
	margin: 0 auto;
	position: relative;
	color: rgba(234,240,255,.94);
}

.ba-modal__content {
	padding: 20px;
	box-sizing: border-box;
}

/* Модальные окна (MFP и др.) — всегда выше свитчера и контента */
.mfp-bg,
.mfp-wrap {
	z-index: 10050;
}
.mfp-content {
	z-index: 10051;
}

/* ЛК-модалки (z-index 10050/10051) — поднимаем .wrapper выше свитчера, когда любая модалка открыта */
body.lk-modal-open .wrapper,
.wrapper:has(.lk-vip-modal[style*="block"]),
.wrapper:has(.lk-vote-modal[style*="block"]),
.wrapper:has(.lk-banner-modal[style*="block"]),
.wrapper:has(.lk-buyvotes-modal[style*="block"]),
.wrapper:has(.lk-promocodes-modal[style*="block"]),
.wrapper:has(.lk-promocodes-limit-modal[style*="block"]),
.wrapper:has(.lk-promocodes-delete-modal[style*="block"]),
.wrapper:has(.lk-delete-modal[style*="flex"]),
.wrapper:has(.lk-vip-confirm-modal[style*="block"]),
.wrapper:has(.lk-site-share-modal[style*="block"]) {
	z-index: 100 !important;
}
body.lk-modal-open .unified-vip-switcher-wrapper,
.header-banner-zone:has(.main-after-banner .wrapper .lk-vip-modal[style*="block"]) .unified-vip-switcher-wrapper,
.header-banner-zone:has(.main-after-banner .wrapper .lk-vote-modal[style*="block"]) .unified-vip-switcher-wrapper,
.header-banner-zone:has(.main-after-banner .wrapper .lk-banner-modal[style*="block"]) .unified-vip-switcher-wrapper,
.header-banner-zone:has(.main-after-banner .wrapper .lk-buyvotes-modal[style*="block"]) .unified-vip-switcher-wrapper,
.header-banner-zone:has(.main-after-banner .wrapper .lk-promocodes-modal[style*="block"]) .unified-vip-switcher-wrapper,
.header-banner-zone:has(.main-after-banner .wrapper .lk-promocodes-limit-modal[style*="block"]) .unified-vip-switcher-wrapper,
.header-banner-zone:has(.main-after-banner .wrapper .lk-promocodes-delete-modal[style*="block"]) .unified-vip-switcher-wrapper,
.header-banner-zone:has(.main-after-banner .wrapper .lk-delete-modal[style*="flex"]) .unified-vip-switcher-wrapper,
.header-banner-zone:has(.main-after-banner .wrapper .lk-vip-confirm-modal[style*="block"]) .unified-vip-switcher-wrapper,
.header-banner-zone:has(.main-after-banner .wrapper .lk-site-share-modal[style*="block"]) .unified-vip-switcher-wrapper {
	z-index: 19 !important;
}

/* fast-contacts */

.fast-contacts {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
}

.fast-contacts__box {
	display: flex;
	align-items: center;
	font-size: 18px;
	padding: 6px 15px;
	border: 1px solid rgb(220, 223, 225);
	flex-direction: column;
	box-sizing: border-box;
}

.fast-contacts__box_style_line {
	border: none;
	flex-direction: row;
}

.fast-contacts__box_m {
	margin: 10px;
}

.fast-contacts__ico {
	text-align: center;
}

.fast-contacts__ico_size_big {
	font-size: 40px;
}

.fast-contacts__ico_style_line {
}

.fast-contacts__ico_m_r {
	margin-right: 5px;
}

.fast-contacts__ico_m_l {
	margin-left: 5px;
}

.fast-contacts__link {
}

/* demonstration */

.demonstration {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

/* try-on */

.try-on {
	display: flex;
	justify-content: space-between;
}

.try-on__g-btn {
	width: calc(25% - 6px);
	font-size: 12px;
	color: rgb(255, 255, 255);
	background: rgb(255, 120, 0);
	border: 0;
	border-radius: 0;
	height: 26px;
	transition: none;
}

.try-on__g-btn_type_gray {
	background-color: rgb(108, 108, 108);
}

.try-on__g-btn_active {
	box-shadow: 0 0 0 2px rgb(255, 197, 174), 0 0 0 3px rgba(0, 0, 0, 0.48);
}

/* adw */

.adw-wrp {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	padding: 0 20px 30px;
	box-sizing: border-box;
}

.adw-wrp__side {
	padding: 0 20px;
	box-sizing: border-box;
	border: 1px solid #dcdfe1;
	/* border-radius: 5px; */
	background-color: rgb(251, 251, 251);
	color: #687079;
	font-size: 14px;
	width: 100%;
}

.adw-wrp__side_no_bg {
	background-color: transparent;
}

.adw-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: 45px;
	border-bottom: 1px dashed #dcdfe1;
}

.adw-about {
	line-height: 20px;
}

.adw-item__title {
	color: rgb(255, 81, 0);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
}

.adw-item:nth-last-child(1) {
	border-bottom: none;
}

/* Страница Реклама — новый дизайн карточек (2x3 сетка, тёмная тема) */
.page-reklama.page-reklama--cards {
	background: #1e1e1e;
	padding: 32px 16px 48px;
	border-radius: 8px;
	max-width: 940px;
	margin-left: auto;
	margin-right: auto;
}
.page-reklama__title {
	text-align: center;
	font-size: 1.75rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 28px;
}
.page-reklama__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 100%;
	margin: 0 auto;
}
@media (max-width: 900px) {
	.page-reklama__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 520px) {
	.page-reklama__grid {
		grid-template-columns: 1fr;
	}
}
.page-reklama__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: #2a2525;
	border: 1px solid #4f4545;
	border-radius: 8px;
	padding: 24px 16px;
	color: inherit;
	transition: border-color 0.2s, background 0.2s;
	cursor: default;
}
.page-reklama__card:hover {
	border-color: #6b5f5f;
	background: #322d2d;
}
.page-reklama__card-title {
	font-size: 1.05rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 10px;
}
.page-reklama__card-desc {
	font-size: 0.9rem;
	color: #b0b0b0;
	margin: 0 0 14px;
	line-height: 1.4;
}
.page-reklama__card-status {
	font-size: 0.85rem;
	padding: 6px 12px;
	border: 1px solid #4f4545;
	border-radius: 6px;
	margin-bottom: 14px;
	background: #1e1e1e;
}
.page-reklama__card-status--available {
	color: #2e7d32;
	border-color: #2e7d32;
}
.page-reklama__card-status--unavailable {
	color: #c62828;
	border-color: #c62828;
}
.page-reklama__card-btn,
.page-reklama__card-btn:hover,
.page-reklama__card-btn:focus {
	text-decoration: none !important;
}
.page-reklama__card-btn {
	display: inline-block;
	padding: 10px 24px;
	background: #2a2525;
	border: 1px solid #4f4545;
	border-radius: 6px;
	color: #fff;
	font-size: 0.9rem;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}
.page-reklama__card:hover .page-reklama__card-btn {
	background: #f7901e;
	border-color: #f7901e;
}

/* Страница Реклама — блок контактов Telegram */
.page-reklama__contacts {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 32px;
	padding: 24px;
	background: #161616;
	border: 1px solid #3d3535;
	border-radius: 10px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.page-reklama__contacts-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #8a8a8a;
	margin-bottom: 16px;
}
.page-reklama__contacts-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}
.page-reklama__contact {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: rgba(42, 171, 238, 0.12);
	border: 1px solid rgba(42, 171, 238, 0.35);
	border-radius: 8px;
	color: #54a9eb;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.page-reklama__contact:hover {
	background: rgba(42, 171, 238, 0.22);
	border-color: rgba(42, 171, 238, 0.5);
	color: #6eb8f0;
	text-decoration: none;
	transform: translateY(-1px);
}
.page-reklama__contact:focus {
	text-decoration: none;
	outline: none;
	box-shadow: 0 0 0 2px rgba(42, 171, 238, 0.3);
}
.page-reklama__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}
.page-reklama__contact-icon svg {
	display: block;
	width: 22px;
	height: 22px;
}
.page-reklama__contact-handle {
	white-space: nowrap;
}

/* Страница Реклама — legacy (если остались старые блоки) */
.page-reklama .section-row_w .ttl_theme_def {
	border-color: #4f4545;
	color: #D3D3D3;
}
.page-reklama .adw-wrp__side {
	background-color: #2a2525;
	border-color: #4f4545;
	color: #d0d0d0;
	border-radius: 6px;
	margin-bottom: 12px;
	padding: 16px 20px;
}
.page-reklama .adw-item {
	border-bottom-color: #4f4545;
	height: auto;
	min-height: 45px;
}
.page-reklama .adw-item__title {
	color: #f7901e;
}
.page-reklama .adw-item__name {
	color: #b0b0b0;
}
.page-reklama .adw-item__info {
	color: #fff;
}
.page-reklama .adw-about {
	color: #d0d0d0;
}
.page-reklama .adw-about b {
	color: #f7901e;
}
.page-reklama .g-btn,
.page-reklama .g-btn_style_min,
.page-reklama a.g-btn {
	background: #f7901e !important;
	border-color: #f7901e !important;
	color: #fff !important;
	text-decoration: none;
}
.page-reklama .g-btn:hover,
.page-reklama .g-btn_style_min:hover,
.page-reklama a.g-btn:hover {
	background: #d97a18 !important;
	border-color: #d97a18 !important;
	color: #fff !important;
	text-decoration: none;
}
.page-reklama .adw-item__server {
	color: #fff;
}
.page-reklama .server_status_vip {
	border-color: #4f4545;
}

/* rel-box */

.rel-box {
	box-sizing: border-box;
	padding: 0 30px;
}

/* upanel */

.upanel {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.upanel__avatar {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 50%;
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	margin-right: 20px;
}

/* blng */

.blng {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

/*  colorp */

.colorp {
	position: relative;
	z-index: 0;
	width: 100%;
}

.colorp__box {
	opacity: 0;
	visibility: hidden;
	display: none;
	position: absolute;
	left: 50%;
	bottom: 100%;
	transform: translateX(-50%);
}

.colorp:hover .colorp__box {
	opacity: 1;
	visibility: visible;
	display: block;
}

/* tbl */

.tbl {
	border: 1px solid rgba(221, 221, 221, 0.2);
	border-collapse: collapse;
	width: 100%;
	background: #3d4e5e36;
}

.tbl__row:not(.tbl__row_heading):hover {
	background: #3d4e5e36;
}

.tbl__item {
	padding: 15px 10px;
	border: 1px solid rgba(221, 221, 221, 0.2);
	text-align: center;
	height: 45px;
	box-sizing: border-box;
	vertical-align: middle;
}

.tbl__heading {
	font-weight: bold;
}

.tbl__item_title {
	font-weight: bold;
}

/* switcher */

.switcher {
	/* display: grid; */
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	height: 40px;
	width: calc(100% - 10px * 2);
	margin: 20px 10px;
	display: none;
}

.switcher__btn {
	box-sizing: border-box;
	border: 2px solid #6c6c6c;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
	font-size: 13px;
	text-transform: uppercase;
	cursor: pointer;
	text-align: center;
	color: #3c3b3b;
	font-weight: bold;
	border-radius: 6px;
}

.switcher__btn:hover {
	color: #aa400b;
}

.switcher__btn_active,
.switcher__btn_active:hover {
	border: 2px solid #f06b2a;
	color: #aa400b;
	background: #f06b2a36;
	pointer-events: none;
}

/* colors */

.color-warning {
	color: var(--danger, #d55f5f);
}

.color-info {
	color: var(--warning, #d7ad64);
}

.color-success {
	color: var(--success, #66c78a);
}

.sidebar_menu_wrapper ul li > a:hover {
  background: rgba(255, 120, 0, 0.2);
  color: #fff;
}

/* Бонус-код: убрать рамку input из engine.css */
#lk-bonus-code-input,
#lk-bonus-code-input:focus {
  border: none !important;
  box-shadow: none !important;
}

/* SEO блок: h1, h2, seo_text — внизу страницы, в рамочке */
.seo-block {
	margin: 2em 1em 10px;
	padding: 1em 1.25em;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 6px;
	background: rgba(0,0,0,0.15);
}
/* SEO-блок не наезжает на контейнеры при пустом/коротком Discord виджете */
.seo-block_main,
.content-wrp__bottom .seo-block {
	position: static !important;
	clear: both;
}
.seo-block__h1 {
	font-size: 1.1em;
	margin: 0 0 0.4em;
	font-weight: 600;
	color: #e8e8e8;
}
.seo-block__h2 {
	font-size: 1em;
	margin: 0 0 0.35em;
	font-weight: 600;
	color: #e0e0e0;
}
.seo-block__text {
	margin: 0;
	font-size: 0.9em;
	line-height: 1.5;
	color: #d8d8d8;
}

/* На странице добавления сервера SEO идёт сразу под кнопкой — отступ сверху */
.seo-block_addnews-below-btn {
	margin-top: 2em;
}

/* ===== Рыбалка Fishman — страница с layout (шапка, баннер, сайдбар) ===== */
.fishman-page {
	min-height: 560px;
	display: flex;
	flex-direction: column;
	background: #0a0e14;
	border-radius: 8px;
	overflow: hidden;
}
.fishman-page__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 12px;
	background: rgba(0,0,0,0.3);
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.fishman-page__title {
	font-size: 1rem;
	color: #7eb8da;
}
.fishman-page__fullscreen {
	font-size: 0.9rem;
	color: #7eb8da;
	text-decoration: none;
	padding: 4px 10px;
	border-radius: 4px;
	border: 1px solid rgba(126,184,218,0.5);
}
.fishman-page__fullscreen:hover {
	background: rgba(126,184,218,0.2);
	color: #a0d0f0;
}
.fishman-page__frame {
	flex: 1;
	min-height: 500px;
	border: none;
	width: 100%;
}

/* ===== Блок ТОП Онлайн на главной — стили в theme.css ===== */

/* ===== ЛК: карточка и модалка ТОП Онлайн ===== */
.lk-card--top-online .lk-top-online__header { margin-bottom: 0.75em; }
.lk-card--top-online .lk-top-online__title { margin: 0 0 0.25em; }
.lk-card--top-online .lk-top-online__desc { margin: 0; font-size: 0.9em; opacity: 0.9; }
.lk-top-online__novip-badge {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 6px;
	font-size: 10px;
	background: #555;
	color: #fff;
	border-radius: 4px;
	vertical-align: middle;
}
.lk-top-online__server-zone {
	margin: 1em 0;
}
.lk-top-online__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75em 1.5em;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255,255,255,.1);
	font-size: 0.9em;
}
.lk-top-online__meta .lk-top-online__slots,
.lk-top-online__meta .lk-top-online__price {
	white-space: nowrap;
}
/* Демо ТОП Онлайн: как .demonstration у промокодов — без фикс. 534px и отступа, ширину даёт колонка __demos */
.lk-top-online__demo-block {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
	box-sizing: border-box;
}
.lk-top-online__demo-block .server {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr) minmax(110px, 1fr);
	column-gap: 10px;
	max-width: 100%;
	width: 100%;
	cursor: default;
	pointer-events: none;
}
.lk-top-online__demo-block .server__top-online {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	margin-left: auto;
}
.lk-top-online__demo-block .server__top-online__bar-wrap {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}
.lk-top-online__demo-block .server__top-online__bar-track {
	flex: 1 1 auto;
	min-width: 60px;
	height: 20px;
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
	border: 1px solid rgba(255,255,255,.12);
	box-shadow: inset 0 2px 6px rgba(0,0,0,.5), 0 1px 0 rgba(255,255,255,.06);
}
.lk-top-online__demo-block .server__top-online__bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	display: block;
	height: 100%;
	min-width: 4px;
	border-radius: 5px;
	transition: width 0.3s;
	background: linear-gradient(180deg, rgba(255,180,90,.98), rgba(255,143,42,.92) 40%, rgba(230,120,30,.96));
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.35),
		inset 0 -1px 0 rgba(120,60,10,.4),
		0 2px 8px rgba(255,143,42,.25);
}
.lk-top-online__demo-block .server_type_vip-3 .server__top-online__bar {
	background: linear-gradient(180deg, rgba(255,200,120,.98), rgba(255,143,42,.92) 35%, rgba(200,60,50,.96));
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.4),
		inset 0 -1px 0 rgba(80,30,20,.5),
		0 2px 10px rgba(255,143,42,.35),
		0 0 12px rgba(255,80,50,.2);
}
.lk-top-online__demo-block .server__top-online__count {
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	flex-shrink: 0;
	padding-left: 4px;
}
.side_top_online .server{
  max-width:100% !important;
  width:100% !important;
}
.side_top_online .server__top-online {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	margin-left: auto;
}
.side_top_online .server__top-online__bar-wrap {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}
.side_top_online .server__top-online__bar-track {
	flex: 1 1 auto;
	min-width: 60px;
	height: 20px;
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
	border: 1px solid rgba(255,255,255,.12);
	box-shadow: inset 0 2px 6px rgba(0,0,0,.5), 0 1px 0 rgba(255,255,255,.06);
}
.side_top_online .server__top-online__bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	display: block;
	height: 100%;
	min-width: 4px;
	border-radius: 5px;
	transition: width 0.3s;
	background: linear-gradient(180deg, rgba(255,180,90,.98), rgba(255,143,42,.92) 40%, rgba(230,120,30,.96));
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.35),
		inset 0 -1px 0 rgba(120,60,10,.4),
		0 2px 8px rgba(255,143,42,.25);
}
.side_top_online .server_type_vip-3 .server__top-online__bar {
	background: linear-gradient(180deg, rgba(255,200,120,.98), rgba(255,143,42,.92) 35%, rgba(200,60,50,.96));
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.4),
		inset 0 -1px 0 rgba(80,30,20,.5),
		0 2px 10px rgba(255,143,42,.35),
		0 0 12px rgba(255,80,50,.2);
}
.side_top_online .server__top-online__count {
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	flex-shrink: 0;
	padding: 0 4px;
	text-align: center;
}
.lk-top-online__demo-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.lk-top-online__demo-list .top-online__row {
	pointer-events: none;
	cursor: default;
}
.lk-top-online__status { margin: 0.5em 0; font-size: 0.9em; }
.lk-top-online__warning {
	margin-top: 0.5em;
	padding: 0.5em 0.75em;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,.14);
	background: linear-gradient(180deg, rgba(34,44,61,.84), rgba(14,21,33,.92));
	color: rgba(234,240,255,.9);
}
.lk-top-online__error--card,
.lk-top-online__success {
	margin-bottom: 0.75em;
	padding: 0.5em 0.75em;
	border-radius: 6px;
}
.lk-top-online__error--card { background: rgba(200,50,50,0.2); color: #f88; }
.lk-top-online__success {
	background: rgba(102, 199, 138, 0.18); /* fallback for --success #66c78a */
	background: color-mix(in srgb, var(--success) 18%, transparent);
	color: var(--success);
}
/* Модалка ТОП Онлайн — по образцу lk-promocodes-modal (размер, оформление) */
.lk-top-online-modal .lk-vip-modal__content {
	width: 520px;
	max-width: 92vw;
	padding: 16px;
	box-sizing: border-box;
}
.lk-top-online-modal .lk-vip-modal__title-wrap {
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
.lk-top-online-modal__desc {
	margin: 0 0 20px;
	font-size: 0.9em;
	line-height: 1.45;
	opacity: 0.88;
}
.lk-top-online-modal .lk-vip-modal__section {
	margin-bottom: 18px;
}
.lk-top-online-modal .lk-vip-modal__section .lk-vip-modal__hint {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 500;
	color: rgba(234,240,255,.9);
}
.lk-top-online-modal__hint {
	display: block;
	margin-top: 6px;
	font-size: 11px;
	opacity: 0.75;
}
.lk-top-online-modal .lk-vip-modal__duration {
	gap: 10px;
	margin-top: 8px;
}
.lk-top-online-modal .lk-vip-modal__duration-btn {
	width: 156px;
	flex: 0 0 156px;
	height: 31px !important;
	min-height: 31px !important;
	padding: 4px 12px !important;
	font-weight: 500;
	transition: border-color .2s, background .2s, box-shadow .2s;
}
.lk-top-online-modal .lk-vip-modal__duration-btn--active {
	background: linear-gradient(180deg, rgba(255,143,42,.92), rgba(255,143,42,.58));
	border-color: rgba(255,143,42,.7);
	color: #1a1515;
	box-shadow: 0 4px 12px rgba(255,143,42,.25);
}
.lk-top-online-modal .lk-vip-modal__duration-btn:not(.lk-vip-modal__duration-btn--active):hover {
	border-color: rgba(255,255,255,.3);
	background: rgba(255,255,255,.06);
}
.lk-top-online-modal .lk-vip-modal__actions {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,.1);
}
.lk-top-online-modal .js-top-online-submit-wrap .lk-card__btn,
.lk-top-online-modal .js-top-online-extend-submit-wrap .lk-card__btn {
	width: 100%;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	transition: opacity .2s, background .2s, border-color .2s, box-shadow .2s;
}
.lk-top-online-modal .js-top-online-submit-wrap .lk-card__btn[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
	background: #2a2525;
	border-color: #4a4545;
}
.lk-top-online-modal .js-top-online-submit-wrap .lk-card__btn:not([disabled]),
.lk-top-online-modal .js-top-online-extend-submit-wrap .lk-card__btn {
	border-color: rgba(255,143,42,.6);
	background: linear-gradient(180deg, rgba(255,143,42,.92), rgba(255,143,42,.58));
	color: #1a1515;
	box-shadow: 0 8px 20px rgba(255,143,42,.22);
}
.lk-top-online-modal .js-top-online-submit-wrap .lk-card__btn:not([disabled]):hover,
.lk-top-online-modal .js-top-online-extend-submit-wrap .lk-card__btn:hover {
	background: linear-gradient(180deg, rgba(255,167,78,.96), rgba(255,143,42,.64));
	border-color: rgba(255,143,42,.8);
	box-shadow: 0 10px 24px rgba(255,143,42,.28);
}
.lk-top-online-modal__error {
	margin: 0.5em 0;
	padding: 0.5em 0.75em;
	background: rgba(200,50,50,0.2);
	color: #f88;
	border-radius: 6px;
	font-size: 0.9em;
	max-width: 100%;
	box-sizing: border-box;
	overflow-wrap: break-word;
	word-break: break-word;
}
.lk-top-online-modal__error--checking {
	background: rgba(100,120,160,0.15);
	color: #7a8fb3;
}
.lk-top-online-modal__loading { opacity: 0.9; }
/* ТОП Онлайн: input и hint не вылезают */
.lk-top-online-modal .lk-settings__input,
.lk-top-online-modal .lk-top-online-modal__hint {
	max-width: 100%;
	box-sizing: border-box;
}
