

.lw-hc-hero {
  padding: clamp(48px, 8vw, 96px) 20px clamp(36px, 5vw, 56px);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.lw-hc-hero__title {
  margin: 0 0 16px;
  font-family: var(--lw-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.1;
}

.lw-hc-hero__title span {
  color: #fff;
}

.lw-hc-hero__lead {
  margin: 0 auto 36px;
  max-width: 600px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.lw-hc-search {
  position: relative;
  max-width: 500px;
  margin: 0 auto 36px;
}

.lw-hc-search__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.lw-hc-search__input {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 20px 16px 50px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.lw-hc-search__input:focus {
  outline: none;
  border-color: rgba(74, 158, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 20px rgba(74, 158, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lw-hc-search__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.lw-hc-quick {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.lw-hc-quick__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.lw-hc-quick__link:hover {
  background: rgba(74, 158, 255, 0.08);
  border-color: rgba(74, 158, 255, 0.2);
  color: #4A9EFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 158, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lw-hc-quick__link svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.lw-hc-status {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 30px;
}

.lw-hc-status__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.lw-hc-status__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: lw-hc-status-ping 1.6s ease-out infinite;
}

@keyframes lw-hc-status-ping {
  0% { box-shadow: 0 0 10px rgba(34, 197, 94, 0.6), 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 10px rgba(34, 197, 94, 0.6), 0 0 0 9px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 10px rgba(34, 197, 94, 0.6), 0 0 0 0 rgba(34, 197, 94, 0); }
}

.lw-hc-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px clamp(48px, 7vw, 80px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

.lw-hc-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lw-hc-nav,
.lw-hc-discord,
.lw-hc-section,
.lw-hc-contact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 20px rgba(255, 255, 255, 0.01);
}

.lw-hc-nav {
  padding: 22px;
}

.lw-hc-nav__title {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.lw-hc-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lw-hc-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
  transition: background 0.2s ease, color 0.2s ease;
}

.lw-hc-nav__link:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.lw-hc-nav__link.is-active {
  background: rgba(74, 158, 255, 0.1);
  color: #4A9EFF;
}

.lw-hc-nav__link svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  opacity: 0.85;
}

.lw-hc-discord {
  padding: 22px;
  text-align: center;
}

.lw-hc-discord__icon {
  display: inline-flex;
  margin-bottom: 12px;
  color: #4A9EFF;
}

.lw-hc-discord__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.lw-hc-discord__desc {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.lw-hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: radial-gradient(ellipse 150% 135% at 50% 0%,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.035) 58%,
    rgba(255, 255, 255, 0.012) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.lw-hc-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lw-hc-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lw-hc-section {
  padding: clamp(22px, 3vw, 32px);
}

.lw-hc-section.is-hidden {
  display: none;
}

.lw-hc-section__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.lw-hc-section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(74, 158, 255, 0.1);
  color: #4A9EFF;
  flex-shrink: 0;
}

.lw-hc-section__title {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.lw-hc-section__body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.lw-hc-section__body p {
  margin: 0 0 14px;
}

.lw-hc-section__body p:last-child {
  margin-bottom: 0;
}

.lw-hc-section__body ul {
  margin: 12px 0 16px;
  padding-left: 1.2rem;
}

.lw-hc-section__body li {
  margin-bottom: 8px;
}

.lw-hc-section__body a {
  color: #4A9EFF;
  text-decoration: none;
}

.lw-hc-section__body a:hover {
  text-decoration: underline;
}

.lw-hc-section__body strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.lw-hc-section__sub {
  margin: 20px 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.lw-hc-faq {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lw-hc-faq__item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.lw-hc-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 15px 18px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lw-hc-faq__q:hover {
  background: rgba(255, 255, 255, 0.02);
}

.lw-hc-faq__chevron {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.3s ease, color 0.2s ease;
}

.lw-hc-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.lw-hc-faq__a-inner {
  padding: 0 18px 16px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.lw-hc-faq__a-inner p {
  margin: 0 0 10px;
}

.lw-hc-faq__a-inner p:last-child {
  margin-bottom: 0;
}

.lw-hc-faq__item.is-open .lw-hc-faq__q {
  color: #4A9EFF;
}

.lw-hc-faq__item.is-open .lw-hc-faq__chevron {
  transform: rotate(180deg);
  color: #4A9EFF;
}

.lw-hc-downloads {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lw-hc-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.lw-hc-download__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.lw-hc-download__meta {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.lw-hc-download__opt {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.lw-hc-contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.lw-hc-contact-card {
  position: relative;
  padding: 24px 20px 22px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lw-hc-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 158, 255, 0.2);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(74, 158, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lw-hc-contact-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.lw-hc-contact-card__badge--amber {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.lw-hc-contact-card__icon {
  display: inline-flex;
  margin-bottom: 14px;
  color: #4A9EFF;
}

.lw-hc-contact-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.lw-hc-contact-card__desc {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.lw-hc-contact-card .lw-hc-btn {
  width: 100%;
}

.lw-hc-empty {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.lw-hc-layout--support {
  grid-template-columns: 1fr;
  max-width: 960px;
}

.lw-hc-layout--support .lw-hc-main {
  width: 100%;
}

.lw-tos-hero {
  padding: clamp(48px, 8vw, 96px) 20px clamp(28px, 4vw, 48px);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.lw-tos-hero__title {
  margin: 0 0 14px;
  font-family: var(--lw-font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.625rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.lw-tos-hero__lead {
  margin: 0 auto 22px;
  max-width: 600px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.lw-tos-hero__updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.lw-tos-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px clamp(48px, 7vw, 80px);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

.lw-tos-nav {
  position: sticky;
  top: 96px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.lw-tos-nav__title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.lw-tos-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: none;
  overflow: visible;
}

.lw-tos-nav__link {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 12.5px;
  line-height: 1.35;
  transition: background 0.2s ease, color 0.2s ease;
}

.lw-tos-nav__link:hover,
.lw-tos-nav__link.is-active {
  background: rgba(74, 158, 255, 0.1);
  color: #4A9EFF;
}

.lw-tos-main {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lw-tos-section {
  margin-top: 26px;
  scroll-margin-top: 100px;
}

.lw-tos-section:first-of-type {
  margin-top: 0;
}

.lw-tos-section__title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.lw-tos-section__list {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.lw-tos-section__list li {
  margin-bottom: 10px;
}

.lw-tos-callout {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(74, 158, 255, 0.22);
  background: rgba(74, 158, 255, 0.08);
}

.lw-tos-callout p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
  .lw-hc-layout,
  .lw-tos-layout {
    grid-template-columns: 1fr;
  }

  .lw-hc-sidebar,
  .lw-tos-nav {
    position: static;
  }

  .lw-tos-nav__list {
    max-height: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .lw-tos-nav__link {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lw-hc-status__dot {
    animation: none;
  }

  .lw-hc-faq__a {
    transition: none;
  }
}
