/* Главная: скролл Главная → Как начать. Меню липкое. */

html {
  scroll-behavior: auto;
}
html,
body.home-scrollable,
body.intro-hero-page {
  height: auto !important;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto !important;
  background: #161622;
}

body.home-scrollable,
body.intro-hero-page {
  opacity: 1 !important;
}

.home-scrollable .body-content,
.intro-hero-page .body-content {
  height: auto !important;
  min-height: 100vh;
  background: #161622 !important;
  background-image: none !important;
}

/* Главная: баннер не на весь экран + тёмный фон снизу (как samp-rp.ru) */
.home-scrollable .home-screen {
  position: relative;
  min-height: 0;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  padding: 0;
  padding-bottom: clamp(20px, 3vh, 48px);
  box-sizing: border-box;
  background: #161622;
  overflow: hidden;
}

.home-scrollable .hero-banner,
.intro-hero-page .hero-banner {
  grid-area: 1 / 1;
  position: relative;
  width: 100%;
  height: min(calc(100vw * 2 / 3), 96vh);
  min-height: 520px;
  overflow: hidden;
  background: #161622;
}

.home-scrollable .hero-banner__img,
.intro-hero-page .hero-banner__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-scrollable .hero-banner::after,
.intro-hero-page .hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.32);
}

.home-scrollable .hero-banner__blur,
.intro-hero-page .hero-banner__blur,
.home-scrollable .hero-banner__fade,
.intro-hero-page .hero-banner__fade {
  display: none !important;
}

/* Полоска соцсетей на баннере */
.wl-social-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(12px, 2.5vh, 36px);
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  margin: 0;
  background: rgba(19, 19, 29, 0.92);
  border-top: 1px solid rgba(255, 188, 28, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  backdrop-filter: none;
}

.wl-social-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 14px 16px;
  color: #fff !important;
  text-decoration: none !important;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.wl-social-bar__link:last-child {
  border-right: 0;
}

.wl-social-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffbc1c;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.wl-social-bar__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.wl-social-bar__text strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.wl-social-bar__text em {
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  color: #9aa0b0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wl-social-bar__link:hover {
  background: rgba(101, 43, 251, 0.18);
}

.wl-social-bar__link:hover .wl-social-bar__icon {
  background: #652bfb;
  border-color: #ffbc1c;
  color: #fff;
  box-shadow: 0 0 18px rgba(101, 43, 251, 0.45);
}

.wl-social-bar__link:hover .wl-social-bar__text em {
  color: #ffbc1c;
}

.wl-social-bar__link[data-net="discord"]:hover .wl-social-bar__icon {
  background: #5865f2;
  border-color: #5865f2;
}

.wl-social-bar__link[data-net="vk"]:hover .wl-social-bar__icon {
  background: #0077ff;
  border-color: #0077ff;
}

.wl-social-bar__link[data-net="tg"]:hover .wl-social-bar__icon {
  background: #229ed9;
  border-color: #229ed9;
}

.wl-social-bar__link[data-net="yt"]:hover .wl-social-bar__icon {
  background: #ff0000;
  border-color: #ff0000;
}

@media (max-width: 900px) {
  .wl-social-bar {
    grid-template-columns: 1fr 1fr;
  }

  .wl-social-bar__link:nth-child(2) {
    border-right: 0;
  }

  .wl-social-bar__link:nth-child(1),
  .wl-social-bar__link:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 520px) {
  .wl-social-bar__link {
    min-height: 56px;
    padding: 12px 10px;
    gap: 10px;
  }

  .wl-social-bar__icon {
    width: 36px;
    height: 36px;
  }

  .wl-social-bar__text strong {
    font-size: 13px;
  }

  .wl-social-bar__text em {
    font-size: 11px;
  }
}

.home-scrollable .hero-video,
.home-scrollable .hero-chars,
.home-scrollable .hero-dance {
  display: none !important;
}

.home-scrollable .home-screen::before {
  display: none !important;
}

.home-scrollable .swiper-container,
.home-scrollable .main-section {
  grid-area: 1 / 1;
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
}

.home-scrollable .swiper-wrapper,
.home-scrollable .swiper-slide,
.home-scrollable .swiper-container .container {
  height: 100% !important;
  overflow: visible !important;
  transform: none !important;
}

.home-scrollable .main-section {
  width: 100%;
  padding-top: 0;
  box-sizing: border-box;
}

.home-scrollable .main-content {
  margin-top: 0;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
}

.home-scrollable .main-content .left-side {
  display: none;
}

/* ===== Hero HUD (glass + информативный виджет) ===== */
.home-scrollable .main-content .right-side.wl-hero-hud {
  position: absolute;
  top: clamp(200px, 28vh, 340px);
  right: clamp(8px, 1.2vw, 20px);
  left: auto;
  width: min(400px, calc(100vw - 40px));
  max-width: 400px;
  margin: 0;
  padding: 24px 24px 20px;
  pointer-events: auto;
  text-align: left;
  text-shadow: none;
  user-select: none;
  -webkit-user-select: none;
  box-sizing: border-box;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(101, 43, 251, 0.16), transparent 42%),
    rgba(18, 24, 36, 0.72);
  border: 1px solid rgba(255, 188, 28, 0.28);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(101, 43, 251, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.wl-hero-hud__badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 188, 28, 0.45);
  color: #ffbc1c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wl-hero-hud__title {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.wl-hero-hud__title span {
  color: #ffbc1c;
}

.wl-hero-hud__tagline {
  margin: 0 0 14px;
  color: #c5c9d6;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.wl-hero-hud__lead {
  margin: 0 0 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 188, 28, 0.28);
  color: #9aa0b0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.wl-hero-hud__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 12px;
  width: 100%;
}

.wl-hero-hud__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  height: 48px;
  min-width: 0;
  padding: 0 16px;
  margin: 0;
  border-radius: 12px;
  border: 2px solid #ffbc1c;
  background: #652bfb;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(101, 43, 251, 0.35);
  transition: background 0.2s ease, transform 0.15s ease;
  flex: 1 1 0;
  box-sizing: border-box;
}

.wl-hero-hud__cta:hover {
  background: #7438ff;
  color: #fff !important;
}

.wl-hero-hud__stat {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 48px;
  height: 48px;
  padding: 0 16px !important;
  margin: 0 !important;
  border-radius: 12px !important;
  background: rgba(0, 0, 0, 0.28) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
  box-sizing: border-box;
  flex: 1 1 0;
}

.wl-hero-hud__logo {
  display: none !important;
}

.wl-hero-hud__stat-mark {
  display: none !important;
}

.wl-hero-hud__stat-body {
  min-width: 0;
  flex: 1;
}

.wl-hero-hud__stat-online {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.wl-hero-hud__stat-online .online-all {
  display: none !important;
}

.wl-hero-hud__stat-label {
  margin-left: 6px;
  color: #99ff66;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wl-hero-hud .progress-bar_online[hidden] {
  display: none !important;
}

.home-scrollable .swiper-container {
  touch-action: none;
}

.home-scrollable .swiper-wrapper {
  transform: none !important;
  transition: none !important;
}

.home-scrollable .scroll-down {
  grid-area: 1 / 1;
  align-self: end;
  justify-self: center;
  position: relative;
  left: auto;
  bottom: auto;
  margin-bottom: 18px;
  transform: none;
  z-index: 4;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  animation: homeBounce 1.8s ease-in-out infinite;
}

.home-scrollable .scroll-down:hover {
  color: #ffbc1c;
}

@keyframes homeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Секция ниже баннера — как второй экран, ниже, не залезает на баннер */
.home-scrollable .home-connect {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  margin-top: 0;
  padding-top: clamp(100px, 14vh, 160px);
  padding-bottom: 100px;
  background: #161622 !important;
  clear: both;
}

.home-scrollable .home-connect .bg-news {
  display: none !important;
}

.home-scrollable .home-connect .intro-block {
  background: transparent;
  padding-top: 10px;
}

.home-scrollable .home-connect .title-all h2 {
  color: #fff !important;
}

.home-scrollable .home-connect.intro-screen {
  background: #161622 !important;
}

/* Липкое меню — всегда прозрачное, без шапки при скролле */
.home-sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: 20px;
  background: transparent;
  box-shadow: none;
}

.home-sticky-nav.is-solid {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding-top: 20px;
  padding-bottom: 0;
}

.home-sticky-nav .header,
.home-sticky-nav.is-solid .header {
  padding-top: 20px;
}

.home-sticky-nav .logo-light,
.home-sticky-nav.is-solid .logo-dark,
.home-sticky-nav.is-solid .logo-light {
  display: none;
}

.home-sticky-nav.is-solid .logo-westland__img {
  filter: none;
}

/* Футер в потоке */
.home-scrollable .footer-flow {
  position: relative !important;
  bottom: auto !important;
  height: auto !important;
  background: #13131d !important;
  padding: 28px 0 36px;
}

.home-scrollable .footer-flow .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-scrollable .footer-flow .wl-copy {
  margin: 0 auto;
  width: 100%;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 991px) {
  .home-scrollable .scroll-down {
    display: none;
  }

  .home-scrollable .hero-banner,
  .intro-hero-page .hero-banner {
    height: min(78vh, 720px);
    min-height: 480px;
  }

  .home-scrollable .main-content .right-side.wl-hero-hud {
    top: clamp(160px, 24vh, 280px);
    right: 12px;
    width: min(380px, calc(100vw - 48px));
  }

  .home-scrollable .home-screen {
    padding-bottom: clamp(16px, 3vh, 40px);
  }

  .intro-hero-page .page-content-section,
  .intro-hero-page .page-content-section--monitoring,
  .intro-hero-page .page-content-section--store {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .intro-hero-page .intro-block .title-all h2 {
    font-size: clamp(28px, 6vw, 42px) !important;
  }

  .intro-hero-page .cont-mon {
    flex-wrap: wrap;
    gap: 20px;
  }

  .intro-hero-page .cont-mon .table-filter {
    margin-left: 0;
    width: 100%;
  }

  .intro-hero-page .cont-mon .table-filter .form-m {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .intro-hero-page .dashboard,
  .intro-hero-page table.dashboard {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767px) {
  .home-scrollable .hero-banner,
  .intro-hero-page .hero-banner {
    height: auto;
    min-height: 100vh;
    aspect-ratio: auto;
  }

  .home-scrollable .home-screen {
    padding-bottom: 40px;
  }

  .home-scrollable .swiper-container,
  .home-scrollable .main-section {
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
  }

  .home-scrollable .main-section {
    padding-top: 0;
    padding-bottom: 28px;
  }

  .home-scrollable .main-content {
    justify-content: center;
    align-items: flex-end;
  }

  .home-scrollable .main-content .right-side.wl-hero-hud {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px 16px 18px;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .home-scrollable .wl-hero-hud__title {
    font-size: clamp(26px, 7vw, 32px);
  }

  .home-scrollable .wl-hero-hud__tagline {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .home-scrollable .wl-hero-hud__lead {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .home-scrollable .wl-hero-hud__actions {
    flex-wrap: nowrap;
    width: 100%;
  }

  .home-scrollable .wl-hero-hud__cta,
  .home-scrollable .wl-hero-hud__stat {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 1 1 0;
    box-sizing: border-box;
  }

  .home-scrollable .home-connect {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .intro-hero-page .hero-banner {
    min-height: 42vh;
    height: 42vh;
  }

  .intro-hero-page .page-content-section,
  .intro-hero-page .page-content-section--monitoring,
  .intro-hero-page .page-content-section--store {
    padding-top: 96px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 48px;
  }

  .intro-hero-page .intro-block .title-all h2 {
    font-size: 28px !important;
    padding-left: 56px !important;
  }

  .intro-hero-page .intro-block .title-all h2::before {
    width: 42px !important;
  }

  .intro-hero-page .page-content-section--store .container-store {
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 20px;
  }

  .intro-hero-page .page-content-section--store .container-store .center-side,
  .intro-hero-page .page-content-section--store .container-store .right-side .right-side_top,
  .intro-hero-page .page-content-section--store .container-store .right-side .right-side_bottom {
    padding: 28px 20px !important;
  }

  .intro-hero-page .page-content-section--store .container-store .center-side .form-block .inp-store {
    height: 64px !important;
    padding-left: 22px !important;
    font-size: 15px;
  }

  .intro-hero-page .cont-mon .table-filter .form-m .jq-selectbox__select,
  .intro-hero-page .cont-mon .table-filter .form-m .server-select a {
    width: 100%;
    min-width: 0;
  }

  .intro-hero-page .container-news {
    gap: 20px;
  }

  .home-sticky-nav {
    padding-top: 12px;
  }

  .home-sticky-nav .header,
  .home-sticky-nav.is-solid .header {
    padding-top: 10px;
  }

  .logo-westland__img {
    height: 32px !important;
    max-width: 150px !important;
  }
}

@media (max-width: 480px) {
  .intro-hero-page .page-content-section--store .packets-block .container-packets .pack {
    width: 100% !important;
    margin: 12px 0 !important;
  }

  .home-scrollable .wl-hero-hud__title {
    font-size: 26px;
  }

  .home-scrollable .wl-hero-hud__stat-online {
    font-size: 16px;
  }
}

/* Новости и мониторинг — контент сверху поверх баннера */
.intro-hero-page .page-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  overflow: hidden;
  background: #161622;
}

.intro-hero-page .page-hero .hero-banner {
  grid-area: 1 / 1;
}

.intro-hero-page .page-content-section {
  grid-area: 1 / 1;
  position: relative;
  z-index: 3;
  align-self: start;
  width: 100%;
  background: transparent !important;
  padding-top: 110px;
  padding-bottom: clamp(80px, 14vh, 140px);
}

.intro-hero-page .page-content-section--monitoring {
  padding-top: 150px;
}

.intro-hero-page .page-content-section--store {
  padding-top: 130px;
}

.intro-hero-page .page-content-section--store .packets-block .title-all h2 {
  color: #fff !important;
}

.intro-hero-page .page-content-section--store .container-store .center-side,
.intro-hero-page .page-content-section--store .container-store .right-side .right-side_top,
.intro-hero-page .page-content-section--store .container-store .right-side .right-side_bottom,
.intro-hero-page .page-content-section--store .packets-block .container-packets .pack {
  background: rgba(255, 255, 255, 0.42) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18) !important;
}

.intro-hero-page .page-content-section--store .container-store .center-side .form-block .inp-store,
.intro-hero-page .page-content-section--store .container-store .center-side .jq-selectbox__select {
  background: #fff !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.intro-hero-page .page-content-section--store .form-block .jq-selectbox.disabled .jq-selectbox__select,
.intro-hero-page .page-content-section--store .form-block select:disabled + .jq-selectbox .jq-selectbox__select,
.intro-hero-page .page-content-section--store .form-block .jq-selectbox.disabled {
  opacity: 1 !important;
  cursor: default !important;
  pointer-events: none !important;
}

.intro-hero-page .page-content-section--store .form-block .jq-selectbox.disabled .jq-selectbox__trigger {
  display: none !important;
}

.intro-hero-page .page-content-section--store .form-block .description,
.intro-hero-page .page-content-section--store .form-block .jq-selectbox__select-text,
.intro-hero-page .page-content-section--store .form-block .inp-store,
.intro-hero-page .page-content-section--store .form-block .jq-selectbox.disabled .jq-selectbox__select-text,
.intro-hero-page .page-content-section--store .form-block .jq-selectbox.disabled .jq-selectbox__select {
  color: #111 !important;
  opacity: 1 !important;
}

.intro-hero-page .page-content-section--store .container-store .right-side .title-rst,
.intro-hero-page .page-content-section--store .container-store .right-side .title-rsb h3,
.intro-hero-page .page-content-section--store .container-store .right-side .row-p,
.intro-hero-page .page-content-section--store .container-store .right-side .row-p b {
  color: #111 !important;
}

.intro-hero-page .page-content-section .bg-news {
  display: none !important;
}

.intro-hero-page .intro-block {
  background: transparent;
}

.intro-hero-page .intro-block .title-all {
  margin-top: 0;
}

.intro-hero-page .intro-block .title-all h2 {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.intro-hero-page .cont-mon {
  margin-top: 0;
}

.intro-hero-page .cont-mon .table-filter {
  margin-left: auto;
}

.intro-hero-page .cont-mon .table-filter .form-m {
  justify-content: flex-end;
  gap: 24px;
}

.intro-hero-page .cont-mon .table-filter .form-m .server-select {
  margin-left: 0;
}

.intro-hero-page .footer-flow {
  position: relative !important;
  bottom: auto !important;
  height: auto !important;
  background: #13131d !important;
  padding: 28px 0 36px;
}

.wl-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

/* ===== Как начать играть (Westland guide) ===== */
.home-scrollable .home-connect.wl-start {
  padding-top: clamp(36px, 5vh, 64px);
  padding-bottom: 72px;
}

.wl-start {
  position: relative;
  background: #161622 !important;
  overflow: hidden;
}

.wl-start .bg-news,
.wl-start .intro-block {
  display: none !important;
}

.wl-start__glow {
  display: none;
}

.wl-start__head {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.wl-start__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 188, 28, 0.45);
  border-radius: 999px;
  color: #ffbc1c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wl-start__title {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.wl-start__lead {
  margin: 0;
  color: #9aa0b0;
  font-size: 16px;
  line-height: 1.55;
}

.wl-server {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto 48px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(26, 24, 42, 0.95), rgba(18, 24, 36, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(101, 43, 251, 0.12);
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.wl-server__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.wl-server__badge {
  width: fit-content;
  color: #a78bfa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wl-server__name {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.wl-server__ip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 188, 28, 0.35);
  border-radius: 12px;
  background: rgba(255, 188, 28, 0.08);
  color: #ffbc1c;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.wl-server__ip:hover {
  background: rgba(255, 188, 28, 0.16);
  border-color: rgba(255, 188, 28, 0.7);
}

.wl-server__ip.is-copied {
  border-color: #99ff66;
  color: #99ff66;
  background: rgba(153, 255, 102, 0.08);
}

.wl-server__ip-hint {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 500;
}

.wl-server__ip.is-copied .wl-server__ip-hint {
  color: #99ff66;
}

.wl-server__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  border: 2px solid #ffbc1c;
  background: #652bfb;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(101, 43, 251, 0.35);
  transition: background 0.2s ease, transform 0.15s ease;
}

.wl-server__play:hover {
  background: #7438ff;
  color: #fff !important;
}

.wl-paths {
  max-width: 920px;
  margin: 0 auto 56px;
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.wl-paths__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.wl-paths__tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 24, 36, 0.7);
  color: #9aa0b0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.wl-paths__tab:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.wl-paths__tab.is-active {
  color: #fff;
  border-color: rgba(255, 188, 28, 0.55);
  background: linear-gradient(135deg, rgba(101, 43, 251, 0.28), rgba(18, 24, 36, 0.95));
  box-shadow: 0 12px 36px rgba(101, 43, 251, 0.22);
}

.wl-paths__tab-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffbc1c;
}

.wl-paths__tab-title {
  font-size: 18px;
  font-weight: 700;
  color: inherit;
}

.wl-paths__tab-desc {
  font-size: 13px;
  font-weight: 500;
  color: #8b90a0;
}

.wl-paths__tab.is-active .wl-paths__tab-desc {
  color: #c5c9d6;
}

.wl-guide {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  max-width: none;
  margin: 0;
}

.wl-guide.is-hidden,
.wl-paths [data-path-panel][hidden],
.wl-paths [data-path-panel].is-hidden {
  display: none !important;
}

.wl-guide__rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 0;
}

.wl-guide__progress {
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
}

.wl-guide__progress i {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #ffbc1c, #652bfb);
  transition: height 0.35s ease;
}

.wl-guide__node {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 8px;
  border: 0;
  background: transparent;
  color: #8b90a0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}

.wl-guide__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1830;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.wl-guide__label {
  font-size: 14px;
  font-weight: 600;
}

.wl-guide__node.is-active,
.wl-guide__node:hover {
  color: #fff;
}

.wl-guide__node.is-active .wl-guide__num {
  color: #111;
  background: #ffbc1c;
  border-color: #ffbc1c;
  box-shadow: 0 0 22px rgba(255, 188, 28, 0.35);
}

.wl-guide__node.is-done .wl-guide__num {
  color: #fff;
  background: rgba(101, 43, 251, 0.55);
  border-color: rgba(101, 43, 251, 0.8);
}

.wl-guide__stage {
  position: relative;
  min-height: 340px;
  padding: 32px 34px 28px;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(101, 43, 251, 0.14), transparent 42%),
    #121824;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.wl-guide__stage::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 188, 28, 0.16), transparent 70%);
  pointer-events: none;
}

.wl-guide__panel {
  position: relative;
  animation: wlGuideIn 0.35s ease;
}

.wl-guide__panel[hidden] {
  display: none !important;
}

@keyframes wlGuideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.wl-guide__step-tag {
  margin: 0 0 10px;
  color: #ffbc1c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wl-guide__panel h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wl-guide__panel > p {
  margin: 0 0 18px;
  color: #b4b8c7;
  font-size: 15px;
  line-height: 1.6;
  max-width: 54ch;
}

.wl-guide__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.wl-guide__list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 22px;
  color: #d7dbe8;
  font-size: 14px;
  line-height: 1.45;
}

.wl-guide__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #652bfb;
  box-shadow: 0 0 0 3px rgba(101, 43, 251, 0.25);
}

.wl-guide__tip {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 188, 28, 0.28);
  background: rgba(255, 188, 28, 0.08);
  color: #d7dbe8;
  font-size: 13px;
  line-height: 1.5;
}

.wl-guide__tip strong {
  color: #ffbc1c;
  font-weight: 700;
}

.wl-guide__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  border: 2px solid #ffbc1c;
  background: #652bfb;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.15s ease;
}

.wl-guide__cta:hover {
  background: #7438ff;
  color: #fff !important;
}

.wl-guide__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.wl-guide__prev,
.wl-guide__next {
  height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.wl-guide__next {
  border-color: rgba(101, 43, 251, 0.55);
  background: rgba(101, 43, 251, 0.25);
}

.wl-guide__prev:disabled,
.wl-guide__next:disabled {
  opacity: 0.35;
  cursor: default;
}

.wl-faq {
  max-width: 920px;
  margin: 0 auto;
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.wl-faq__title {
  margin: 0 0 18px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.wl-faq__item {
  margin-bottom: 10px;
  border-radius: 14px;
  background: rgba(18, 24, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.wl-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding-right: 42px;
}

.wl-faq__item summary::-webkit-details-marker {
  display: none;
}

.wl-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffbc1c;
  font-size: 20px;
  font-weight: 500;
}

.wl-faq__item[open] summary::after {
  content: "–";
}

.wl-faq__item p {
  margin: 0;
  padding: 0 18px 16px;
  color: #a0a5b1;
  font-size: 14px;
  line-height: 1.55;
}

.wl-faq__item a {
  color: #ffbc1c;
  text-decoration: underline;
}

@media (max-width: 860px) {
  .wl-paths__tabs {
    grid-template-columns: 1fr;
  }

  .wl-guide {
    grid-template-columns: 1fr;
  }

  .wl-guide__rail {
    flex-direction: row;
    justify-content: space-between;
    gap: 6px;
  }

  .wl-guide__progress {
    left: 28px;
    right: 28px;
    top: 28px;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .wl-guide__progress i {
    height: 100% !important;
    width: var(--wl-progress-w, 0%);
    transition: width 0.35s ease;
  }

  .wl-guide__node {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 8px 4px;
  }

  .wl-guide__num {
    margin-left: 0;
  }

  .wl-guide__label {
    font-size: 12px;
  }

  .wl-server {
    grid-template-columns: 1fr;
  }

  .wl-server__ip,
  .wl-server__play {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .home-scrollable .home-connect.wl-start {
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .wl-guide__stage {
    padding: 24px 18px 20px;
    min-height: 0;
  }
}

/* ===== Responsive polish: телефон / планшет ===== */
@media (max-width: 991px) {
  .wl-social-bar__link {
    min-height: 58px;
    padding: 12px 10px;
    gap: 10px;
  }

  .home-sticky-nav .btn-login a {
    padding: 10px 14px !important;
    font-size: 12px !important;
  }

  .wl-start__lead {
    font-size: 15px;
    padding: 0 8px;
  }

  .wl-server {
    margin-bottom: 28px;
  }
}

@media (max-width: 767px) {
  /* Баннер как раньше — на высоту экрана */
  .home-scrollable .hero-banner {
    height: auto !important;
    min-height: 100vh !important;
  }

  .wl-social-bar {
    bottom: 24px;
  }

  .home-scrollable .main-content .right-side.wl-hero-hud {
    padding: 18px 16px 18px !important;
  }

  .home-scrollable .wl-hero-hud__actions {
    flex-wrap: nowrap;
    width: 100%;
  }

  .home-scrollable .wl-hero-hud__cta,
  .home-scrollable .wl-hero-hud__stat {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 1 1 0;
    box-sizing: border-box;
    justify-content: center;
  }

  .home-scrollable .home-connect.wl-start {
    padding-top: 32px !important;
    padding-bottom: 48px !important;
    min-height: 0 !important;
  }

  .wl-paths {
    margin-bottom: 36px;
  }

  .wl-paths__tab {
    padding: 14px 14px;
  }

  .wl-paths__tab-title {
    font-size: 16px;
  }

  .wl-guide__stage {
    border-radius: 16px;
  }

  .wl-guide__panel h3 {
    font-size: 22px;
  }

  .wl-guide__nav {
    margin-top: 20px;
  }

  .wl-faq__title {
    font-size: 20px;
  }

  .wl-faq__item summary {
    font-size: 14px;
    padding: 14px 16px;
    padding-right: 40px;
  }

  .intro-hero-page .page-hero .hero-banner {
    min-height: 42vh !important;
    height: 42vh !important;
  }

  .intro-hero-page .footer-flow {
    padding: 24px 0 28px !important;
  }

  .intro-hero-page .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 520px) {
  .wl-social-bar__text em {
    display: none;
  }

  .wl-social-bar__link {
    flex-direction: column;
    gap: 6px;
    min-height: 72px;
  }

  .wl-social-bar__text strong {
    font-size: 12px;
  }

  .home-scrollable .wl-hero-hud__cta,
  .home-scrollable .wl-hero-hud__stat {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 1 1 0;
    justify-content: center;
  }

  .wl-server__name {
    font-size: 16px;
  }

  .wl-server__ip {
    font-size: 13px;
    height: 44px;
    padding: 0 12px;
  }

  .wl-guide__cta,
  .wl-server__play {
    width: 100%;
    box-sizing: border-box;
  }

  .wl-guide__prev,
  .wl-guide__next {
    flex: 1;
    padding: 0 12px;
  }

  .logo-westland {
    padding: 6px 10px !important;
  }

  .logo-westland__img {
    height: 28px !important;
    max-width: 130px !important;
  }

  .home-sticky-nav {
    padding-top: 8px !important;
  }

  .home-sticky-nav .header,
  .home-sticky-nav.is-solid .header {
    padding-top: 8px !important;
  }
}

/* Очень узкие экраны */
@media (max-width: 360px) {
  .home-scrollable .main-content .right-side.wl-hero-hud {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .wl-paths__tab-desc {
    display: none;
  }

  .wl-guide__label {
    font-size: 11px;
  }
}

/* Широкие мониторы */
@media (min-width: 1600px) {
  .home-scrollable .main-content .right-side.wl-hero-hud {
    right: clamp(12px, 2vw, 36px);
  }
}


