:root {
  --lw-bg: #09090b;
  --lw-surface: #111113;
  --lw-surface-2: #18181b;
  --lw-elevated: #1f1f23;
  --lw-border: rgba(255, 255, 255, 0.08);
  --lw-border-hover: rgba(255, 255, 255, 0.14);
  --lw-text: #ececef;
  --lw-muted: #94949e;
  --lw-subtle: #6b6b76;
  --lw-radius-sm: 8px;
  --lw-radius-md: 12px;
  --lw-radius-lg: 16px;
  --lw-radius-xl: 20px;
  --lw-glass-bg: linear-gradient(165deg, rgba(255, 255, 255, 0.055) 0%, rgba(0, 0, 0, 0.32) 100%);
  --lw-glass-border: rgba(255, 255, 255, 0.1);
  --lw-glass-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --lw-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --lw-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --lw-section-y: clamp(36px, 5vw, 64px);
  --lw-hero-pad: clamp(32px, 8vh, 72px);
  --lw-font-base: 15px;
  --lw-font-sm: 13px;
  --lw-font-xs: 11px;
  --lw-btn-bg: rgba(255, 255, 255, 0.04);
  --lw-btn-bg-hover: rgba(255, 255, 255, 0.08);
  --lw-btn-border: var(--lw-border);
  --lw-btn-border-hover: var(--lw-border-hover);
  --lw-btn-text: #d4d4d8;
  --lw-btn-text-hover: #fafafa;
  --lw-btn-primary-bg: #27272a;
  --lw-btn-primary-bg-hover: #323238;
  --lw-btn-primary-border: rgba(255, 255, 255, 0.12);
  --lw-btn-primary-text: #fafafa;
  --lw-account-accent: #d4d4d8;
  --lw-account-accent-muted: #9ca3af;
  --lw-account-accent-bg: rgba(255, 255, 255, 0.06);
  --lw-account-accent-border: rgba(255, 255, 255, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.landing-body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--lw-bg);
  color: var(--lw-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  font-size: var(--lw-font-base);
  line-height: 1.5;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
}
@keyframes lw-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lw-bg-drift {
  0% {
    opacity: 0.55;
  }
  100% {
    opacity: 0.85;
  }
}
.lw-animate-in {
  animation: lw-fade-up 0.48s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.lw-grid.cols-3 .lw-animate-in:nth-child(1) {
  animation-delay: 0.04s;
}
.lw-grid.cols-3 .lw-animate-in:nth-child(2) {
  animation-delay: 0.1s;
}
.lw-grid.cols-3 .lw-animate-in:nth-child(3) {
  animation-delay: 0.16s;
}
.lw-grid.lw-grid--popular .lw-animate-in:nth-child(1) {
  animation-delay: 0.04s;
}
.lw-grid.lw-grid--popular .lw-animate-in:nth-child(2) {
  animation-delay: 0.1s;
}
.lw-grid.lw-grid--popular .lw-animate-in:nth-child(3) {
  animation-delay: 0.16s;
}
a { color: inherit; text-decoration: none; }
.landing-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background-color: var(--lw-bg);
}
.landing-bg::before {
  content: "";
  position: absolute;
  inset: -28px;
  background-image: url("/images/background.jpg");
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  filter: blur(7px) saturate(0.82) brightness(0.72);
  transform: scale(1.05);
  transform-origin: center;
}
.landing-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 11, 0.55) 0%, rgba(9, 9, 11, 0.78) 42%, rgba(9, 9, 11, 0.9) 100%),
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(255, 255, 255, 0.05), transparent 58%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(255, 255, 255, 0.025), transparent 52%),
    radial-gradient(ellipse 45% 38% at 0% 85%, rgba(120, 140, 255, 0.035), transparent 50%);
}
.lw-page-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.12;
}
.lw-page-ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.16;
  animation: none;
}
.lw-page-ambient__orb--1,
.lw-page-ambient__orb--2,
.lw-page-ambient__orb--3 {
  animation: none;
}
@keyframes lw-page-orb-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(18px, -22px) scale(1.08);
    opacity: 0.65;
  }
}
@keyframes lw-page-orb-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.35;
  }
  50% {
    transform: translate(-16px, 14px) scale(1.05);
    opacity: 0.58;
  }
}
@keyframes lw-page-orb-c {
  0%,
  100% {
    transform: translate(0, 0) scale(0.98);
    opacity: 0.3;
  }
  50% {
    transform: translate(10px, 12px) scale(1.04);
    opacity: 0.52;
  }
}
@keyframes lw-page-glow-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.06);
  }
}
@keyframes lw-accent-line-grow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes lw-bg-drift-products {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.84;
  }
}
@keyframes lw-bg-drift-account {
  0% {
    opacity: 0.52;
  }
  100% {
    opacity: 0.78;
  }
}
.lw-page--home .lw-page-ambient {
  opacity: 0.14;
}
.lw-page--home .lw-page-ambient__orb--1 {
  width: 240px;
  height: 240px;
  left: -4%;
  bottom: 10%;
  background: rgba(124, 184, 255, 0.1);
}
.lw-page--home .lw-page-ambient__orb--2 {
  width: 200px;
  height: 200px;
  right: 0;
  bottom: 18%;
  background: rgba(185, 166, 255, 0.08);
}
.lw-page--home .lw-page-ambient__orb--3 {
  width: 160px;
  height: 160px;
  left: 38%;
  bottom: 4%;
  background: rgba(94, 233, 181, 0.06);
}
.lw-page--products .lw-page-ambient,
.lw-page--product .lw-page-ambient {
  display: none;
}
.lw-page--products .landing-section--catalog .section-title--catalog::after,
.lw-page--products .landing-section--products .section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 12px;
  border-radius: 1px;
  background: var(--lw-border-hover);
  animation: none;
}
.lw-page--products .lw-grid--catalog-products .lw-animate-in:nth-child(4),
.lw-page--products .lw-grid.cols-3 .lw-card.lw-animate-in:nth-child(4) {
  animation-delay: 0.22s;
}
.lw-page--products .lw-grid--catalog-products .lw-animate-in:nth-child(5),
.lw-page--products .lw-grid.cols-3 .lw-card.lw-animate-in:nth-child(5) {
  animation-delay: 0.28s;
}
.lw-page--products .lw-grid--catalog-products .lw-animate-in:nth-child(6),
.lw-page--products .lw-grid.cols-3 .lw-card.lw-animate-in:nth-child(6) {
  animation-delay: 0.34s;
}
.lw-page--products .lw-grid--catalog-products .lw-animate-in:nth-child(7),
.lw-page--products .lw-grid.cols-3 .lw-card.lw-animate-in:nth-child(7) {
  animation-delay: 0.4s;
}
.lw-page--products .lw-grid--catalog-products .lw-animate-in:nth-child(8),
.lw-page--products .lw-grid.cols-3 .lw-card.lw-animate-in:nth-child(8) {
  animation-delay: 0.46s;
}
.lw-page--products .lw-grid--catalog-products .lw-animate-in:nth-child(9),
.lw-page--products .lw-grid.cols-3 .lw-card.lw-animate-in:nth-child(9) {
  animation-delay: 0.52s;
}
.lw-page--account .landing-bg {
  animation: none;
}
.lw-page--account .lw-page-ambient__orb--1 {
  width: 300px;
  height: 300px;
  right: -8%;
  top: 10%;
  background: rgba(124, 184, 255, 0.17);
}
.lw-page--account .lw-page-ambient__orb--2 {
  width: 220px;
  height: 220px;
  left: -6%;
  bottom: 12%;
  background: rgba(185, 166, 255, 0.11);
}
.lw-page--account .lw-page-ambient__orb--3 {
  width: 160px;
  height: 160px;
  right: 28%;
  top: 48%;
  background: rgba(147, 197, 253, 0.09);
}
.lw-page--account .lw-account-main__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 12px;
  border-radius: 1px;
  background: var(--lw-border-hover);
  animation: none;
}
.lw-page--faq .lw-page-ambient__orb--1 {
  width: 260px;
  height: 260px;
  left: -5%;
  top: 6%;
  background: rgba(251, 191, 36, 0.12);
}
.lw-page--faq .lw-page-ambient__orb--2 {
  width: 220px;
  height: 220px;
  right: -4%;
  top: 22%;
  background: rgba(124, 184, 255, 0.13);
}
.lw-page--faq .lw-page-ambient__orb--3 {
  width: 180px;
  height: 180px;
  left: 35%;
  bottom: 10%;
  background: rgba(94, 233, 181, 0.09);
}
.lw-page--faq .landing-section--faq .section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 12px;
  border-radius: 1px;
  background: var(--lw-border-hover);
  animation: none;
}
.lw-page--faq .lw-faq-tab {
  position: relative;
}
.lw-page--faq .lw-faq-tab.is-active::after {
  display: none;
}
.lw-page--auth .lw-page-ambient__orb--1 {
  width: 340px;
  height: 340px;
  left: 50%;
  top: 32%;
  margin-left: -170px;
  background: rgba(185, 166, 255, 0.2);
  animation: lw-page-glow-pulse 6s ease-in-out infinite;
}
.lw-page--auth .lw-page-ambient__orb--2 {
  width: 200px;
  height: 200px;
  left: 12%;
  top: 18%;
  background: rgba(124, 184, 255, 0.1);
}
.lw-page--auth .lw-page-ambient__orb--3 {
  width: 180px;
  height: 180px;
  right: 10%;
  bottom: 16%;
  background: rgba(94, 233, 181, 0.08);
}
.lw-page--auth .section-card--center {
  position: relative;
  z-index: 1;
}
.lw-page--auth .section-card--center::before {
  display: none;
}
.lw-page--legal .lw-page-ambient {
  opacity: 0.14;
}
.lw-page--legal .landing-bg {
  animation: none;
}
.lw-page--legal .lw-page-ambient__orb--1 {
  width: 220px;
  height: 220px;
  right: 8%;
  top: 12%;
  background: rgba(255, 255, 255, 0.04);
}
.lw-page--legal .lw-page-ambient__orb--2 {
  width: 180px;
  height: 180px;
  left: 6%;
  bottom: 20%;
  background: rgba(185, 166, 255, 0.06);
}
.lw-page--legal .lw-legal-section {
  animation: lw-fade-up 0.48s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.lw-page--legal .lw-legal-section:nth-of-type(2) {
  animation-delay: 0.06s;
}
.lw-page--legal .lw-legal-section:nth-of-type(3) {
  animation-delay: 0.12s;
}
.lw-page--legal .lw-legal-section:nth-of-type(4) {
  animation-delay: 0.18s;
}
.lw-page--legal .lw-legal-section:nth-of-type(5) {
  animation-delay: 0.24s;
}
.lw-page--legal .lw-legal-section:nth-of-type(6) {
  animation-delay: 0.3s;
}
.lw-page--default .lw-page-ambient__orb--1 {
  width: 240px;
  height: 240px;
  right: -4%;
  top: 16%;
  background: rgba(185, 166, 255, 0.12);
}
.lw-page--default .lw-page-ambient__orb--2 {
  width: 200px;
  height: 200px;
  left: -2%;
  bottom: 14%;
  background: rgba(124, 184, 255, 0.1);
}
@media (prefers-reduced-motion: reduce) {
  .lw-page-ambient__orb,
  .lw-page--auth .section-card--center::before,
  .lw-page--faq .lw-faq-tab.is-active::after,
  .lw-page--legal .lw-legal-section {
    animation: none !important;
  }
  .lw-page--products .landing-section--products .section-title::after,
  .lw-page--faq .landing-section--faq .section-title::after,
  .lw-page--account .lw-account-page .section-title::after {
    animation: none !important;
    transform: none;
    opacity: 1;
  }
}
.landing-wrap {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: 14px;
  min-height: 0;
}
.topbar {
  position: sticky;
  top: 12px;
  z-index: 200;
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: var(--lw-radius-xl);
  background: linear-gradient(180deg, rgba(24, 24, 28, 0.86) 0%, rgba(10, 10, 12, 0.92) 100%);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.topbar::before,
.topbar::after {
  display: none;
}
.topbar-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px 16px;
  min-height: 48px;
}
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  min-height: 40px;
  padding: 6px 10px 6px 8px;
  margin: -6px 0 -6px -8px;
  border-radius: 10px;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #fafafa;
  font-weight: 700;
  line-height: 1.25;
  transition: background 0.15s ease;
}
.brand:hover {
  background: rgba(255, 255, 255, 0.04);
}
.brand-tag {
  margin-left: 0.15em;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #a1a1aa;
  font-weight: 600;
  font-size: 0.82em;
}
.lw-brand-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding: 3px 9px 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.08);
  color: #86efac;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  vertical-align: middle;
}
.lw-brand-online__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.25);
  flex-shrink: 0;
}
.lw-brand-online__text {
  color: #4ade80;
  font-weight: 600;
}
.lw-brand-online__count {
  min-width: 1.2em;
  padding-left: 6px;
  margin-left: 2px;
  border-left: 1px solid rgba(74, 222, 128, 0.28);
  color: #fafafa;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: center;
  transition: color 0.2s ease, transform 0.2s ease;
}
.lw-brand-online__count.is-updated {
  color: #4ade80;
  transform: scale(1.08);
}
.footer-online .lw-brand-online {
  font-size: 12px;
  padding: 4px 10px 4px 8px;
}
.footer-online .lw-brand-online__dot {
  width: 7px;
  height: 7px;
}
.lw-mobile-blocked-brand .lw-brand-online {
  margin-left: 8px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
}
.nav--primary {
  justify-self: center;
  gap: 3px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.nav--end {
  justify-self: end;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.lw-header-balance {
  display: inline-flex;
  align-items: stretch;
  min-height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  color: #fafafa;
  font: inherit;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-header-balance:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.lw-header-balance:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
.lw-header-balance__amount {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.lw-header-balance__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: #e4e4e7;
}
.lw-header-balance__icon svg {
  display: block;
}
.nav-user {
  font-size: 13px;
  color: var(--lw-muted);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
a.nav-user--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 9px;
  text-decoration: none;
  color: #e4e4e7;
  border: 1px solid transparent;
  background: transparent;
  font-weight: 600;
  font-size: 13px;
  max-width: min(200px, 32vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
a.nav-user--link:hover {
  color: #fafafa;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}
a.nav-user--link.is-active {
  color: #fafafa;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 32px;
  padding: 0 12px;
  color: var(--lw-muted);
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--lw-radius-sm);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.nav--primary .nav-btn {
  min-height: 32px;
}
.nav-btn:hover {
  color: var(--lw-text);
  background: rgba(255, 255, 255, 0.05);
}
.nav-btn.is-active {
  color: var(--lw-text);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav-btn--primary {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--lw-btn-primary-border);
  background: var(--lw-btn-primary-bg);
  color: var(--lw-btn-primary-text);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.nav-btn--primary:hover {
  background: var(--lw-btn-primary-bg-hover);
  border-color: var(--lw-btn-border-hover);
  color: var(--lw-btn-primary-text);
}
.nav-btn--primary.is-active {
  background: var(--lw-btn-primary-bg-hover);
  border-color: var(--lw-btn-border-hover);
  color: var(--lw-btn-primary-text);
}
.nav-btn--external {
  flex-shrink: 1;
  min-width: 0;
  max-width: min(300px, 100%);
  padding: 0 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-btn--external::after {
  content: '\00A0↗';
  font-size: 0.72em;
  font-weight: 500;
  opacity: 0.45;
  flex-shrink: 0;
  margin-left: 1px;
}
.nav-logout-form {
  display: inline-flex;
  margin: 0;
  padding: 0;
}
button.nav-logout {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
}
a.nav-logout,
button.nav-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
  margin-left: 0;
  border: 1px solid rgba(248, 113, 113, 0.2);
  background: rgba(248, 113, 113, 0.08);
  color: #f87171;
  border-radius: 9px;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
a.nav-logout:hover,
button.nav-logout:hover {
  color: #fecaca;
  background: rgba(248, 113, 113, 0.16);
  border-color: rgba(248, 113, 113, 0.35);
}
a.nav-logout:focus-visible,
button.nav-logout:focus-visible {
  outline: 2px solid rgba(248, 113, 113, 0.45);
  outline-offset: 2px;
}
a.nav-logout svg,
button.nav-logout svg {
  display: block;
  flex-shrink: 0;
}
.main-shell {
  flex: 1;
  padding-top: 8px;
  padding-bottom: var(--lw-section-y);
}
.main-shell-inner {
  width: 100%;
}
.landing-section {
  padding: var(--lw-section-y) 0;
}
.landing-section--tight-top {
  padding-top: clamp(28px, 5vw, 48px);
}
.landing-section--hero {
  padding-top: var(--lw-hero-pad);
  padding-bottom: clamp(32px, 6vw, 64px);
}
.landing-section--features {
  padding-top: clamp(8px, 2vw, 24px);
}
.landing-section--narrow {
  max-width: 480px;
  margin-inline: auto;
}
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.hero-ambient {
  display: none;
}
.hero-ambient__orb {
  display: none;
}
.hero-ambient__orb--1 {
  width: 220px;
  height: 220px;
  left: 12%;
  top: 8%;
  background: rgba(124, 184, 255, 0.22);
  animation-delay: 0s;
}
.hero-ambient__orb--2 {
  width: 180px;
  height: 180px;
  right: 10%;
  top: 18%;
  background: rgba(185, 166, 255, 0.16);
  animation-delay: -4.5s;
  animation-duration: 16s;
}
.hero-ambient__orb--3 {
  width: 140px;
  height: 140px;
  left: 42%;
  top: 42%;
  background: rgba(94, 233, 181, 0.12);
  animation-delay: -9s;
  animation-duration: 18s;
}
@keyframes lw-hero-orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.45;
  }
  33% {
    transform: translate(12px, -18px) scale(1.06);
    opacity: 0.62;
  }
  66% {
    transform: translate(-10px, 10px) scale(0.96);
    opacity: 0.5;
  }
}
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  min-height: 88px;
}
.hero-icon-ring {
  display: none;
}
@keyframes lw-hero-ring-spin {
  to {
    transform: rotate(360deg);
  }
}
.hero-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--lw-radius-md);
  border: 1px solid var(--lw-border);
  background: var(--lw-surface);
  color: var(--lw-muted);
  box-shadow: var(--lw-shadow-sm);
  transition: border-color 0.2s ease, color 0.2s ease;
}
@keyframes lw-hero-icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.hero-intro {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-inline: auto;
}
.lw-hero-reveal {
  animation: lw-hero-reveal 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.lw-hero-reveal--1 {
  animation-delay: 0.08s;
}
.lw-hero-reveal--2 {
  animation-delay: 0.18s;
}
.lw-hero-reveal--3 {
  animation-delay: 0.28s;
}
.lw-hero-reveal--4 {
  animation-delay: 0.38s;
}
@keyframes lw-hero-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.landing-section--popular .section-title.lw-animate-in {
  animation-delay: 0.12s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-ambient__orb,
  .hero-icon-ring,
  .hero-icon,
  .lw-hero-reveal {
    animation: none !important;
    filter: none;
    opacity: 1;
    transform: none;
  }
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--lw-border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 10px;
  font-weight: 700;
  color: var(--lw-muted);
  margin-bottom: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.12;
  font-weight: 700;
  color: #fafafa;
  letter-spacing: -0.02em;
}
.hero-lead {
  margin: 0 auto;
  max-width: 40ch;
  color: var(--lw-muted);
  line-height: 1.65;
  font-size: 15px;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-btn,
a.hero-btn,
button.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: var(--lw-btn-text);
  border: 1px solid var(--lw-btn-border);
  background: var(--lw-btn-bg);
  border-radius: var(--lw-radius-sm);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}
.hero-btn:hover,
a.hero-btn:hover,
button.hero-btn:hover {
  background: var(--lw-btn-bg-hover);
  border-color: var(--lw-btn-border-hover);
  color: var(--lw-btn-text-hover);
}
.hero-btn.primary,
a.hero-btn.primary,
button.hero-btn.primary {
  background: var(--lw-btn-primary-bg);
  border-color: var(--lw-btn-primary-border);
  color: var(--lw-btn-primary-text);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
.hero-btn.primary:hover,
a.hero-btn.primary:hover,
button.hero-btn.primary:hover {
  background: var(--lw-btn-primary-bg-hover);
  border-color: var(--lw-btn-border-hover);
  color: var(--lw-btn-primary-text);
}
button.hero-btn,
button.hero-btn.primary {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  margin: 0;
  text-align: center;
  color-scheme: dark;
  forced-color-adjust: auto;
}
.hero-btn:focus-visible,
a.hero-btn:focus-visible,
button.hero-btn:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
.hero-btn--sm {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--lw-radius-sm);
  min-height: 32px;
}
.section-title {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  color: #fafafa;
  letter-spacing: -0.02em;
}
.section-title--center {
  text-align: center;
}
.section-lead {
  margin: 0 0 16px;
  color: var(--lw-muted);
  line-height: 1.6;
  font-size: 15px;
}
.section-lead--center {
  text-align: center;
  max-width: 42ch;
  margin-inline: auto;
}
.home-why-lead {
  max-width: 52ch;
}
.home-community-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  padding: 16px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #4d73ff 0%, #3b5bdb 55%, #3558d4 100%);
  box-shadow:
    0 12px 32px rgba(59, 91, 219, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.home-community-banner__content {
  flex: 1 1 auto;
  min-width: 0;
}
.home-community-banner__title {
  margin: 0 0 4px;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
}
.home-community-banner__lead {
  margin: 0;
  max-width: 52ch;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.home-community-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-shrink: 0;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(24, 44, 120, 0.14);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}
.home-community-banner__btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(24, 44, 120, 0.2);
}
.home-community-banner__btn:active {
  transform: translateY(0);
}
.home-community-banner__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.home-community-banner.lw-animate-in {
  animation-name: lw-fade-up-card;
  animation-duration: 0.58s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
  animation-delay: 0.18s;
}
@media (max-width: 767px) {
  .home-community-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 14px 16px;
    gap: 12px;
  }
  .home-community-banner__lead {
    max-width: none;
  }
  .home-community-banner__btn {
    align-self: flex-start;
  }
}
@keyframes lw-fade-up-card {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-advantage-card {
  --home-adv-accent: #94a3b8;
  position: relative;
  overflow: hidden;
  background: var(--lw-surface);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.home-advantage-card::after {
  display: none;
}
.home-advantage-card--security {
  --home-adv-accent: #7cb8ff;
}
.home-advantage-card--support {
  --home-adv-accent: #b9a6ff;
}
.home-advantage-card--performance {
  --home-adv-accent: #5ee9b5;
}
.home-advantage-card--prices {
  --home-adv-accent: #fbbf77;
}
.home-advantage-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--home-adv-accent);
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.28s ease;
}
.home-advantage-card--security .home-advantage-card__icon-wrap,
.home-advantage-card--support .home-advantage-card__icon-wrap,
.home-advantage-card--performance .home-advantage-card__icon-wrap,
.home-advantage-card--prices .home-advantage-card__icon-wrap {
  border-color: var(--lw-border);
  background: rgba(255, 255, 255, 0.04);
}
.home-advantage-card:hover {
  border-color: var(--lw-border-hover);
  box-shadow: var(--lw-shadow-sm);
}
.home-advantage-card--security:hover,
.home-advantage-card--support:hover,
.home-advantage-card--performance:hover,
.home-advantage-card--prices:hover {
  box-shadow: var(--lw-shadow-sm);
}
.home-advantage-card:hover .home-advantage-card__icon-wrap {
  transform: none;
}
.home-advantage-card:hover .home-advantage-card__icon-wrap {
  border-color: var(--lw-border-hover);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
.home-advantage-card.lw-animate-in {
  animation-name: lw-fade-up-card;
  animation-duration: 0.58s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
}
.lw-grid--why .home-advantage-card.lw-animate-in:nth-child(1) {
  animation-delay: 0.06s;
}
.lw-grid--why .home-advantage-card.lw-animate-in:nth-child(2) {
  animation-delay: 0.14s;
}
.lw-grid--why .home-advantage-card.lw-animate-in:nth-child(3) {
  animation-delay: 0.22s;
}
.lw-grid--why .home-advantage-card.lw-animate-in:nth-child(4) {
  animation-delay: 0.3s;
}
.home-community-panel {
  position: relative;
  overflow: hidden;
}
.home-community-panel::before,
.home-community-panel::after {
  display: none;
}
.home-community-panel > * {
  position: relative;
  z-index: 1;
}
.home-community-panel.lw-animate-in {
  animation-delay: 0.18s;
}
.home-community-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.home-community-btn:hover {
  transform: none;
  box-shadow: var(--lw-shadow-sm);
}
@media (prefers-reduced-motion: reduce) {
  .home-advantage-card.lw-animate-in,
  .home-community-banner.lw-animate-in {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .home-advantage-card:hover,
  .home-community-banner__btn:hover {
    transform: none;
    box-shadow: none;
  }
  .home-advantage-card:hover .home-advantage-card__icon-wrap {
    transform: none;
    box-shadow: none;
  }
}
.section-card--community .section-lead--center {
  max-width: 48ch;
}
.section-card {
  border: 1px solid var(--lw-glass-border);
  background: var(--lw-glass-bg);
  border-radius: var(--lw-radius-lg);
  padding: clamp(18px, 2.5vw, 28px);
  box-shadow: var(--lw-glass-shadow);
}
.section-card--center {
  width: 100%;
}
.lw-grid {
  display: grid;
  gap: 14px;
}
.lw-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.lw-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lw-grid.lw-grid--popular {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  width: 100%;
}
.lw-grid.lw-grid--popular > article {
  min-width: 0;
  height: 100%;
}
@media (max-width: 980px) {
  .lw-grid.lw-grid--popular {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .lw-grid.lw-grid--popular {
    grid-template-columns: minmax(0, 1fr);
  }
}
.lw-card {
  scroll-margin-top: 88px;
  padding: 16px 18px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-lg);
  background: var(--lw-surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lw-card--strong {
  background: var(--lw-surface-2);
}
.lw-card--flat {
  background: var(--lw-surface);
}
.lw-card--list {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px;
  text-align: center;
  border: 1px solid var(--lw-glass-border);
  border-radius: var(--lw-radius-xl);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.055) 0%, rgba(0, 0, 0, 0.32) 100%);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.lw-card--list:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 36px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}
.lw-card-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #fafafa;
  letter-spacing: -0.02em;
}
.lw-card--list .lw-card-title {
  text-align: center;
}
.lw-card-title--center {
  text-align: center;
}
.lw-card-excerpt {
  margin: 0;
  color: var(--lw-muted);
  font-size: var(--lw-font-sm);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lw-card--list .lw-card-excerpt {
  text-align: center;
}
.lw-card-video {
  margin-top: 10px;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.lw-card-video-stage--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.lw-card-video-label--placeholder {
  visibility: hidden;
}
.lw-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}
.lw-card--list .lw-card-excerpt {
  flex: 1 1 auto;
  min-height: 3.9em;
}
.lw-card__foot {
  flex-shrink: 0;
  margin-top: auto;
}
.lw-card__foot .lw-card-price-row {
  margin-top: 0;
}
.lw-card__foot .lw-rating-row {
  margin-top: 10px;
  margin-bottom: 0;
}
.lw-card__foot .lw-card-actions {
  margin-top: 12px;
  padding-top: 0;
}
.lw-card-video-stage {
  position: relative;
  width: 100%;
}
.lw-pill--on-video {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 10px;
}
.lw-card-video-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lw-subtle);
  margin-bottom: 8px;
  text-align: center;
}
.lw-card-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.lw-card-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.lw-yt-facade {
  cursor: default;
}
.lw-yt-facade-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lw-yt-facade-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}
.lw-yt-facade-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease;
}
.lw-yt-facade-play:hover {
  transform: scale(1.06);
}
.lw-yt-facade-play:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.65);
  outline-offset: 3px;
}
.lw-yt-facade-play svg {
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
.lw-card-video + .lw-card-excerpt {
  margin-top: 22px;
}
.lw-card-price-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lw-card--list .lw-card-price-row {
  align-items: center;
}
.lw-card-price-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lw-subtle);
}
.lw-card-price-value {
  font-size: 22px;
  font-weight: 700;
  color: #fafafa;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.lw-pill--video {
  color: #b4bdd4;
  border-color: rgba(148, 163, 184, 0.35);
}
.lw-rating-row {
  margin-top: 12px;
  margin-bottom: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.lw-rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  max-width: 100%;
}
.lw-rating-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  font-size: var(--lw-font-xs);
  color: var(--lw-muted);
  line-height: 1.2;
  white-space: nowrap;
}
.lw-rating-sep {
  opacity: 0.65;
}
.lw-stars--lg {
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.lw-muted {
  color: var(--lw-muted);
}
.lw-card h3 {
  margin: 0 0 8px;
  color: #f1f5f9;
  font-size: 16px;
}
.lw-card p:not(.lw-card-actions) {
  margin: 0;
  color: var(--lw-muted);
  line-height: 1.55;
  font-size: 14px;
}
.lw-card-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lw-card--list .lw-card-meta {
  justify-content: center;
}
.lw-card-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lw-card--list .lw-card-actions.lw-card-actions--single {
  justify-content: center;
}
.lw-card--list .lw-card-actions--single .hero-btn {
  min-height: 36px;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 10px;
}
.lw-card--list .lw-rating-row {
  justify-content: center;
}
.lw-card--list .lw-rating-summary {
  justify-content: center;
}
.lw-rating-row + .lw-card-actions {
  margin-top: 14px;
}
.lw-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--lw-border);
  color: var(--lw-muted);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.15s ease, background 0.15s ease;
}
a.lw-pill:hover {
  border-color: var(--lw-border-hover);
  background: rgba(255, 255, 255, 0.05);
}
.lw-pill.is-active {
  border-color: rgba(212, 212, 212, 0.45);
  color: var(--lw-text);
  background: rgba(255, 255, 255, 0.08);
}
.lw-pill.ok {
  color: #9dd4b8;
  border-color: rgba(110, 231, 183, 0.28);
}
.lw-pill.upd {
  color: #e8d48a;
  border-color: rgba(252, 211, 77, 0.28);
}
.lw-pill.on-update {
  color: #fde047;
  border-color: rgba(250, 204, 21, 0.45);
  background: rgba(250, 204, 21, 0.08);
}
.lw-pill.prem {
  color: #c4b5fd;
  border-color: rgba(167, 139, 250, 0.28);
}
.lw-not-found {
  text-align: center;
  max-width: min(42ch, 100%);
  margin-inline: auto;
}
.lw-not-found__code {
  margin: 0 0 12px;
  font-size: clamp(3rem, 12vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(167, 139, 250, 0.35);
}
.lw-not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.lw-page--error .landing-section--tight-top {
  padding-top: clamp(2rem, 6vw, 4rem);
}
.lw-filter-row {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lw-page--products .landing-section--products,
.lw-page--products .landing-section--catalog,
.lw-page--products .landing-section--catalog-games,
.lw-page--products .landing-section--catalog-products {
  position: relative;
  z-index: 1;
  overflow: visible;
}
.lw-page--products .landing-section.lw-grid.cols-3,
.lw-page--products .lw-grid--catalog-products {
  position: relative;
  z-index: 1;
}
.landing-section--catalog {
  padding-bottom: 8px;
}
.section-title--catalog {
  margin-bottom: 8px;
}
.section-lead--catalog {
  max-width: 52ch;
  margin-bottom: 0;
}
.lw-catalog-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--lw-muted);
}
.lw-catalog-crumb__link {
  color: var(--lw-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.lw-catalog-crumb__link:hover {
  color: #c4b5fd;
}
.lw-catalog-crumb__current {
  color: #e4e4e7;
  font-weight: 600;
}
.lw-catalog-crumb__sep {
  color: rgba(255, 255, 255, 0.28);
  user-select: none;
}
.lw-catalog-section-title {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fafafa;
}
.lw-catalog-section-title--game {
  color: #c4b5fd;
}
.lw-catalog-products-head {
  margin-bottom: 16px;
}
.lw-catalog-products-lead {
  margin: 0;
  max-width: 48ch;
}
.landing-section--catalog-games {
  padding-top: 4px;
}
.landing-section--catalog-products {
  padding-top: 8px;
  scroll-margin-top: 88px;
}
.lw-grid--games {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.lw-grid--catalog-products {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.lw-catalog-view--category .lw-grid--catalog-products {
  grid-template-columns: repeat(auto-fill, minmax(260px, 300px));
  justify-content: start;
  gap: 16px;
}
.lw-catalog-view--category .lw-grid.lw-grid--popular {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  justify-content: stretch;
  justify-items: stretch;
}
.lw-catalog-view--category .lw-grid.lw-grid--popular > article {
  width: 100%;
  max-width: none;
}
.lw-catalog-view--category .lw-catalog-product {
  width: 100%;
  max-width: 300px;
}
.lw-game-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.35) 100%);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.lw-game-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
.lw-game-card.is-active {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}
.lw-game-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  min-height: 140px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  box-sizing: border-box;
}
.lw-game-card__media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.lw-game-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.2));
}
.lw-game-card__foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px 14px;
}
.lw-game-card__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #fafafa;
}
.lw-game-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  line-height: 1.3;
}
.lw-game-card__count {
  color: var(--lw-muted);
}
.lw-game-card__price {
  color: #f4f4f5;
  font-weight: 600;
  white-space: nowrap;
}
.lw-catalog-product {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.lw-catalog-product:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
.lw-catalog-product__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  max-height: 168px;
  background: #0a0a0c;
  overflow: hidden;
}
.lw-catalog-view--category .lw-catalog-product__visual {
  aspect-ratio: 16 / 9;
  max-height: 160px;
}
.lw-catalog-product__frame,
.lw-catalog-product__visual .lw-yt-facade {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
}
.lw-catalog-product__visual .lw-yt-facade,
.lw-catalog-product__visual iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.lw-catalog-product__visual .lw-yt-facade-thumb {
  object-fit: cover;
  object-position: center;
  background: #0a0a0c;
}
.lw-catalog-product__placeholder {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}
.lw-catalog-product__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.2));
}
.lw-catalog-view--category {
  padding-top: 4px;
  scroll-margin-top: 88px;
}
.lw-catalog-product__visual .lw-pill--on-video {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}
.lw-catalog-product__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px 14px;
}
.lw-catalog-product__name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fafafa;
}
.lw-catalog-product__desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--lw-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lw-catalog-product__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lw-catalog-product__price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.lw-catalog-product__price {
  font-size: 14px;
  font-weight: 600;
  color: #f4f4f5;
  white-space: nowrap;
}
.landing-section--products .lw-category-picker-wrap {
  margin: 22px auto 4px;
  max-width: min(520px, 100%);
  position: relative;
  z-index: 1;
}
.lw-category-picker-shell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 48%, rgba(0, 0, 0, 0.15) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 12px 32px rgba(0, 0, 0, 0.28);
}
.lw-category-picker-label {
  display: block;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a78bfa;
}
.lw-category-picker {
  position: relative;
}
.lw-category-picker.is-open {
  z-index: 50;
}
.lw-category-picker__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: var(--lw-text);
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-category-picker__trigger:hover {
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(0, 0, 0, 0.45);
}
.lw-category-picker.is-open .lw-category-picker__trigger {
  border-color: rgba(167, 139, 250, 0.55);
  background: rgba(167, 139, 250, 0.1);
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.12);
}
.lw-category-picker__icon {
  flex: 0 0 52px;
  width: 52px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 4px;
  box-sizing: border-box;
}
.lw-category-picker__icon--all {
  color: #c4b5fd;
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.22);
}
.lw-category-picker__icon img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.lw-category-picker__text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #fafafa;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lw-category-picker__chevron {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #c4b5fd;
  background: rgba(167, 139, 250, 0.12);
  transition: transform 0.18s ease, background 0.15s ease;
}
.lw-category-picker__trigger:hover .lw-category-picker__chevron,
.lw-category-picker.is-open .lw-category-picker__chevron {
  background: rgba(167, 139, 250, 0.2);
}
.lw-category-picker.is-open .lw-category-picker__chevron {
  transform: rotate(180deg);
}
.lw-category-picker__menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121216;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 24px 56px rgba(0, 0, 0, 0.72);
  max-height: min(360px, 62vh);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.lw-category-picker__menu-title {
  margin: 2px 8px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lw-subtle);
  line-height: 1.3;
}
.lw-category-picker__option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 10px;
  border-radius: 11px;
  color: var(--lw-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.12s ease, border-color 0.12s ease;
  border: 1px solid transparent;
  box-sizing: border-box;
}
.lw-category-picker__option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.06);
}
.lw-category-picker__option.is-active {
  background: rgba(167, 139, 250, 0.14);
  border-color: rgba(167, 139, 250, 0.35);
}
.lw-category-picker__option-text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  line-height: 1.3;
}
.lw-category-picker__check {
  flex: 0 0 auto;
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.15);
}
.lw-category-picker__option.is-active .lw-category-picker__check {
  display: flex;
}
.lw-admin-product-site-dialog .lw-admin-site-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  margin: 0;
}
.lw-admin-site-categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.lw-admin-product-site-dialog .lw-admin-site-categories-hint {
  margin: -4px 0 12px;
  font-size: 12px;
  line-height: 1.45;
}
.lw-admin-site-categories-hint {
  margin: 8px 0 0;
  font-size: 12px;
}
.lw-admin-product-site-dialog .lw-admin-site-category {
  padding: 8px 10px;
  gap: 10px;
  min-height: 56px;
}
.lw-admin-site-category {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
  box-sizing: border-box;
}
.lw-admin-site-category:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}
.lw-admin-site-category.is-selected,
.lw-admin-site-category:has(.lw-admin-site-category__input:checked) {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.lw-admin-site-category__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lw-admin-product-site-dialog .lw-admin-site-category__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 40px;
}
.lw-admin-site-category__icon {
  flex: 0 0 60px;
  width: 60px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  padding: 4px;
  box-sizing: border-box;
}
.lw-admin-site-category__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.lw-admin-site-category__name {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  line-height: 1.3;
}
.lw-admin-product-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.lw-admin-product-category-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d4d4d8;
}
.lw-form .row {
  margin-bottom: 12px;
}
.lw-form label:not(.lw-account-toggle):not(.lw-admin-form-check):not(.lw-auth-input):not(.lw-admin-clear-stats__check):not(.lw-pm-switch):not(.lw-admin-category-file__btn) {
  display: block;
  font-size: 12px;
  color: var(--lw-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.lw-form label.lw-auth-input {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: text;
}
.lw-form label.lw-admin-form-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--lw-text);
}
.lw-form label.lw-account-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.lw-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]),
.lw-form textarea,
.lw-form select {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid var(--lw-border);
  color: var(--lw-text);
  border-radius: var(--lw-radius-sm);
  padding: 11px 12px;
  font-size: 14px;
}
.lw-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]):focus,
.lw-form textarea:focus,
.lw-form select:focus {
  outline: none;
  border-color: rgba(212, 212, 212, 0.35);
}
.lw-btn-full {
  width: 100%;
}
.lw-btn-wide {
  width: 100%;
  box-sizing: border-box;
}
.lw-feedback {
  margin: 12px 0 0;
  font-size: 13px;
}
.lw-feedback.ok {
  color: #9dd4b8;
}
.lw-feedback.err {
  color: #f0a8a8;
}
.lw-account-notices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 18px;
}
.lw-glass-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 13px 16px;
  border-radius: var(--lw-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 38%, rgba(12, 12, 16, 0.55) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 14px 36px -20px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: #e4e4e7;
}
.lw-glass-notice__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.lw-glass-notice__icon::before {
  display: block;
}
.lw-glass-notice__text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 1px 0 0;
}
.lw-glass-notice--ok {
  border-color: rgba(74, 222, 128, 0.32);
  color: #bbf7d0;
}
.lw-glass-notice--ok .lw-glass-notice__icon {
  color: #86efac;
  background: rgba(22, 163, 74, 0.22);
  border-color: rgba(74, 222, 128, 0.35);
}
.lw-glass-notice--ok .lw-glass-notice__icon::before {
  content: "✓";
}
.lw-glass-notice--err {
  border-color: rgba(248, 113, 113, 0.32);
  color: #fecaca;
}
.lw-glass-notice--err .lw-glass-notice__icon {
  color: #fca5a5;
  background: rgba(220, 38, 38, 0.2);
  border-color: rgba(248, 113, 113, 0.35);
}
.lw-glass-notice--err .lw-glass-notice__icon::before {
  content: "!";
}
.lw-glass-notice--info {
  border-color: rgba(147, 197, 253, 0.32);
  color: #bfdbfe;
}
.lw-glass-notice--info .lw-glass-notice__icon {
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.22);
  border-color: rgba(147, 197, 253, 0.35);
}
.lw-glass-notice--info .lw-glass-notice__icon::before {
  content: "%";
}
.lw-glass-notice--muted {
  border-color: rgba(255, 255, 255, 0.14);
  color: #d4d4d8;
}
.lw-glass-notice--muted .lw-glass-notice__icon {
  color: #a1a1aa;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.lw-glass-notice--muted .lw-glass-notice__icon::before {
  content: "i";
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
}
.lw-glass-notice--compact {
  padding: 10px 12px;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
}
.lw-glass-notice--compact .lw-glass-notice__icon {
  width: 20px;
  height: 20px;
  font-size: 11px;
}
.lw-glass-notice--compact .lw-glass-notice__text {
  margin-top: 0;
}
.lw-toast-stack {
  position: fixed;
  top: calc(76px + env(safe-area-inset-top, 0px));
  right: max(16px, env(safe-area-inset-right, 0px));
  z-index: 10060;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  width: auto;
  max-width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}
.lw-toast.lw-glass-notice {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  width: max-content;
  max-width: min(340px, calc(100vw - 32px));
  min-height: 48px;
  padding: 14px 16px;
  pointer-events: auto;
  border-radius: var(--lw-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 8px 32px -8px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(40px) saturate(1.65) brightness(1.12);
  -webkit-backdrop-filter: blur(40px) saturate(1.65) brightness(1.12);
  isolation: isolate;
  animation: lw-toast-enter 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lw-toast.lw-glass-notice::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.02) 42%,
    transparent 100%
  );
  pointer-events: none;
}
.lw-toast.lw-glass-notice .lw-glass-notice__icon,
.lw-toast.lw-glass-notice .lw-glass-notice__text {
  position: relative;
  z-index: 1;
}
.lw-toast.lw-glass-notice .lw-glass-notice__text {
  margin: 0;
  line-height: 1.4;
}
.lw-toast.lw-glass-notice.is-leaving {
  animation: lw-toast-leave 0.42s cubic-bezier(0.4, 0, 1, 1) forwards;
}
@keyframes lw-toast-enter {
  from {
    opacity: 0;
    transform: translateX(28px) translateY(-6px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}
@keyframes lw-toast-leave {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(24px) scale(0.94);
  }
}
@media (prefers-reduced-motion: reduce) {
  .lw-toast.lw-glass-notice {
    animation: none;
  }
  .lw-toast.lw-glass-notice.is-leaving {
    animation: none;
    opacity: 0;
  }
}
@media (max-width: 640px) {
  .lw-toast-stack {
    top: calc(68px + env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    left: auto;
    max-width: calc(100vw - 24px);
  }
  .lw-toast.lw-glass-notice {
    max-width: calc(100vw - 24px);
  }
}
.lw-auth-switch,
.lw-auth-footer {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 14px;
  color: rgba(230, 230, 230, 0.72);
}
.lw-auth-switch a,
.lw-auth-footer a {
  color: var(--lw-accent, #c4b5fd);
  text-decoration: none;
  font-weight: 600;
}
.lw-auth-switch a:hover,
.lw-auth-footer a:hover {
  text-decoration: underline;
}
.lw-auth-header {
  text-align: center;
  margin-bottom: 22px;
}
.lw-auth-header__title {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f8fafc;
}
.lw-auth-header__subtitle {
  margin: 10px 0 0;
  font-size: 15px;
  color: rgba(230, 230, 230, 0.62);
  line-height: 1.45;
}
.lw-auth-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 26px 24px 22px;
  background: linear-gradient(165deg, rgba(22, 22, 28, 0.92), rgba(14, 14, 18, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.lw-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 22px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-auth-tabs__tab {
  display: block;
  text-align: center;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(230, 230, 230, 0.65);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.lw-auth-tabs__tab:hover {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.05);
}
.lw-auth-tabs__tab.is-active {
  color: #ecfdf5;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.32);
  box-shadow: none;
}
.lw-form--auth .row {
  margin-bottom: 16px;
}
.lw-auth-field__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.lw-auth-field__head label {
  margin-bottom: 0;
}
.lw-auth-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--lw-accent, #c4b5fd);
  text-decoration: none;
  white-space: nowrap;
}
.lw-auth-link:hover {
  text-decoration: underline;
}
.lw-auth-field__hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(230, 230, 230, 0.5);
}
.lw-auth-hint {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
}
.lw-form--auth .row input[type="email"],
.lw-form--auth .row input[type="password"],
.lw-form--auth .row input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 12, 0.55);
  color: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lw-form--auth .row input:focus {
  outline: none;
  border-color: rgba(74, 222, 128, 0.45);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}
.lw-form--auth .row input:-webkit-autofill,
.lw-form--auth .row input:-webkit-autofill:hover,
.lw-form--auth .row input:-webkit-autofill:focus {
  -webkit-text-fill-color: #f8fafc;
  caret-color: #f8fafc;
  transition: background-color 99999s ease-out 0s;
  -webkit-box-shadow: 0 0 0 1000px rgba(8, 8, 12, 0.92) inset;
}
.lw-form--auth {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.lw-auth-submit--cta {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: auto;
  max-width: 100%;
  margin: 6px 0 0;
  padding: 8px 16px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  border: 1px solid var(--lw-btn-primary-border);
  border-radius: var(--lw-radius-sm);
  color: var(--lw-btn-primary-text);
  background: var(--lw-btn-primary-bg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  cursor: pointer;
  color-scheme: dark;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.12s ease;
}
.lw-auth-submit--cta:hover {
  background: var(--lw-btn-primary-bg-hover);
  border-color: var(--lw-btn-border-hover);
  color: var(--lw-btn-primary-text);
}
.lw-auth-submit--cta:active {
  transform: translateY(1px);
}
.lw-auth-submit--cta:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
.lw-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}
.lw-auth-actions .lw-auth-submit--cta {
  margin-top: 0;
  flex: 0 0 auto;
}
.lw-form--auth .lw-auth-secondary.hero-btn,
.lw-form--auth button.lw-auth-secondary.hero-btn {
  padding: 8px 14px;
  font-size: 12px;
  line-height: 1.25;
  border-radius: var(--lw-radius-sm);
  width: auto;
  min-width: 0;
  max-width: 100%;
}
.hero-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(248, 250, 252, 0.9);
}
button.hero-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.lw-auth-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(248, 250, 252, 0.88);
}
.lw-auth-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--lw-accent, #c4b5fd);
}
.lw-auth-check--account {
  margin-bottom: 16px;
}
.lw-account-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.lw-account-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.lw-account-toggle__track {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--lw-border);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lw-account-toggle__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #71717a;
  transition: transform 0.2s ease, background 0.2s ease;
}
.lw-account-toggle__input:checked + .lw-account-toggle__track {
  background: rgba(22, 163, 74, 0.4);
  border-color: rgba(74, 222, 128, 0.45);
}
.lw-account-toggle__input:checked + .lw-account-toggle__track::after {
  transform: translateX(18px);
  background: #fafafa;
}
.lw-account-toggle__input:focus-visible + .lw-account-toggle__track {
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.25);
}
.lw-account-toggle__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #e4e4e7;
}
.lw-auth-card .lw-otp-field {
  margin-bottom: 14px;
}
.lw-auth-card .lw-email-dialog__status {
  margin-bottom: 12px;
  font-size: 13px;
}
.lw-auth-card .lw-email-dialog__status.ok {
  color: #6ee7b7;
}
.lw-auth-card .lw-email-dialog__status.err {
  color: #fca5a5;
}
.landing-section--auth {
  padding-top: 28px;
  padding-bottom: 48px;
}

/* Auth modal (login / register popup) */
.lw-auth-dialog {
  width: min(440px, calc(100vw - 24px));
  max-width: calc(100vw - 16px);
}
.lw-auth-dialog__panel {
  padding: 26px 24px 22px;
  background: linear-gradient(165deg, rgba(22, 22, 26, 0.98) 0%, rgba(10, 10, 12, 0.99) 100%);
  border: 1px solid var(--lw-glass-border);
  border-radius: var(--lw-radius-xl);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.lw-auth-dialog__close {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}
.lw-auth-dialog__brand {
  margin: 0 0 20px;
  text-align: center;
}
.lw-auth-dialog__brand-title {
  margin: 0;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fafafa;
  line-height: 1.25;
}
.lw-auth-dialog__brand-tag {
  color: rgba(250, 250, 250, 0.62);
  font-weight: 600;
}
.lw-auth-dialog__tabs {
  margin-bottom: 18px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid var(--lw-glass-border);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.lw-auth-dialog__tabs .lw-auth-tabs__tab {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font: inherit;
  width: 100%;
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lw-muted);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-auth-dialog__tabs .lw-auth-tabs__tab:hover {
  color: var(--lw-text);
  background: rgba(255, 255, 255, 0.04);
}
.lw-auth-dialog__tabs .lw-auth-tabs__tab.is-active {
  color: #fafafa;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.lw-auth-dialog__hint {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(230, 230, 230, 0.58);
  text-align: center;
}
.lw-auth-dialog__panel-pane {
  display: none;
}
.lw-auth-dialog__panel-pane.is-active {
  display: block;
}
.lw-auth-dialog__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.lw-auth-dialog__form .lw-auth-input input[type="email"],
.lw-auth-dialog__form .lw-auth-input input[type="password"],
.lw-auth-dialog__form .lw-auth-input input[type="text"] {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  color: #fafafa;
  font: inherit;
  font-size: 15px;
  line-height: 1.25;
}
.lw-auth-dialog__form .lw-auth-input input:focus,
.lw-auth-dialog__form .lw-auth-input input:hover {
  border: 0;
  outline: none;
  box-shadow: none;
  background: transparent;
}
.lw-auth-input {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-auth-input:hover {
  border-color: rgba(255, 255, 255, 0.14);
}
.lw-auth-input:focus-within {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}
.lw-auth-input__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(161, 161, 170, 0.9);
}
.lw-auth-input input {
  flex: 1 1 auto;
  min-width: 0;
  width: 0;
  margin: 0;
  border: 0;
  background: transparent;
  padding: 0;
  color: #fafafa;
  font: inherit;
  font-size: 15px;
  line-height: 1.25;
  box-shadow: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.lw-auth-input input::placeholder {
  color: rgba(161, 161, 170, 0.85);
}
.lw-auth-input input:focus {
  outline: none;
}
.lw-auth-dialog__form .lw-auth-input input:-webkit-autofill,
.lw-auth-dialog__form .lw-auth-input input:-webkit-autofill:hover,
.lw-auth-dialog__form .lw-auth-input input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fafafa !important;
  caret-color: #fafafa;
  border: 0 !important;
  transition: background-color 99999s ease-out 0s;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: none !important;
}
.lw-auth-dialog__row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: -2px 0 0;
}
.lw-auth-dialog__forgot {
  font-size: 12px;
  color: var(--lw-muted);
}
.lw-auth-dialog__forgot:hover {
  color: var(--lw-text);
}
.lw-auth-turnstile {
  display: block;
  width: 100%;
  margin: 4px 0 0;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: transparent;
  overflow: hidden;
  line-height: 0;
  isolation: isolate;
}
.lw-auth-turnstile > div {
  width: 100%;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.lw-auth-turnstile iframe {
  display: block;
  width: 100% !important;
  margin: 0;
  padding: 0;
  border: 0 !important;
  outline: none;
  border-radius: 0;
  clip-path: inset(0 round 12px);
  -webkit-clip-path: inset(0 round 12px);
}
.lw-auth-submit--dialog {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 6px 0 0;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fafafa;
  background: linear-gradient(180deg, rgba(48, 48, 54, 0.95) 0%, rgba(32, 32, 36, 0.98) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 10px 24px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  color-scheme: dark;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.12s ease;
}
.lw-auth-submit--dialog:hover {
  background: linear-gradient(180deg, rgba(58, 58, 64, 0.98) 0%, rgba(38, 38, 42, 1) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.lw-auth-submit--dialog:active {
  transform: translateY(1px);
}
.lw-auth-submit--dialog:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
.lw-auth-dialog__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  font-size: 11px;
  line-height: 1.45;
  color: var(--lw-subtle);
}
.lw-auth-dialog__footer a {
  color: var(--lw-muted);
  text-decoration: none;
  font-weight: 500;
}
.lw-auth-dialog__footer a:hover {
  color: var(--lw-text);
  text-decoration: underline;
}
body.lw-auth-open {
  overflow: hidden;
}
.lw-faq-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 18px 0 20px;
  padding: 5px;
  border: 1px solid var(--lw-glass-border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.lw-faq-tab {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: var(--lw-muted);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.lw-faq-tab:hover {
  color: var(--lw-text);
  background: rgba(255, 255, 255, 0.04);
}
.lw-faq-tab.is-active {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.09);
  color: #fafafa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.lw-faq-panels {
  margin-top: 0;
}
.lw-page--faq .lw-faq-panels.section-card {
  border-radius: var(--lw-radius-xl);
  padding: clamp(20px, 2.5vw, 28px);
}
.lw-faq-panel[hidden] {
  display: none;
}
.lw-faq-panel__intro {
  margin: 0;
  max-width: 56ch;
  font-size: 14px;
  line-height: 1.55;
  color: var(--lw-muted);
}
.lw-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.lw-faq-item {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.26) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}
.lw-faq-item[open] {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055) 0%, rgba(0, 0, 0, 0.3) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.14);
}
.lw-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  color: #fafafa;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.lw-faq-item summary::-webkit-details-marker {
  display: none;
}
.lw-faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: -2px;
  border-right: 1.5px solid rgba(161, 161, 170, 0.9);
  border-bottom: 1.5px solid rgba(161, 161, 170, 0.9);
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.15s ease;
}
.lw-faq-item[open] summary::after {
  margin-top: 2px;
  transform: rotate(-135deg);
  border-color: rgba(212, 212, 216, 0.85);
}
.lw-faq-item__q {
  flex: 1 1 auto;
  min-width: 0;
}
.lw-faq-item__a {
  margin: 0;
  padding: 0 16px 14px;
  color: var(--lw-muted);
  font-size: 14px;
  line-height: 1.6;
}
.lw-download-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lw-download-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045) 0%, rgba(0, 0, 0, 0.28) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-download-row:hover {
  border-color: rgba(255, 255, 255, 0.13);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.32) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.16);
}
.lw-download-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1 1 auto;
}
.lw-download-name {
  font-weight: 600;
  color: #fafafa;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.lw-download-optional {
  font-weight: 500;
  color: var(--lw-subtle);
  font-size: 13px;
}
.lw-download-size {
  font-size: 12px;
  font-weight: 500;
  color: var(--lw-subtle);
  font-variant-numeric: tabular-nums;
}
.lw-faq-dl-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 36px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fafafa;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-faq-dl-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.lw-faq-dl-btn:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.3);
  outline-offset: 2px;
}
.lw-review {
  margin-top: 14px;
  border-top: 1px solid var(--lw-border);
  padding-top: 14px;
}
.lw-review strong {
  font-size: 13px;
  color: var(--lw-text);
}
.lw-sub {
  color: var(--lw-muted);
  font-size: 13px;
}
.lw-review-gap {
  margin-top: 8px;
}
.lw-review-block {
  margin-top: 10px;
}
.lw-review-text {
  margin: 6px 0 0;
  font-size: 14px;
  color: #cbd5e1;
}
.lw-review-author {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--lw-subtle);
}
.lw-stars {
  color: #e8c547;
  letter-spacing: 1px;
  font-size: 14px;
}
.lw-lang-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--lw-radius-md);
  border: 1px solid var(--lw-border);
  background: rgba(0, 0, 0, 0.88);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.lw-lang-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--lw-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-right: 4px;
}
.lw-lang-float a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--lw-muted);
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
}
.lw-lang-float a:hover {
  color: var(--lw-text);
}
.lw-lang-float a.active {
  color: #fff;
  border-color: rgba(212, 212, 212, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
footer.footer {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
  padding-top: clamp(20px, 3vw, 32px);
  box-sizing: border-box;
  border-top: 1px solid var(--lw-border);
  background: transparent;
}
.footer-shell {
  width: 100%;
  margin: 0;
  padding: 0 0 calc(20px + var(--lw-safe-bottom, 0px));
  box-sizing: border-box;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 28px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--lw-border);
}
.footer-brand-col {
  min-width: 0;
}
.footer-brand {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lw-text);
}
.footer-brand__tag {
  color: var(--lw-muted);
  font-weight: 600;
}
.footer-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--lw-subtle);
}
.footer-online {
  margin-top: 12px;
}
.footer-online .lw-brand-online {
  margin-left: 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 18px;
}
.footer-link {
  display: inline-block;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--lw-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.footer-link:hover {
  color: #f4f4f5;
}
.footer-link--external::after {
  content: "↗";
  display: inline-block;
  margin-left: 3px;
  font-size: 10px;
  opacity: 0.55;
  vertical-align: 0.05em;
}
.footer-lang {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.footer-lang__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.footer-lang__toggle {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  background: rgba(0, 0, 0, 0.35);
}
.footer-lang__btn {
  min-width: 40px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: var(--lw-muted);
  text-align: center;
  text-decoration: none;
  border-radius: calc(var(--lw-radius-sm) - 2px);
  transition: color 0.15s ease, background 0.15s ease;
}
.footer-lang__btn:hover {
  color: var(--lw-text);
}
.footer-lang__btn.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand-col {
    width: 100%;
  }
  .footer-lang {
    align-items: center;
  }
  .footer-nav {
    justify-content: center;
    gap: 8px 14px;
  }
}
@media (max-width: 520px) {
  .footer-shell {
    width: 100%;
    padding-bottom: calc(18px + var(--lw-safe-bottom, 0px));
  }
  .footer-top {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .footer-link {
    font-size: 12px;
  }
  .footer-nav {
    gap: 6px 12px;
  }
}
.section-card--legal {
  max-width: 720px;
  margin-inline: auto;
}
.lw-legal-head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lw-border);
}
.lw-legal-sub {
  margin-top: 8px;
}
.lw-legal-updated {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--lw-subtle);
}
.lw-legal-section {
  margin-top: 22px;
}
.lw-legal-h2 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.02em;
}
.lw-legal-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--lw-muted);
  font-size: 14px;
  line-height: 1.65;
}
.lw-legal-list li {
  margin-bottom: 10px;
}
.lw-legal-list li:last-child {
  margin-bottom: 0;
}
.lw-legal-callout {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: var(--lw-radius-md);
  border: 1px solid rgba(250, 204, 21, 0.22);
  background: rgba(250, 204, 21, 0.06);
}
.lw-legal-callout p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(241, 245, 249, 0.88);
}
.landing-section--hero:hover .hero-icon {
  transform: translateY(-3px);
  border-color: var(--lw-border-hover);
}
.lw-product {
  max-width: 1100px;
  margin: 0 auto;
}
.lw-product-back {
  margin: 0 0 16px;
}
.lw-link-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lw-muted);
  font-size: var(--lw-font-sm);
  transition: color 0.2s ease;
}
.lw-link-back__arrow {
  font-size: 1.1em;
  line-height: 1;
}
.lw-link-back:hover {
  color: var(--lw-text);
}
.lw-product-head {
  margin-bottom: 20px;
}
.lw-product-title {
  margin: 0;
  font-size: clamp(24px, 3.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.lw-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lw-product-price-hero {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-md);
  background: #000;
}
.lw-product-price-hero-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lw-subtle);
  margin-bottom: 8px;
}
.lw-product-price-hero-value {
  display: block;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: #fafafa;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.lw-product-cta {
  margin-top: 16px;
}
.lw-product-cta--inline {
  margin-top: 20px;
  margin-bottom: 0;
}
.lw-price-table {
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.lw-price-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--lw-border);
  font-size: 14px;
}
.lw-price-table-row:last-child {
  border-bottom: none;
}
.lw-price-table-label {
  color: var(--lw-text);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
}
.lw-price-table-stock {
  font-weight: 500;
  color: var(--lw-muted);
  white-space: nowrap;
}
.lw-price-table-row--display .lw-price-table-label {
  color: var(--lw-muted);
}
.lw-tier-option-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
}
.lw-tier-option-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}
.lw-tier-option-text .lw-price-table-label {
  flex: 0 1 auto;
  min-width: 0;
  width: 100%;
}
.lw-price-table-aside {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 8px;
  padding-right: 2px;
  text-align: right;
}
.lw-price-table-prices .lw-money {
  justify-content: flex-end;
}
.lw-price-table-prices {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
}
.lw-price-table-value--was {
  text-decoration: line-through;
  color: var(--lw-subtle);
  font-size: 13px;
  font-weight: 500;
}
.lw-price-table-value--sale {
  color: #86efac;
  font-weight: 700;
}
.lw-product-promo-discount-badge {
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid rgba(96, 165, 250, 0.4);
  background: rgba(37, 99, 235, 0.14);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.lw-price-table-value {
  color: #ececef;
  font-weight: 600;
  font-size: 14px;
  text-align: right;
  line-height: 1.35;
  white-space: nowrap;
}
.lw-form--product-buy label.lw-price-table-row--select {
  display: block;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  color: inherit;
}
.lw-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lw-price-tier-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.lw-tier-popular-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  color: #fef3c7;
  background: rgba(251, 191, 36, 0.16);
  border: 1px solid rgba(251, 191, 36, 0.38);
  white-space: nowrap;
}
.lw-price-table-row--select,
.lw-price-table-row--display {
  cursor: default;
}
.lw-price-table-row--select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px 16px;
  cursor: pointer;
  margin: 0;
  transition: background 0.12s ease;
}
.lw-price-table-row--select:hover {
  background: rgba(255, 255, 255, 0.035);
}
.lw-price-table-row--select:has(.lw-tier-input:focus-visible) {
  outline: 2px solid var(--lw-accent, #93c5fd);
  outline-offset: -2px;
}
.lw-price-table-row--select:has(.lw-tier-input:checked) {
  background: rgba(255, 255, 255, 0.05);
}
.lw-tier-radio-cell {
  position: relative;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  align-self: center;
}
.lw-tier-input {
  position: absolute;
  inset: 0;
  width: 22px;
  height: 22px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.lw-tier-radio-ui {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  pointer-events: none;
  transition: border-color 0.15s ease;
}
.lw-price-table-row--select:hover .lw-tier-radio-ui {
  border-color: rgba(255, 255, 255, 0.48);
}
.lw-price-table-row--select:has(.lw-tier-input:checked) .lw-tier-radio-ui {
  border-color: var(--lw-accent, #93c5fd);
}
.lw-price-table-row--select:has(.lw-tier-input:checked) .lw-tier-radio-ui::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--lw-accent, #93c5fd);
}
.lw-form--product-buy .lw-price-tier-fieldset {
  margin-bottom: 14px;
}
.lw-form--product-buy .lw-price-table--readonly {
  margin-bottom: 14px;
}
.lw-product-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.lw-product-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
@media (min-width: 900px) {
  .lw-product-block--main .lw-product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    column-gap: 28px;
    row-gap: 24px;
    align-items: start;
  }
  .lw-product-block--main .lw-product-top,
  .lw-product-block--main .lw-product-desc-req {
    display: contents;
  }
  .lw-product-block--main .lw-product-lead {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .lw-product-block--main .lw-product-cell--video {
    grid-column: 1;
    grid-row: 2;
  }
  .lw-product-block--main .lw-product-cell--buy {
    grid-column: 2;
    grid-row: 2;
  }
  .lw-product-block--main .lw-product-cell--desc {
    grid-column: 1;
    grid-row: 3;
  }
  .lw-product-block--main .lw-product-cell--req {
    grid-column: 2;
    grid-row: 3;
  }
}
.lw-product-lead {
  min-width: 0;
}
.lw-product-lead .lw-purchase-warning--lead {
  margin-bottom: 0;
}
.lw-product-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}
.lw-product-desc-req {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  min-width: 0;
  width: 100%;
}
.lw-product-cell {
  min-width: 0;
}
.lw-product-cell--video,
.lw-product-cell--buy,
.lw-product-cell--desc,
.lw-product-cell--req {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.lw-product-cell--video {
  gap: 0;
  min-height: 0;
}
.lw-product-cell--buy .lw-product-side-block--pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 0;
  border-top: none;
}
.lw-empty-hint--tight {
  padding: 12px 14px;
}
.lw-product-block {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--lw-border);
}
.lw-product-block--main {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.lw-product-block#reviews {
  scroll-margin-top: 96px;
  --lw-reviews-content-max: min(560px, 100%);
}
.lw-product-block#reviews > .lw-form--review,
.lw-product-block#reviews > .lw-review-login-hint,
.lw-product-block#reviews > .lw-reviews-empty,
.lw-product-block#reviews > .lw-reviews-pager {
  max-width: var(--lw-reviews-content-max);
}
.lw-product-h2 {
  margin: 0 0 12px;
  padding: 0;
  min-height: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.35;
  color: var(--lw-subtle);
}
.lw-product-cell--buy .lw-price-table,
.lw-product-cell--buy .lw-form--product-buy .lw-price-tier-fieldset,
.lw-product-cell--buy .lw-form--product-buy .lw-price-table--readonly {
  margin-top: 0;
}
.lw-empty-hint {
  margin: 0;
  font-size: var(--lw-font-sm);
  line-height: 1.6;
  color: var(--lw-muted);
  padding: 16px 18px;
  border: 1px dashed var(--lw-border);
  border-radius: var(--lw-radius-md);
  background: rgba(255, 255, 255, 0.02);
}
.lw-prose--product {
  font-size: 15px;
  line-height: 1.65;
}
.lw-form-label {
  display: block;
  font-size: 12px;
  color: var(--lw-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.lw-star-row .lw-star-rating {
  margin-top: 2px;
}
.lw-star-rating {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.lw-star-rating input[name="rating"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.lw-star-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  padding: 2px 6px;
  color: #353945;
  transition: color 0.15s ease, transform 0.12s ease;
}
.lw-star-btn.is-on {
  color: #e8c547;
}
.lw-star-btn:hover,
.lw-star-btn:focus-visible {
  color: #f0d576;
  outline: none;
}
.lw-star-btn:active {
  transform: scale(0.94);
}
.lw-prose {
  color: #c4c9d4;
  font-size: var(--lw-font-sm);
  line-height: 1.65;
}
.lw-field-hint {
  margin: 0 0 14px;
  font-size: var(--lw-font-xs);
  color: var(--lw-subtle);
  line-height: 1.45;
}
.lw-video-slider {
  width: 100%;
  margin-top: 0;
}
.lw-video-slider-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: var(--lw-radius-md);
}
.lw-video-slider-track {
  display: flex;
  width: calc(var(--n, 1) * 100%);
  transform: translate3d(calc(-100% * var(--i, 0) / var(--n, 1)), 0, 0);
  transition: transform 0.42s cubic-bezier(0.33, 1, 0.68, 1);
}
.lw-video-slide {
  flex: 0 0 calc(100% / var(--n, 1));
  min-width: 0;
  box-sizing: border-box;
}
.lw-video-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.lw-video-slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--lw-border);
  background: rgba(255, 255, 255, 0.04);
  color: #fafafa;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.lw-video-slider-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--lw-border-hover);
}
.lw-video-slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.lw-video-slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.lw-video-slider-dot.is-active {
  background: #e8e8e8;
  transform: scale(1.25);
}
.lw-video-slider-dot:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.45);
  outline-offset: 3px;
}
.lw-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--lw-radius-md);
  overflow: hidden;
  border: 1px solid var(--lw-border);
  background: #000;
}
.lw-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.lw-video-frame.lw-yt-facade {
  cursor: default;
}
.lw-form--review-top {
  margin-top: 0;
  margin-bottom: 24px;
}
.lw-review-login-hint--top {
  margin-top: 0;
  margin-bottom: 20px;
}
.lw-reviews-empty {
  margin: 0;
}
.lw-reviews-pager {
  margin-top: 4px;
}
.lw-reviews-pager-viewport {
  overflow: hidden;
  touch-action: pan-y;
  transition: height 0.35s ease;
}
.lw-reviews-pager-track {
  display: flex;
  align-items: flex-start;
  width: 100%;
  transition: transform 0.35s ease;
  transform: translateX(calc(var(--i, 0) * -100%));
}
.lw-reviews-pager-page {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
}
.lw-reviews-pager-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.lw-reviews-pager-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--lw-border);
  background: rgba(255, 255, 255, 0.04);
  color: #fafafa;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.lw-reviews-pager-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--lw-border-hover);
}
.lw-reviews-pager-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.lw-reviews-pager-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.lw-reviews-pager-dot.is-active {
  background: #e8e8e8;
  transform: scale(1.25);
}
.lw-reviews-pager-dot:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.45);
  outline-offset: 3px;
}
.lw-review-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lw-reviews-pager-page .lw-review-list {
  margin-top: 0;
}
.lw-review-item {
  padding: 18px 20px;
  border: 1px solid var(--lw-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.lw-review-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 16px;
}
.lw-review-item__title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.lw-review-item__stars {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.lw-review-item__author-block {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 200px;
  min-width: 0;
}
.lw-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
}
.lw-review-item__avatar--sm {
  width: 22px;
  height: 22px;
}
.lw-review-item__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}
.lw-review-item__author {
  font-size: var(--lw-font-sm);
  font-weight: 600;
  color: var(--lw-text);
}
.lw-review-item__date {
  font-size: var(--lw-font-xs);
  color: var(--lw-subtle);
}
.lw-review-body {
  margin: 14px 0 0;
  font-size: var(--lw-font-sm);
  color: #c9ced8;
  line-height: 1.6;
}
.lw-review-reply {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border-left: 3px solid rgba(147, 197, 253, 0.45);
  background: rgba(147, 197, 253, 0.06);
}
.lw-review-reply__label {
  margin: 0 0 6px;
  font-size: var(--lw-font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #bfdbfe;
}
.lw-review-reply__by {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--lw-subtle);
}
.lw-review-reply__by-inner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lw-review-reply__text {
  margin: 0;
  font-size: var(--lw-font-sm);
  line-height: 1.55;
  color: #d4dae4;
}
.lw-review-reply__date {
  margin: 8px 0 0;
  font-size: var(--lw-font-xs);
  color: var(--lw-subtle);
}
.lw-review-reply-form {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--lw-border);
}
.lw-review-reply-form__label {
  display: block;
  margin: 0 0 8px;
  font-size: var(--lw-font-xs);
  font-weight: 600;
  color: var(--lw-subtle);
}
.lw-review-reply-form textarea {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 72px;
  padding: 10px 12px;
  font: inherit;
  font-size: var(--lw-font-sm);
  line-height: 1.45;
  border-radius: 8px;
  border: 1px solid var(--lw-border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--lw-text);
  resize: vertical;
}
.lw-review-reply-form__btn {
  margin-top: 10px;
}
.lw-review-meta {
  margin: 0;
  font-size: var(--lw-font-xs);
  color: var(--lw-subtle);
}
.lw-review-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  margin-top: 8px;
}
.lw-review-delete-form {
  margin: 0;
  flex-shrink: 0;
}
.lw-review-delete {
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 11px;
  border-radius: 8px;
  border: 1px solid rgba(248, 113, 113, 0.38);
  background: rgba(248, 113, 113, 0.09);
  color: #fecaca;
}
.lw-review-delete:hover {
  border-color: rgba(252, 165, 165, 0.55);
  background: rgba(248, 113, 113, 0.14);
}
.lw-review-edited {
  color: var(--lw-subtle);
}
.lw-form--review {
  margin-top: 0;
  padding: 22px 20px;
  border: 1px solid var(--lw-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.lw-form--review textarea {
  width: 100%;
  max-width: none;
  padding: 10px 12px;
  font-size: var(--lw-font-sm);
  line-height: 1.5;
}
.lw-btn-review-submit {
  display: inline-block;
  width: auto;
  margin-top: 10px;
  padding: 5px 16px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(226, 232, 240, 0.78);
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
.lw-btn-review-submit:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
}
.lw-btn-review-submit:focus-visible {
  outline: 2px solid var(--lw-accent, #93c5fd);
  outline-offset: 2px;
}
.lw-form-review-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 600;
  color: #fafafa;
}
.lw-review-bonus-hint {
  margin: -6px 0 14px;
  font-size: var(--lw-font-sm);
  line-height: 1.45;
  color: var(--lw-muted);
}
.lw-review-login-hint {
  margin-top: 12px;
}
@media (max-width: 980px) {
  .lw-grid.cols-4,
  .lw-grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .lw-grid.cols-4,
  .lw-grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .landing-wrap {
    width: calc(100% - 28px);
  }
  .lw-lang-float {
    right: 10px;
    bottom: 10px;
    flex-wrap: wrap;
  }
}
.lw-account-deposit-return {
  margin: 0;
}
.lw-account-balance-limits {
  margin: 0 0 14px;
  font-size: 13px;
}
.lw-account-balance-form {
  margin-top: 4px;
}
.lw-deposit-dialog {
  width: min(600px, calc(100vw - 24px));
  max-width: calc(100vw - 16px);
}
.lw-deposit-dialog:has(.lw-deposit-layout--single) {
  width: min(440px, calc(100vw - 24px));
}
.lw-deposit-dialog__panel {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(22, 22, 26, 0.98) 0%, rgba(10, 10, 12, 0.99) 100%);
  border: 1px solid var(--lw-glass-border);
  border-radius: var(--lw-radius-xl);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.lw-deposit-dialog__close {
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}
.lw-deposit-dialog__title {
  margin: 0;
  padding: 22px 52px 18px 24px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fafafa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.lw-support-dialog {
  width: min(480px, calc(100vw - 24px));
  max-width: calc(100vw - 16px);
}
.lw-support-dialog__panel {
  padding: 22px 22px 20px;
  background: linear-gradient(165deg, rgba(22, 22, 26, 0.98) 0%, rgba(10, 10, 12, 0.99) 100%);
  border: 1px solid var(--lw-glass-border);
  border-radius: var(--lw-radius-xl);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.lw-support-dialog__close {
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}
.lw-support-dialog__title {
  margin: 0 36px 8px 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #fafafa;
}
.lw-support-dialog__lead {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--lw-muted);
}
.lw-support-dialog__choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-support-choice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.lw-support-choice:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}
.lw-support-choice:focus-visible {
  outline: 2px solid rgba(245, 230, 184, 0.45);
  outline-offset: 2px;
}
.lw-support-choice--discord:hover {
  border-color: rgba(88, 101, 242, 0.45);
  background: rgba(88, 101, 242, 0.1);
}
.lw-support-choice--email:hover {
  border-color: rgba(201, 162, 39, 0.4);
  background: rgba(201, 162, 39, 0.08);
}
.lw-support-choice__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #e4e4e7;
}
.lw-support-choice--discord .lw-support-choice__icon {
  color: #a5b4fc;
  background: rgba(88, 101, 242, 0.14);
}
.lw-support-choice--email .lw-support-choice__icon {
  color: #fde68a;
  background: rgba(201, 162, 39, 0.12);
}
.lw-support-choice__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lw-support-choice__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #fafafa;
}
.lw-support-choice__desc {
  font-size: 13px;
  line-height: 1.4;
  color: var(--lw-muted);
  overflow-wrap: anywhere;
}
.lw-support-choice__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  color: rgba(255, 255, 255, 0.35);
}
.lw-support-choice:hover .lw-support-choice__arrow {
  color: rgba(255, 255, 255, 0.7);
}
.lw-deposit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin: 0;
  min-height: 0;
}
.lw-deposit-layout--single {
  grid-template-columns: minmax(0, 1fr);
}
.lw-deposit-section-label {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.lw-deposit-layout__methods {
  min-width: 0;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
}
.lw-deposit-methods {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
  flex: 1 1 auto;
}
.lw-deposit-layout__methods .lw-deposit-methods__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lw-deposit-card {
  display: block;
  position: relative;
  margin: 0;
  cursor: pointer;
}
.lw-deposit-card__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lw-deposit-card__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}
.lw-deposit-card__head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  width: 100%;
}
.lw-deposit-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
.lw-deposit-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.lw-deposit-card:hover .lw-deposit-card__body {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}
.lw-deposit-card:has(.lw-deposit-card__input:checked) .lw-deposit-card__body {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}
.lw-deposit-card:has(.lw-deposit-card__input:focus-visible) .lw-deposit-card__body {
  outline: 2px solid rgba(248, 250, 252, 0.22);
  outline-offset: 1px;
}
.lw-deposit-card__title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #fafafa;
  letter-spacing: -0.01em;
}
.lw-deposit-card__badge {
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(251, 191, 36, 0.14);
  color: #fbbf24;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}
.lw-deposit-card__sbp {
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(59, 130, 246, 0.16);
  color: #93c5fd;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}
.lw-deposit-card__min {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: rgba(161, 161, 170, 0.95);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.lw-deposit-card__desc {
  font-size: 11px;
  line-height: 1.4;
  color: var(--lw-muted);
}
.lw-deposit-layout__pay {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  min-width: 0;
  padding: 20px 24px;
}
.lw-deposit-pay__single-method {
  margin: 0;
}
.lw-deposit-pay__amount-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lw-deposit-dialog__limits {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.4;
}
.lw-deposit-amount__controls {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: stretch;
  gap: 8px;
}
.lw-deposit-amount__controls .lw-deposit-amount__input-wrap {
  min-width: 0;
}
.lw-deposit-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  color: #e4e4e7;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-deposit-step:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fafafa;
}
.lw-deposit-step:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.3);
  outline-offset: 2px;
}
.lw-deposit-presets {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}
.lw-deposit-preset {
  appearance: none;
  -webkit-appearance: none;
  min-width: 0;
  padding: 8px 4px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  background: transparent;
  color: var(--lw-muted);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-deposit-preset:hover:not(:disabled) {
  border-color: var(--lw-border-hover);
  color: var(--lw-text);
  background: rgba(255, 255, 255, 0.06);
}
.lw-deposit-preset.is-active:not(:disabled) {
  border-color: var(--lw-border-hover);
  background: rgba(255, 255, 255, 0.08);
  color: var(--lw-text);
}
.lw-deposit-preset:disabled,
.lw-deposit-preset.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.lw-deposit-credit {
  margin: 10px 0 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  color: rgba(161, 161, 170, 0.95);
  font-variant-numeric: tabular-nums;
}
.lw-deposit-bonus__note {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
}
.lw-deposit-bonus__note[hidden] {
  display: none;
}
.lw-deposit-pay__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}
.lw-deposit-submit {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 13px 18px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #4ade80 0%, #16a34a 100%);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  cursor: pointer;
  color-scheme: dark;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.32);
  transition:
    filter 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.15s ease,
    transform 0.12s ease;
}
.lw-deposit-submit:hover:not(:disabled) {
  filter: brightness(1.06);
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.4);
}
.lw-deposit-submit:active:not(:disabled) {
  transform: translateY(1px);
}
.lw-deposit-submit:focus-visible {
  outline: 2px solid rgba(134, 239, 172, 0.7);
  outline-offset: 2px;
}
.lw-deposit-history {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: rgba(161, 161, 170, 0.95);
  text-decoration: none;
  transition: color 0.15s ease;
}
.lw-deposit-history:hover {
  color: #fafafa;
}
.lw-deposit-footer {
  padding: 14px 24px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  background: rgba(0, 0, 0, 0.18);
}
.lw-deposit-footer__hint {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--lw-subtle);
}
.lw-deposit-footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
}
.lw-deposit-paymark__img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 22px;
  max-height: 24px;
  object-fit: contain;
  object-position: center;
  opacity: 0.92;
}
.lw-deposit-paymark__img--sbp {
  height: 24px;
}
.lw-deposit-paymark__img--usdt {
  height: 24px;
  width: 24px;
}
.lw-deposit-paymark__img--lolz {
  height: 20px;
}
.lw-deposit-amount {
  margin: 0;
}
.lw-deposit-amount__input-wrap {
  position: relative;
  width: 100%;
}
.lw-deposit-amount__input {
  width: 100%;
  box-sizing: border-box;
  height: 48px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  color: #fafafa;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  font-variant-numeric: tabular-nums;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-deposit-amount__input:hover {
  border-color: var(--lw-border-hover);
}
.lw-deposit-amount__input:focus {
  outline: none;
  border-color: rgba(212, 212, 212, 0.35);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}
.lw-deposit-amount__suffix {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 600;
  color: var(--lw-subtle);
  pointer-events: none;
}
.lw-deposit-amount.is-invalid .lw-deposit-amount__input {
  border-color: #f87171;
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.18);
}
.lw-deposit-amount.is-valid .lw-deposit-amount__input {
  border-color: rgba(212, 212, 212, 0.28);
}
.lw-deposit-amount__input::placeholder {
  color: rgba(255, 255, 255, 0.28);
  font-weight: 500;
}
.lw-deposit-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
@media (max-width: 860px) {
  .lw-deposit-dialog {
    width: min(100vw - 12px, 440px);
  }
  .lw-deposit-layout {
    grid-template-columns: 1fr;
  }
  .lw-deposit-layout__methods {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 18px;
  }
  .lw-deposit-layout__pay {
    gap: 18px;
  }
  .lw-deposit-pay__amount-block {
    margin-top: 0;
  }
}
.lw-account-shell {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
  align-items: stretch;
  min-width: 0;
}
.lw-account-shell__head {
  width: 100%;
  margin: 0;
  padding: 0;
  scroll-margin-top: calc(72px + var(--lw-safe-top, 0px) + 12px);
}
.lw-account-shell__head.lw-account-main__head {
  margin-bottom: 0;
}
.lw-account-shell__body {
  display: grid;
  grid-template-columns: minmax(0, 248px) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
  min-width: 0;
}
.lw-account-sidebar {
  position: sticky;
  top: calc(72px + var(--lw-safe-top, 0px));
  min-width: 0;
}
.lw-account-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: var(--lw-radius-xl);
  border: 1px solid var(--lw-glass-border);
  background: var(--lw-glass-bg);
  box-shadow: var(--lw-glass-shadow);
}
.lw-account-sidebar__label {
  margin: 0 0 4px;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.lw-account-sidebar__label--admin {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
  color: #d4d4d8;
  padding: 8px;
  margin: 8px 0 2px;
  border-radius: 10px;
}
.lw-account-sidebar__admin-mark {
  display: inline-flex;
  color: var(--lw-account-accent-muted);
}
.lw-account-sidebar__admin {
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 8px;
}
.lw-account-sidebar__admin > summary::-webkit-details-marker {
  display: none;
}
.lw-account-sidebar__admin[open] > summary {
  color: var(--lw-text);
}
.lw-account-sidebar__admin-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}
.lw-account-sidebar__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 11px;
  border: 1px solid transparent;
  color: var(--lw-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.lw-account-sidebar__link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--lw-text);
}
.lw-account-sidebar__link.is-active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--lw-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.lw-account-sidebar__link.is-active::before {
  display: none;
}
.lw-account-sidebar__link--admin.is-active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--lw-text);
}
.lw-account-sidebar__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--lw-account-accent-muted);
}
.lw-account-sidebar__icon svg {
  display: block;
}
.lw-account-sidebar__link.is-active .lw-account-sidebar__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--lw-account-accent);
}
.lw-account-sidebar__text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-account-main {
  min-width: 0;
  width: 100%;
}
.lw-account-main > .lw-account-pane {
  min-width: 0;
  width: 100%;
}
.lw-account-main .section-card {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.lw-account-main__head {
  margin-bottom: 14px;
}
.lw-account-main__title {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 3.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fafafa;
  line-height: 1.15;
}
.lw-account-main__lead {
  margin: 0;
  max-width: 56ch;
  font-size: 14px;
  line-height: 1.55;
}
.lw-account-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: "profile promo";
  gap: 14px;
  align-items: start;
}
.lw-account-settings-grid > .lw-account-card--profile {
  grid-area: profile;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  overflow: visible;
}
.lw-account-settings-grid > .lw-account-card--promo {
  grid-area: promo;
  max-width: none;
  width: 100%;
  align-self: start;
}
.lw-account-security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.lw-account-security-grid > .lw-account-card--social {
  grid-column: 1 / -1;
}
.lw-account-security-grid > .lw-account-card--security {
  grid-column: 1 / -1;
}
.lw-account-settings-grid > .section-card,
.lw-account-security-grid > .section-card {
  padding: 18px 20px;
  margin: 0;
  border: 1px solid var(--lw-glass-border);
  border-radius: var(--lw-radius-lg);
  background: var(--lw-glass-bg);
  box-shadow: var(--lw-glass-shadow);
  box-sizing: border-box;
}
.lw-account-card__heading {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.lw-account-card__heading--inline {
  margin-bottom: 4px;
}
.lw-account-avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: var(--lw-text);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
.lw-profile-compact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  flex: 0 1 auto;
}
.lw-account-card--profile .lw-account-card__heading {
  margin-bottom: 0;
}
.lw-profile-compact__top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 12px;
  min-width: 0;
}
.lw-profile-compact__who {
  flex: 1 1 auto;
  min-width: 0;
}
.lw-profile-compact__balance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.lw-profile-compact__balance-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
}
.lw-profile-compact__balance-value {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fafafa;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.lw-profile-compact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  margin: 0;
  padding: 10px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-profile-compact__cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 10px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  min-width: 0;
}
.lw-profile-compact__cell dt {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  color: var(--lw-muted);
  line-height: 1.3;
}
.lw-profile-compact__cell dd {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--lw-text);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.lw-account-promo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.lw-account-promo-bar__body {
  flex: 1 1 200px;
  min-width: 0;
}
.lw-account-promo-bar__hint,
.lw-account-card--promo .lw-account-promo-bar__hint {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--lw-muted);
}
.lw-account-promo-notice {
  margin: 0 0 12px;
}
.lw-account-promo-bar__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.lw-account-promo-bar .lw-glass-notice--compact {
  margin: 0 0 6px;
}
.lw-account-card--promo .lw-profile-card__promo-btn,
.lw-account-promo-bar .lw-promo-open-btn {
  margin: 0;
  padding: 8px 16px;
  font-size: 12px;
}
.lw-promo-redeem-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.lw-promo-redeem-inline__input {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--lw-radius-sm);
  background: rgba(0, 0, 0, 0.35);
  color: #fafafa;
  font-size: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.04em;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lw-promo-redeem-inline__input::placeholder {
  color: #71717a;
  font-family: inherit;
  letter-spacing: normal;
}
.lw-promo-redeem-inline__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}
.lw-promo-redeem-inline__submit {
  flex-shrink: 0;
  min-height: 36px;
  padding: 6px 14px;
  white-space: nowrap;
}
.lw-account-card--promo .lw-promo-redeem-inline__input {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 13px;
}
.lw-account-card--promo .lw-promo-redeem-inline {
  gap: 8px;
}
.lw-account-card--security .lw-form--account .hero-btn.hero-btn--sm.lw-account-btn,
.lw-account-card--security .lw-form--account button.hero-btn.hero-btn--sm.lw-account-btn {
  align-self: flex-start;
  width: auto;
  max-width: 100%;
  min-height: 0;
  margin-top: 2px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  border-radius: 8px;
}
.lw-profile-card__email-inline {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-profile-card__user-row {
  align-items: center;
}
.lw-account-card--security {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lw-account-card--security .lw-account-security-block {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lw-account-card--security .lw-account-security-block:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.lw-account-card--security .lw-account-h3 {
  margin: 0 0 8px;
  font-size: 13px;
}
.lw-account-card--security .lw-form--account .row {
  margin-bottom: 8px;
}
.lw-account-card--security .lw-form--account .row:last-of-type {
  margin-bottom: 10px;
}
.lw-account-card--security .lw-form--account input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--lw-radius-sm);
  background: rgba(0, 0, 0, 0.35);
  color: #fafafa;
  font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lw-account-card--security .lw-form--account input[type="password"]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}
.lw-account-card--security .lw-form--account label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lw-muted);
}
.lw-account-card--security .lw-account-email-locked,
.lw-account-card--security .lw-account-email-card-hint {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.45;
}
.lw-account-card--promo .lw-profile-card__promo {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.lw-profile-card--compact .lw-profile-card__head {
  padding: 0;
  border: none;
  margin: 0;
}
.lw-profile-card--compact .lw-profile-card__topup {
  padding: 6px 12px;
  font-size: 11px;
}
.lw-account-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
  margin-bottom: 4px;
  min-width: 0;
}
.lw-account-nav__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-account-nav__group--admin {
  padding: 14px 16px;
  border-radius: var(--lw-radius-md);
  border: 1px solid rgba(251, 191, 36, 0.22);
  background: linear-gradient(145deg, rgba(180, 83, 9, 0.08) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.lw-account-nav__label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.lw-account-nav__label--admin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fcd34d;
}
.lw-account-nav__admin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
}
.lw-account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lw-account-tabs--admin {
  gap: 8px;
}
.lw-account-tab {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--lw-border);
  color: var(--lw-muted);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-account-tab:hover {
  border-color: var(--lw-border-hover);
  background: rgba(255, 255, 255, 0.06);
  color: var(--lw-text);
}
.lw-account-tab.is-active {
  border-color: rgba(212, 212, 212, 0.45);
  color: var(--lw-text);
  background: rgba(255, 255, 255, 0.08);
}
.lw-account-tab--admin {
  border-color: rgba(251, 191, 36, 0.2);
  background: rgba(251, 191, 36, 0.04);
  color: #fde68a;
}
.lw-account-tab--admin:hover {
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.1);
  color: #fef3c7;
}
.lw-account-tab--admin.is-active {
  border-color: rgba(251, 191, 36, 0.55);
  color: #fffbeb;
  background: rgba(217, 119, 6, 0.28);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.12);
}
.lw-account-pane[hidden] {
  display: none !important;
}
.lw-account-pane:not([hidden]) {
  margin-top: 0;
}
.lw-account-card--topups {
  max-width: 100%;
}
.lw-account-card--topups.lw-account-card--purchases {
  max-width: 100%;
}
.lw-account-card--ledger {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--lw-glass-border);
  border-radius: var(--lw-radius-xl);
  background: var(--lw-glass-bg);
  box-shadow: var(--lw-glass-shadow);
}
.lw-account-ledger--topups {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.lw-account-ledger__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px 28px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.14) 100%);
}
.lw-account-ledger--topups .lw-account-ledger__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  align-items: start;
  column-gap: 32px;
  row-gap: 8px;
}
.lw-account-ledger__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}
.lw-account-ledger__stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-subtle);
  line-height: 1.3;
}
.lw-account-ledger__stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fafafa;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}
.lw-account-ledger__stat-value--muted {
  font-size: 14px;
  font-weight: 600;
  color: var(--lw-muted);
}
.lw-account-ledger--topups .lw-account-ledger__stat-value--muted {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--lw-muted);
}
.lw-account-ledger__topup {
  margin-left: auto;
  flex-shrink: 0;
}
.lw-account-ledger__list {
  list-style: none;
  margin: 0;
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lw-account-ledger__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.lw-account-ledger__row:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.lw-account-ledger__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--lw-account-accent-muted, #9ca3af);
}
.lw-account-ledger__icon--payment {
  color: #d4d4d8;
}
.lw-account-ledger__icon--promo {
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.06);
}
.lw-account-ledger__icon--bonus {
  color: #fbbf24;
  background: rgba(234, 179, 8, 0.1);
  border-color: rgba(250, 204, 21, 0.22);
}
.lw-account-ledger__icon--admin {
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(167, 139, 250, 0.28);
}
.lw-account-ledger__icon--admin-debit {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(248, 113, 113, 0.25);
}
.lw-account-ledger__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lw-account-ledger__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--lw-text);
  line-height: 1.35;
}
.lw-account-ledger__meta {
  font-size: 12px;
  color: var(--lw-muted);
  line-height: 1.35;
  font-variant-numeric: tabular-nums;
}
.lw-account-ledger__amount {
  font-size: 14px;
  font-weight: 700;
  color: #86efac;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.lw-account-ledger__amount--debit {
  color: #f87171;
}
.lw-account-ledger__amount--promo-disc {
  color: #fde68a;
}
.lw-account-ledger__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(32px, 8vw, 48px) 20px;
  text-align: center;
}
.lw-account-ledger__empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid var(--lw-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--lw-muted);
}
.lw-account-ledger__empty-title {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--lw-text);
}
.lw-account-ledger__empty-hint {
  margin: 0;
  max-width: 36ch;
  font-size: 13px;
  line-height: 1.5;
}
.lw-account-ledger--purchases {
  overflow: hidden;
}
.lw-account-ledger__summary--purchases {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 20px;
  padding: 18px 20px;
}
.lw-account-ledger__summary--purchases .lw-account-ledger__summary-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 28px;
  min-width: 0;
}
.lw-account-ledger__summary--purchases .lw-account-ledger__stat {
  flex: 0 0 auto;
  min-width: 72px;
}
.lw-account-ledger__summary--purchases .lw-account-ledger__stat-label {
  display: block;
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-subtle);
  line-height: 1.2;
}
.lw-account-ledger__summary--purchases .lw-account-ledger__stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fafafa;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.lw-account-ledger__summary--purchases .lw-account-ledger__topup {
  margin-left: 0;
  align-self: center;
  white-space: nowrap;
}
.lw-account-purchase-list {
  list-style: none;
  margin: 0;
  padding: 12px 14px 16px;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 9.75rem minmax(12rem, 1fr) auto;
  column-gap: 20px;
  row-gap: 10px;
}
.lw-account-ledger--purchases {
  overflow: visible;
}
.lw-account-purchase-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  position: relative;
  overflow: visible;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045) 0%, rgba(0, 0, 0, 0.28) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-account-purchase-row:hover {
  border-color: rgba(255, 255, 255, 0.13);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.32) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.18);
}
.lw-account-purchase-row__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.lw-account-purchase-row__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--lw-text);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.lw-account-purchase-row__meta-date {
  font-size: 12px;
  color: var(--lw-muted);
  line-height: 1.35;
  font-variant-numeric: tabular-nums;
}
.lw-account-purchase-row__meta-detail {
  font-size: 12px;
  color: rgba(161, 161, 170, 0.92);
  line-height: 1.35;
  font-variant-numeric: tabular-nums;
}
.lw-account-purchase-row__remaining {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 1px;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.22);
  font-variant-numeric: tabular-nums;
}
.lw-account-purchase-row__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--lw-muted);
  white-space: nowrap;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}
.lw-account-purchase-row__status--activated {
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(74, 222, 128, 0.24);
}
.lw-account-purchase-row__status--pending {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(147, 197, 253, 0.24);
}
.lw-account-purchase-row__status--expired {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(248, 113, 113, 0.22);
}
.lw-account-purchase-row__status--frozen {
  color: #67e8f9;
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(103, 232, 249, 0.22);
}
.lw-account-purchase-row__status--unfulfilled {
  color: #fcd34d;
  background: rgba(234, 179, 8, 0.1);
  border-color: rgba(252, 211, 77, 0.22);
}
.lw-account-purchase-row__status--removed {
  color: #f87171;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(248, 113, 113, 0.22);
}
.lw-account-purchase-row__key {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.lw-account-purchase-row__key .lw-purchase-key-text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  color: #e4e4e7;
  letter-spacing: 0.03em;
}
.lw-account-purchase-row__key .lw-muted {
  flex: 1 1 auto;
  min-width: 0;
}
.lw-account-purchase-row__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  min-width: 0;
  justify-self: end;
  position: relative;
  flex-shrink: 0;
}
.lw-purchase-menu__slot {
  display: inline-flex;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}
.lw-purchase-menu__slot--empty {
  visibility: hidden;
  pointer-events: none;
}
.lw-purchase-menu {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}
.lw-purchase-menu.is-open {
  z-index: 30;
}
.lw-purchase-menu__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--lw-muted);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.lw-purchase-menu__toggle:hover,
.lw-purchase-menu.is-open .lw-purchase-menu__toggle {
  background: rgba(255, 255, 255, 0.06);
  color: #fafafa;
}
.lw-purchase-menu__toggle:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
.lw-purchase-menu__panel {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: auto;
  z-index: 40;
  box-sizing: border-box;
  width: max-content;
  min-width: 148px;
  max-width: min(220px, calc(100vw - 20px));
  margin: 0;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #121214;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.lw-purchase-menu__panel[hidden] {
  display: none !important;
}
.lw-purchase-menu__item {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 7px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #e4e4e7;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}
button.lw-purchase-menu__item {
  appearance: none;
  -webkit-appearance: none;
}
.lw-purchase-menu__item:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fafafa;
}
.lw-purchase-menu__item--disabled {
  padding: 7px 10px;
  cursor: default;
  opacity: 1;
  white-space: normal;
}
.lw-purchase-menu__item--disabled:hover {
  background: transparent;
  color: #e4e4e7;
}
.lw-purchase-menu__item-title {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  color: #e4e4e7;
}
.lw-purchase-menu__item-hint {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--lw-muted);
}
.lw-hwid-reset-dialog__lead {
  margin: 0 0 10px;
  font-size: 14px;
  color: #d4d4d8;
  word-break: break-word;
}
.lw-hwid-reset-dialog__warning {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(250, 204, 21, 0.28);
  background: rgba(234, 179, 8, 0.1);
  font-size: 13px;
  line-height: 1.45;
  color: #fde68a;
}
.lw-hwid-reset-dialog__actions {
  justify-content: flex-end;
  gap: 8px;
}
.lw-subscription-freeze-dialog .lw-hwid-reset-dialog__actions .lw-subscription-freeze-dialog__btn {
  padding: 5px 10px;
  min-height: 28px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}
.lw-subscription-freeze-dialog button.hero-btn.lw-subscription-freeze-dialog__btn--cancel {
  border-color: rgba(248, 113, 113, 0.55);
  background: linear-gradient(180deg, rgba(185, 28, 28, 0.72) 0%, rgba(127, 29, 29, 0.62) 100%);
  color: #fecaca;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.lw-subscription-freeze-dialog button.hero-btn.lw-subscription-freeze-dialog__btn--cancel:hover {
  border-color: rgba(252, 165, 165, 0.65);
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.82) 0%, rgba(153, 27, 27, 0.72) 100%);
  color: #fff;
}
.lw-subscription-freeze-dialog button.hero-btn.lw-subscription-freeze-dialog__btn--confirm {
  border-color: rgba(74, 222, 128, 0.55);
  background: linear-gradient(180deg, rgba(22, 163, 74, 0.78) 0%, rgba(21, 128, 61, 0.68) 100%);
  color: #ecfdf5;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}
.lw-subscription-freeze-dialog button.hero-btn.lw-subscription-freeze-dialog__btn--confirm:hover {
  border-color: rgba(134, 239, 172, 0.65);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.88) 0%, rgba(22, 163, 74, 0.78) 100%);
  color: #fff;
}
.lw-subscription-freeze-dialog button.hero-btn.lw-subscription-freeze-dialog__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}
.lw-purchase-guide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 5px 8px 5px 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #d4d4d8;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.lw-purchase-guide-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #f4f4f5;
}
.lw-purchase-guide-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}
.lw-purchase-guide-btn__frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  color: #e4e4e7;
}
.lw-purchase-guide-btn__label {
  padding-right: 2px;
}
@media (max-width: 1100px) {
  .lw-account-purchase-list {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 10px;
  }
  .lw-account-purchase-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "main status"
      "key key"
      "actions actions";
    gap: 10px 12px;
  }
  .lw-account-purchase-row:not(.lw-account-purchase-row--actions) {
    grid-template-areas:
      "main status"
      "key key";
  }
  .lw-account-purchase-row__status {
    width: auto;
    justify-self: end;
    grid-area: status;
  }
  .lw-account-purchase-row__main {
    grid-area: main;
  }
  .lw-account-purchase-row__key {
    grid-area: key;
  }
  .lw-account-purchase-row__actions {
    grid-area: actions;
  }
}
@supports not (grid-template-columns: subgrid) {
  .lw-account-purchase-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .lw-account-purchase-row {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr) 9.75rem minmax(12rem, 1fr) auto;
    column-gap: 20px;
  }
}
@media (max-width: 900px) {
  .lw-purchase-guide-btn__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .lw-purchase-guide-btn {
    padding: 5px;
  }
  .lw-account-purchase-row__actions {
    justify-content: flex-end;
    padding-top: 2px;
  }
}
.lw-account-card--purchases.lw-account-card--ledger {
  padding: 0;
  overflow: visible;
}
.lw-account-card--purchases .lw-topups-table-wrap {
  overflow: visible;
}
.lw-account-card--admin {
  max-width: 100%;
  min-width: 0;
  overflow-x: visible;
}
.lw-account-card--admin .lw-topups-table-wrap,
.lw-account-card--admin .lw-admin-user-table-wrap {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lw-radius-md);
  background: #0a0a0c;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}
.lw-account-card--admin .lw-topups-table-wrap::-webkit-scrollbar,
.lw-account-card--admin .lw-admin-user-table-wrap::-webkit-scrollbar {
  height: 6px;
}
.lw-account-card--admin .lw-topups-table-wrap::-webkit-scrollbar-thumb,
.lw-account-card--admin .lw-admin-user-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}
.lw-account-card--admin .lw-topups-table-wrap::-webkit-scrollbar-track,
.lw-account-card--admin .lw-admin-user-table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.lw-account-card--promo,
.lw-account-card--promo-admin {
  max-width: 520px;
}
.lw-account-card--promo-admin {
  max-width: 100%;
  padding: clamp(16px, 3vw, 22px);
}
.lw-promo-in-summary {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--lw-border);
}
.lw-profile-card .lw-promo-in-summary {
  margin-top: 0;
  border-top: none;
  min-width: 0;
  align-self: stretch;
}
.lw-promo-verify-hint {
  margin: 0;
  font-size: var(--lw-font-sm);
  line-height: 1.45;
}
.lw-promo-open-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-border);
  background: rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  color-scheme: dark;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-promo-open-btn:hover {
  border-color: var(--lw-border-hover);
  background: rgba(255, 255, 255, 0.08);
  color: #c4c9d4;
}
.lw-promo-open-btn:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.25);
  outline-offset: 2px;
}
.lw-promo-redeem-dialog__panel {
  max-width: 400px;
}
.lw-promo-redeem-dialog .lw-promo-redeem-form {
  margin-top: 4px;
}
.lw-account-h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--lw-text);
}
.lw-promo-redeem-form .lw-promo-redeem-row input {
  font-family: ui-monospace, Consolas, monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lw-promo-redeem-form .lw-email-dialog__actions {
  margin-top: 8px;
}
.lw-promo-redeem-submit {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  min-height: 0;
  padding: 6px 14px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  border: 1px solid var(--lw-btn-primary-border);
  border-radius: var(--lw-radius-sm);
  color: var(--lw-btn-primary-text);
  background: var(--lw-btn-primary-bg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  cursor: pointer;
  color-scheme: dark;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.12s ease;
}
.lw-promo-redeem-submit:hover {
  background: var(--lw-btn-primary-bg-hover);
  border-color: var(--lw-btn-border-hover);
  color: var(--lw-btn-primary-text);
}
.lw-promo-redeem-submit:active {
  transform: translateY(1px);
}
.lw-promo-redeem-submit:focus-visible {
  outline: 2px solid rgba(74, 222, 128, 0.65);
  outline-offset: 2px;
}
.lw-promo-redeem-form .lw-promo-redeem-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 6px 12px;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-border);
  background: rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  color-scheme: dark;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-promo-redeem-form .lw-promo-redeem-btn:hover {
  border-color: var(--lw-border-hover);
  background: rgba(255, 255, 255, 0.08);
  color: #c4c9d4;
}
.lw-promo-redeem-form .lw-promo-redeem-btn:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.25);
  outline-offset: 2px;
}
.lw-account-card--admin-users button.lw-account-btn {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}
.lw-account-email-change {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--lw-border);
}
.lw-account-email-change-hint,
.lw-account-email-locked {
  margin: 0 0 12px;
  font-size: var(--lw-font-sm);
  line-height: 1.45;
}
.lw-account-email-verified-ok {
  margin: 0 0 10px;
  font-size: var(--lw-font-sm);
  font-weight: 600;
  line-height: 1.45;
  color: #86efac;
}
.lw-account-email-change .lw-account-h3 {
  margin-bottom: 6px;
}
.lw-admin-email-form {
  max-width: 420px;
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-md);
  background: rgba(255, 255, 255, 0.02);
}
.lw-admin-promo-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--lw-border);
}
.lw-admin-promo-toolbar__label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.lw-promo-admin-create-open {
  margin: 0;
  flex-shrink: 0;
}
.lw-admin-promo-empty {
  margin-top: 8px;
}
.lw-admin-promo-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lw-radius-md);
  background: rgba(0, 0, 0, 0.22);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}
.lw-admin-promo-table-wrap::-webkit-scrollbar {
  height: 6px;
}
.lw-admin-promo-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}
.lw-admin-promo-table {
  width: 100%;
  min-width: 820px;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 13px;
}
.lw-admin-promo-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(12, 12, 14, 0.98);
  box-shadow: 0 1px 0 var(--lw-border);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lw-subtle);
  white-space: nowrap;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  vertical-align: middle;
}
.lw-admin-promo-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}
.lw-admin-promo-table tbody tr:last-child td {
  border-bottom: none;
}
.lw-admin-promo-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.lw-admin-promo-col--code {
  width: 14%;
}
.lw-admin-promo-col--type {
  width: 24%;
}
.lw-admin-promo-col--value {
  width: 11%;
}
.lw-admin-promo-col--used {
  width: 10%;
}
.lw-admin-promo-col--expires {
  width: 17%;
}
.lw-admin-promo-col--status {
  width: 11%;
}
.lw-admin-promo-col--action {
  width: 96px;
}
.lw-admin-promo-cell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-promo-code-chip {
  display: inline-block;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #e4e4e7;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-admin-promo-cell--value,
.lw-admin-promo-table th:nth-child(3) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.lw-admin-promo-cell--used,
.lw-admin-promo-table th:nth-child(4) {
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.lw-admin-promo-cell--expires {
  font-size: 12px;
  color: var(--lw-muted);
  font-variant-numeric: tabular-nums;
}
.lw-admin-promo-status {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}
.lw-admin-promo-status--active {
  color: #86efac;
}
.lw-admin-promo-status--exhausted {
  color: #fca5a5;
}
.lw-admin-promo-status--inactive {
  color: var(--lw-muted);
}
.lw-admin-promo-cell--action {
  text-align: right;
  white-space: nowrap;
}
.lw-promo-create-dialog__panel {
  max-width: 460px;
  padding: 0;
  overflow: hidden;
}
.lw-promo-create-dialog__head {
  padding: 20px 22px 0;
}
.lw-promo-create-dialog__head .lw-email-dialog__title {
  margin: 0 0 8px;
}
.lw-promo-create-dialog__hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}
.lw-promo-create-form {
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin: 0;
  padding: 18px 22px 22px;
}
.lw-promo-create-form__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lw-promo-create-form__fields .lw-pm-field {
  gap: 6px;
}
.lw-promo-field--product {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lw-promo-field--product[hidden],
.lw-promo-field--balance[hidden],
.lw-promo-field--discount[hidden] {
  display: none !important;
}
.lw-promo-create-form__actions {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lw-promo-create-dialog .lw-email-dialog__close {
  top: 14px;
  right: 14px;
}
.lw-admin-promo-toolbar .lw-promo-admin-create-open {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 12px;
}
.lw-promo-admin-delete-form {
  margin: 0;
  display: inline-block;
}
.lw-promo-admin-delete {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid rgba(248, 113, 113, 0.35);
  background: rgba(0, 0, 0, 0.25);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-promo-admin-delete:hover {
  border-color: rgba(252, 165, 165, 0.65);
  background: rgba(220, 38, 38, 0.34);
}
.lw-promo-admin-delete:active {
  transform: scale(0.98);
}
.lw-promo-admin-delete:focus-visible {
  outline: 2px solid rgba(248, 113, 113, 0.5);
  outline-offset: 2px;
}
.lw-admin-hint {
  margin: 0 0 18px;
  font-size: var(--lw-font-sm);
}
.lw-admin-dashboard__head {
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--lw-border);
}
.lw-admin-dashboard__head--compact {
  display: none;
}
.lw-admin-revenue-kpis {
  margin: 0 0 28px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.lw-admin-revenue-summary {
  display: grid;
  gap: 12px 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 0;
  align-items: stretch;
  box-sizing: border-box;
}
.lw-admin-revenue-summary > .lw-admin-revenue-stat {
  min-width: 0;
  max-width: 100%;
}
.lw-admin-revenue-panel {
  margin: 0 0 26px;
  padding: 20px 20px;
  border-radius: var(--lw-radius-md);
  border: 1px solid var(--lw-border);
  background: rgba(255, 255, 255, 0.02);
}
.lw-admin-revenue-panel:last-of-type {
  margin-bottom: 0;
}
.lw-admin-revenue-panel__head {
  margin: 0 0 16px;
}
.lw-admin-revenue-panel__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lw-text);
}
.lw-admin-revenue-panel__hint {
  margin: 0;
  font-size: var(--lw-font-xs);
  line-height: 1.5;
  max-width: 70ch;
}
.lw-admin-revenue-panel__table {
  margin-top: 4px;
}
.lw-admin-revenue-empty {
  margin: 8px 0 4px;
  padding: 28px 20px;
  text-align: center;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  font-size: var(--lw-font-sm);
}
.lw-admin-revenue-stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
  min-height: 92px;
  padding: 18px 20px;
  box-sizing: border-box;
  overflow: visible;
  border-radius: 12px;
  border: 1px solid var(--lw-border);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
@media (hover: hover) {
  .lw-admin-revenue-stat:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  }
}
.lw-admin-revenue-stat__label {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--lw-subtle);
  text-align: left;
}
.lw-admin-revenue-stat__value {
  width: 100%;
  max-width: 100%;
  margin-top: auto;
  font-size: clamp(1rem, 0.85rem + 0.45vw, 1.35rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--lw-text);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lw-money {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15em;
  max-width: 100%;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.lw-money__currency {
  flex-shrink: 0;
  font-weight: 700;
}
.lw-admin-revenue-stat__value .lw-money {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: baseline;
}
.lw-admin-revenue-stat__value .lw-money__amount {
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lw-admin-revenue-stat__value .lw-money__currency {
  flex-shrink: 0;
}
.lw-admin-revenue-stat__value--deposit {
  color: #86efac;
}
.lw-admin-revenue-stat__value--deposit-all,
.lw-admin-revenue-stat__value--deposit-all .lw-money,
.lw-admin-revenue-stat__value--deposit-all .lw-money__amount,
.lw-admin-revenue-stat__value--deposit-all .lw-money__currency {
  color: #fde68a;
}
.lw-admin-money {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.lw-admin-money.lw-admin-heat--0 {
  color: var(--lw-muted);
}
.lw-admin-money.lw-admin-heat--1 {
  color: #a3e635;
}
.lw-admin-money.lw-admin-heat--2 {
  color: #4ade80;
}
.lw-admin-money.lw-admin-heat--3 {
  color: #2dd4bf;
}
.lw-admin-money.lw-admin-heat--4 {
  color: #38bdf8;
}
.lw-admin-money.lw-admin-heat--5 {
  color: #fbbf24;
  text-shadow: 0 0 18px rgba(251, 191, 36, 0.35);
}
.lw-admin-provider {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
  border: 1px solid transparent;
}
.lw-admin-provider--anypay {
  color: #c4b5fd;
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.28);
}
.lw-admin-provider--rollypay {
  color: #86efac;
  background: rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.28);
}
.lw-admin-provider--promo {
  color: #fde047;
  background: rgba(250, 204, 21, 0.12);
  border-color: rgba(250, 204, 21, 0.28);
}
.lw-admin-provider--review {
  color: #93c5fd;
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.28);
}
.lw-admin-provider--other {
  color: var(--lw-text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.lw-admin-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 12px;
}
.lw-admin-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--lw-text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-admin-pager__btn:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}
.lw-admin-pager__btn--disabled {
  opacity: 0.45;
  pointer-events: none;
}
.lw-admin-pager__status {
  font-size: 13px;
  color: var(--lw-muted);
  font-variant-numeric: tabular-nums;
}
.lw-admin-pager__pages {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.lw-admin-pager__page,
.lw-admin-pager__gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 8px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.lw-admin-pager__page {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--lw-text);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-admin-pager__page:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}
.lw-admin-pager__page--active {
  border-color: rgba(245, 230, 184, 0.45);
  background: rgba(201, 162, 39, 0.18);
  color: #f5e6b8;
}
.lw-admin-pager__gap {
  color: var(--lw-muted);
  min-width: 20px;
}
.lw-admin-pager__btn--nav {
  min-width: 34px;
  padding-inline: 10px;
}
.lw-admin-user-history__hint {
  margin: 0 0 8px;
  font-size: 12px;
}
.lw-admin-sort-th__link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}
.lw-admin-sort-th__link:hover {
  color: var(--lw-text);
}
.lw-admin-sort-th.is-active .lw-admin-sort-th__link {
  color: #c4b5fd;
}
.lw-admin-sort-th__ind {
  font-size: 10px;
  opacity: 0.85;
}
.lw-admin-revenue-subtitle {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--lw-text);
}
.lw-admin-revenue-subtitle--spaced {
  margin-top: 28px;
}
.lw-admin-tier-cell--popular {
  font-weight: 700;
  color: #fde68a;
}
.lw-admin-clear-stats {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(248, 113, 113, 0.28);
}
.lw-admin-clear-stats__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lw-text);
}
.lw-admin-clear-stats__panel {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: var(--lw-radius-md);
  background: rgba(127, 29, 29, 0.14);
}
.lw-admin-clear-stats__hint {
  margin: 0 0 0;
  font-size: var(--lw-font-sm);
  line-height: 1.55;
  max-width: 62ch;
}
.lw-admin-clear-stats-form {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
}
.lw-admin-clear-stats-form .row {
  margin-bottom: 0;
}
.lw-admin-clear-stats-form label.lw-admin-clear-stats__check {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: var(--lw-font-sm);
  font-weight: 500;
  color: #fca5a5;
  cursor: pointer;
  user-select: none;
}
.lw-admin-clear-stats__check-text {
  line-height: 1.45;
  flex: 1 1 auto;
  min-width: 0;
}
.lw-admin-clear-stats-form .lw-admin-clear-stats__check-input {
  position: absolute;
  top: 1px;
  left: 0;
  z-index: 2;
  width: 20px;
  height: 20px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.lw-admin-clear-stats__check-box {
  position: relative;
  box-sizing: border-box;
  display: inline-flex;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 1px;
  border: 2px solid rgba(248, 113, 113, 0.5);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.35);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-admin-clear-stats__check:hover .lw-admin-clear-stats__check-box {
  border-color: rgba(252, 165, 165, 0.75);
  background: rgba(0, 0, 0, 0.5);
}
.lw-admin-clear-stats__check:has(.lw-admin-clear-stats__check-input:checked) .lw-admin-clear-stats__check-box {
  border-color: #f87171;
  background: rgba(185, 28, 28, 0.55);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.2) inset;
}
.lw-admin-clear-stats__check:has(.lw-admin-clear-stats__check-input:checked) .lw-admin-clear-stats__check-box::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid #fee2e2;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.lw-admin-clear-stats__check:has(.lw-admin-clear-stats__check-input:focus-visible) .lw-admin-clear-stats__check-box {
  outline: 2px solid rgba(248, 113, 113, 0.55);
  outline-offset: 2px;
}
.lw-admin-clear-stats-form button.lw-admin-clear-stats__btn {
  appearance: none;
  -webkit-appearance: none;
  align-self: flex-start;
  margin: 2px 0 0;
  padding: 8px 16px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: var(--lw-radius-sm);
  border: 1px solid rgba(248, 113, 113, 0.55);
  background: rgba(185, 28, 28, 0.35);
  color: #fee2e2;
  color-scheme: dark;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.lw-admin-clear-stats-form button.lw-admin-clear-stats__btn:hover {
  border-color: rgba(252, 165, 165, 0.7);
  background: rgba(220, 38, 38, 0.45);
  color: #fff;
}
.lw-admin-clear-stats-form button.lw-admin-clear-stats__btn:focus-visible {
  outline: 2px solid rgba(248, 113, 113, 0.55);
  outline-offset: 2px;
}
.lw-admin-clear-stats-form button.lw-admin-clear-stats__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.lw-account-card--admin-users,
.lw-account-card--promo-admin {
  max-width: 100%;
}
.lw-account-card--admin-users .lw-account-btn,
.lw-account-card--promo-admin .lw-account-btn,
.lw-account-card--changelog-admin .lw-account-btn,
.lw-account-card--admin-reviews .lw-account-btn,
.lw-account-card--admin-users button.lw-account-btn,
.lw-account-card--promo-admin button.lw-account-btn,
.lw-account-card--changelog-admin button.lw-account-btn,
.lw-account-card--admin-reviews button.lw-account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-btn-border);
  background: var(--lw-btn-bg);
  color: var(--lw-btn-text);
  color-scheme: dark;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-account-card--admin-users button.lw-account-btn,
.lw-account-card--promo-admin button.lw-account-btn,
.lw-account-card--changelog-admin button.lw-account-btn,
.lw-account-card--admin-reviews button.lw-account-btn {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  margin: 0;
  text-align: center;
  forced-color-adjust: auto;
}
.lw-account-card--admin-users .lw-account-btn:hover,
.lw-account-card--promo-admin .lw-account-btn:hover,
.lw-account-card--changelog-admin .lw-account-btn:hover,
.lw-account-card--admin-reviews .lw-account-btn:hover,
.lw-account-card--admin-users button.lw-account-btn:hover,
.lw-account-card--promo-admin button.lw-account-btn:hover,
.lw-account-card--changelog-admin button.lw-account-btn:hover,
.lw-account-card--admin-reviews button.lw-account-btn:hover {
  border-color: var(--lw-btn-border-hover);
  background: var(--lw-btn-bg-hover);
  color: var(--lw-btn-text-hover);
}
.lw-account-card--admin-users .lw-account-btn:focus-visible,
.lw-account-card--promo-admin .lw-account-btn:focus-visible,
.lw-account-card--changelog-admin .lw-account-btn:focus-visible,
.lw-account-card--admin-reviews .lw-account-btn:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
.lw-account-card--changelog-admin .lw-account-btn.primary,
.lw-account-card--changelog-admin button.lw-account-btn.primary,
.lw-account-card--admin-reviews .lw-account-btn.primary,
.lw-account-card--admin-reviews button.lw-account-btn.primary {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
  color: var(--lw-text);
}
.lw-account-card--changelog-admin .lw-account-btn.primary:hover,
.lw-account-card--changelog-admin button.lw-account-btn.primary:hover,
.lw-account-card--admin-reviews .lw-account-btn.primary:hover,
.lw-account-card--admin-reviews button.lw-account-btn.primary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
}
.lw-account-card--changelog-admin .lw-account-btn--danger,
.lw-account-card--changelog-admin button.lw-account-btn--danger,
.lw-account-card--admin-reviews .lw-account-btn--danger,
.lw-account-card--admin-reviews button.lw-account-btn--danger {
  border-color: rgba(248, 113, 113, 0.45);
  background: rgba(127, 29, 29, 0.35);
  color: #fecaca;
}
.lw-account-card--changelog-admin .lw-account-btn--danger:hover,
.lw-account-card--changelog-admin button.lw-account-btn--danger:hover,
.lw-account-card--admin-reviews .lw-account-btn--danger:hover,
.lw-account-card--admin-reviews button.lw-account-btn--danger:hover {
  border-color: rgba(252, 165, 165, 0.65);
  background: rgba(185, 28, 28, 0.45);
  color: #fff;
}
.lw-account-card--products-admin {
  max-width: 100%;
  padding: clamp(16px, 3vw, 22px);
}
.lw-admin-products-empty {
  margin-top: 4px;
}
.lw-account-card--products-admin .lw-account-btn,
.lw-account-card--products-admin button.lw-account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-btn-border);
  background: var(--lw-btn-bg);
  color: var(--lw-btn-text);
  color-scheme: dark;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  margin: 0;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-account-card--products-admin .lw-account-btn:hover,
.lw-account-card--products-admin button.lw-account-btn:hover {
  border-color: var(--lw-btn-border-hover);
  background: var(--lw-btn-bg-hover);
  color: var(--lw-btn-text-hover);
}
.lw-account-card--products-admin .lw-account-btn:focus-visible,
.lw-account-card--products-admin button.lw-account-btn:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
.lw-admin-products-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.lw-admin-product-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(10, 10, 12, 0.65);
}
.lw-admin-product-card__body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px 14px;
  padding: 12px 14px;
}
.lw-admin-product-card__thumb {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0c;
}
.lw-admin-product-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lw-admin-product-card__thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}
.lw-admin-product-card__main {
  min-width: 0;
}
.lw-admin-product-card__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
.lw-admin-product-card__name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #fafafa;
  letter-spacing: -0.01em;
}
.lw-admin-product-card__badges {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.lw-admin-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--lw-muted);
  white-space: nowrap;
}
.lw-admin-product-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
}
.lw-admin-product-badge--on {
  color: #86efac;
}
.lw-admin-product-badge--on .lw-admin-product-badge__dot {
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(134, 239, 172, 0.2);
}
.lw-admin-product-badge--warn {
  color: #fcd34d;
}
.lw-admin-product-badge--warn .lw-admin-product-badge__dot {
  opacity: 1;
}
.lw-admin-product-badge--off {
  color: #9ca3af;
}
.lw-admin-product-card__sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-top: 4px;
  min-width: 0;
}
.lw-admin-product-card__slug {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  line-height: 1.35;
  color: var(--lw-subtle);
  word-break: break-all;
}
.lw-admin-product-card__sub-muted {
  font-size: 11px;
  line-height: 1.35;
  color: var(--lw-muted);
}
.lw-admin-product-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.lw-admin-product-card .lw-admin-product-category-tag {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  color: var(--lw-muted);
  line-height: 1.35;
}
.lw-admin-product-card__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--lw-muted);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.lw-admin-product-card__menu:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fafafa;
}
.lw-admin-product-card__menu:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
.lw-admin-product-card__stats,
.lw-admin-product-card__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 10px 0 0;
  padding: 0;
}
.lw-admin-product-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
  min-width: 0;
}
.lw-admin-product-stat dt {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lw-subtle);
  line-height: 1.3;
  white-space: nowrap;
}
.lw-admin-product-stat dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #e4e4e7;
  line-height: 1.3;
  white-space: nowrap;
}
.lw-admin-product-stat__sep {
  margin: 0 1px;
  font-weight: 400;
  color: var(--lw-muted);
  font-size: 0.9em;
}
.lw-admin-product-card__limits-note {
  margin: 6px 0 0;
  font-size: 10px;
  line-height: 1.4;
}
.lw-admin-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.12);
}
.lw-admin-product-card__actions-divider {
  width: 1px;
  height: 22px;
  margin: 0 4px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.lw-admin-product-card__purchase-form {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 0 auto;
}
.lw-admin-product-card__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--lw-muted);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.lw-admin-product-card__icon-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fafafa;
}
.lw-admin-product-card__icon-btn:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
.lw-admin-product-card__icon-btn svg {
  display: block;
}
.lw-admin-product-card__icon-btn--primary {
  color: #fafafa;
  background: rgba(255, 255, 255, 0.08);
}
.lw-admin-product-card__icon-btn--primary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.lw-admin-product-toggle {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 4px;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
  box-sizing: border-box;
}
.lw-admin-product-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.lw-admin-product-toggle__track {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}
.lw-admin-product-toggle__track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #71717a;
  transition: transform 0.2s ease, background 0.2s ease;
}
.lw-admin-product-toggle__input:checked + .lw-admin-product-toggle__track {
  background: rgba(22, 163, 74, 0.5);
}
.lw-admin-product-toggle__input:checked + .lw-admin-product-toggle__track::after {
  transform: translateX(16px);
  background: #fafafa;
}
.lw-admin-product-btn--ghost {
  background: transparent;
  border: 1px solid var(--lw-border);
  color: var(--lw-text);
}
.lw-admin-product-btn--ghost:hover {
  border-color: var(--lw-border-hover);
  background: rgba(255, 255, 255, 0.04);
}
.lw-admin-product-site-dialog__panel {
  padding: 0;
  display: flex;
  flex-direction: column;
  max-height: min(90vh, 820px);
  overflow: hidden;
  background: #0c0c0c;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-lg);
}
.lw-admin-product-site-dialog__panel .lw-email-dialog__close {
  top: 12px;
  right: 12px;
  z-index: 2;
}
.lw-admin-site-form__head {
  flex: 0 0 auto;
  margin: 0;
  padding: 18px 22px 14px;
  padding-right: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}
.lw-admin-site-form__head .lw-email-dialog__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.lw-admin-site-form__product {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--lw-muted);
  line-height: 1.4;
}
.lw-admin-site-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  padding: 0;
}
.lw-admin-site-form__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px 22px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) rgba(0, 0, 0, 0.35);
}
.lw-admin-site-form__scroll::-webkit-scrollbar {
  width: 8px;
}
.lw-admin-site-form__scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 4px;
}
.lw-admin-site-form__scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}
.lw-admin-site-form__scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.28);
}
.lw-admin-product-site-dialog .lw-admin-site-section {
  margin: 0 0 20px;
  padding: 0;
  border: none;
}
.lw-admin-product-site-dialog .lw-admin-site-section:last-of-type {
  margin-bottom: 0;
}
.lw-admin-site-section {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-admin-site-section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.lw-admin-product-site-dialog .lw-admin-site-section__title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #e4e4e7;
  line-height: 1.3;
}
.lw-admin-site-section__title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lw-muted);
  line-height: 1.3;
}
.lw-admin-product-site-dialog .lw-admin-site-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lw-admin-site-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lw-admin-product-site-dialog .lw-admin-site-prices {
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  gap: 12px;
  align-items: start;
}
.lw-admin-site-prices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 10px;
}
.lw-admin-product-site-dialog .lw-admin-site-price-tier {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  min-width: 0;
  text-align: center;
}
.lw-admin-site-price-tier {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.lw-admin-product-site-dialog .lw-admin-site-price-tier label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  color: #a1a1aa;
  line-height: 1.3;
}
.lw-admin-site-price-tier label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #d4d4d8;
  line-height: 1.2;
}
.lw-admin-site-price-input {
  position: relative;
  display: flex;
  align-items: stretch;
}
.lw-admin-site-price-input__prefix {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 700;
  color: rgba(251, 191, 36, 0.75);
  pointer-events: none;
  z-index: 1;
}
.lw-admin-product-site-dialog .lw-admin-site-price-input input {
  min-height: 44px;
  padding: 10px 10px 10px 26px;
  font-size: 15px;
  font-weight: 700;
}
.lw-admin-site-price-input input {
  width: 100%;
  box-sizing: border-box;
  min-height: 38px;
  padding: 8px 10px 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  color: #fafafa;
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: center;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.lw-admin-product-site-dialog .lw-admin-site-price-input input:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.lw-admin-site-price-input input:focus {
  outline: none;
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.12);
}
.lw-admin-site-price-hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0 0;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.18);
  font-size: 11px;
  line-height: 1.45;
  color: #a1a1aa;
}
.lw-admin-site-price-hint__icon {
  flex: 0 0 auto;
  display: flex;
  margin-top: 1px;
  color: #60a5fa;
}
.lw-admin-product-site-dialog .lw-admin-site-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
.lw-admin-site-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.lw-admin-product-site-dialog .lw-admin-site-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  height: 100%;
}
.lw-admin-site-control {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.lw-admin-product-site-dialog .lw-admin-site-control__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #a1a1aa;
  line-height: 1.3;
}
.lw-admin-site-control__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
  line-height: 1.2;
}
.lw-admin-product-site-dialog .lw-admin-site-control__input-wrap {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-height: 44px;
  box-sizing: border-box;
}
.lw-admin-product-site-dialog .lw-admin-site-control--toggle {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lw-admin-product-site-dialog .lw-admin-site-control__input-wrap--toggle {
  justify-content: flex-start;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.4);
}
.lw-admin-product-site-dialog .lw-admin-site-control > select,
.lw-admin-product-site-dialog .lw-admin-site-control > input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]) {
  flex: 1 1 auto;
  min-height: 44px;
  margin: 0;
}
.lw-admin-site-control--toggle .lw-admin-site-control__label {
  flex: 0 0 auto;
}
.lw-account-toggle--site {
  margin: 0;
  flex-shrink: 0;
}
.lw-admin-product-site-dialog .lw-admin-site-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.lw-admin-site-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.lw-admin-product-site-dialog .lw-admin-site-field > label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #a1a1aa;
  line-height: 1.3;
}
.lw-admin-site-field > label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
}
.lw-admin-site-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.lw-admin-site-form textarea,
.lw-admin-site-form select,
.lw-admin-site-form .lw-admin-site-select,
.lw-admin-site-control input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.lw-admin-site-control select,
.lw-admin-site-control .lw-admin-site-select {
  width: 100%;
  box-sizing: border-box;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fafafa;
  font-size: 13px;
  line-height: 1.4;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lw-admin-site-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.lw-admin-site-form select,
.lw-admin-site-form .lw-admin-site-select,
.lw-admin-site-control input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.lw-admin-site-control select,
.lw-admin-site-control .lw-admin-site-select {
  min-height: 38px;
}
.lw-admin-site-form textarea,
.lw-admin-site-control textarea {
  resize: vertical;
  min-height: 52px;
}
.lw-admin-site-form select,
.lw-admin-site-form .lw-admin-site-select,
.lw-admin-site-control select,
.lw-admin-site-control .lw-admin-site-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: dark;
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}
.lw-admin-site-form select option,
.lw-admin-site-form .lw-admin-site-select option,
.lw-admin-site-control select option,
.lw-admin-site-control .lw-admin-site-select option {
  background: #141414;
  color: #fafafa;
}
.lw-admin-site-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus,
.lw-admin-site-form textarea:focus,
.lw-admin-site-form select:focus,
.lw-admin-site-form .lw-admin-site-select:focus,
.lw-admin-site-control input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus,
.lw-admin-site-control textarea:focus,
.lw-admin-site-control select:focus,
.lw-admin-site-control .lw-admin-site-select:focus {
  outline: none;
  border-color: rgba(74, 222, 128, 0.35);
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.1);
}
.lw-admin-product-site-dialog .lw-admin-site-form__actions {
  position: relative;
  flex: 0 0 auto;
  z-index: 2;
  margin: 0;
  padding: 14px 22px max(20px, env(safe-area-inset-bottom, 0px));
  background: #0c0c0c;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.45);
}
.lw-admin-site-form__actions {
  flex: 0 0 auto;
  margin: 0;
  padding: 14px 0 0;
  background: #0c0c0c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lw-admin-product-site-dialog .lw-admin-site-form__submit {
  min-height: 44px;
  font-size: 14px;
}
.lw-admin-site-form__submit {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--lw-btn-primary-border);
  border-radius: 10px;
  background: var(--lw-btn-primary-bg);
  color: var(--lw-btn-primary-text);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  color-scheme: dark;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.1s ease;
}
.lw-admin-site-form__submit:hover {
  background: var(--lw-btn-primary-bg-hover);
  border-color: var(--lw-btn-border-hover);
  color: var(--lw-btn-primary-text);
}
.lw-admin-site-form__submit:active {
  transform: translateY(1px);
}
.lw-admin-site-form__submit:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
@media (max-width: 720px) {
  .lw-admin-product-site-dialog .lw-admin-site-prices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
  }
  .lw-admin-product-site-dialog .lw-admin-site-controls {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lw-admin-product-site-dialog .lw-admin-site-categories {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .lw-admin-site-prices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lw-admin-site-controls {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .lw-admin-product-site-dialog__panel {
    max-height: calc(100vh - 24px);
  }
  .lw-admin-site-form__head {
    padding: 14px 16px 12px;
    padding-right: 44px;
  }
  .lw-admin-product-site-dialog .lw-admin-site-form {
    padding: 14px 16px 16px;
  }
  .lw-admin-product-site-dialog .lw-admin-site-form__actions {
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: -16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
  }
  .lw-admin-site-form {
    padding: 12px 14px 14px;
  }
}
.lw-admin-product-limits-dialog {
  width: min(560px, calc(100vw - 24px));
  max-width: calc(100vw - 16px);
}
.lw-admin-product-limits-dialog__panel {
  padding: 20px 22px 22px;
  background: #0c0c0c;
}
.lw-admin-product-limits-dialog__panel .lw-email-dialog__close {
  top: 12px;
  right: 12px;
}
.lw-admin-product-limits-dialog__head {
  margin: 0 0 20px;
  padding-right: 36px;
}
.lw-admin-product-limits-dialog__head .lw-email-dialog__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}
.lw-admin-product-limits-dialog__product {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--lw-muted);
  line-height: 1.4;
}
.lw-admin-product-limits-dialog__hint {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--lw-muted);
}
.lw-admin-product-limits-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}
.lw-admin-product-limits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  gap: 12px;
  align-items: start;
}
.lw-admin-product-limit-field {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  margin: 0;
  min-width: 0;
  text-align: center;
}
.lw-admin-product-limit-field__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #a1a1aa;
  line-height: 1.3;
}
.lw-admin-product-limit-field input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(0, 0, 0, 0.45);
  color: #fafafa;
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: center;
  box-sizing: border-box;
  font-family: inherit;
  appearance: textfield;
  -moz-appearance: textfield;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.lw-admin-product-limit-field input::-webkit-outer-spin-button,
.lw-admin-product-limit-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.lw-admin-product-limit-field input:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.lw-admin-product-limit-field input:focus {
  outline: none;
  border-color: rgba(74, 222, 128, 0.4);
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.12);
}
.lw-admin-product-limits-dialog__footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lw-admin-product-limits-dialog__footer .lw-account-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
}
.lw-admin-product-limits-dialog__footer .lw-admin-product-btn--primary {
  border-color: var(--lw-btn-primary-border);
  background: var(--lw-btn-primary-bg);
  color: var(--lw-btn-primary-text);
  font-weight: 700;
}
.lw-admin-product-limits-dialog__footer .lw-admin-product-btn--primary:hover {
  border-color: var(--lw-btn-border-hover);
  background: var(--lw-btn-primary-bg-hover);
  color: var(--lw-btn-primary-text);
}
.lw-price-table-row--select.is-tier-sold-out {
  opacity: 0.55;
  cursor: not-allowed;
}
.lw-tier-sold-out-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-left: auto;
}
.lw-tier-sold-out-badge {
  font-size: 11px;
  font-weight: 600;
  color: #fbbf24;
  white-space: nowrap;
}
.lw-tier-restock-timer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 11px;
  line-height: 1.3;
  color: var(--lw-muted);
}
.lw-product-purchase-hint--weekly-limit + .lw-tier-restock-timer {
  margin-top: 8px;
  align-items: flex-start;
}
.lw-tier-restock-timer__value {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #86efac;
  letter-spacing: 0.02em;
}
.lw-tier-restock-timer.is-ready .lw-tier-restock-timer__value {
  color: #4ade80;
}
@media (max-width: 520px) {
  .lw-admin-product-limits-dialog__panel {
    padding: 16px 16px 18px;
  }
  .lw-admin-product-limits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
  }
  .lw-admin-product-limits-dialog__footer {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
@media (max-width: 640px) {
  .lw-admin-product-card__actions {
    gap: 2px;
  }
  .lw-admin-product-card__purchase-form {
    flex: 1 1 auto;
    justify-content: flex-end;
  }
}
.lw-admin-users-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 14px;
  width: 100%;
  box-sizing: border-box;
}
.lw-admin-users-toolbar__input {
  flex: 1 1 200px;
  min-width: 0;
  margin: 0;
}
.lw-admin-users-toolbar__btn {
  flex: 0 0 auto;
  white-space: nowrap;
}
.lw-admin-users-back {
  margin: 0 0 14px;
}
.lw-admin-user-detail {
  margin-top: 8px;
  padding-top: 0;
  border-top: none;
}
.lw-admin-user-hero {
  margin-bottom: 20px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
}
.lw-admin-user-hero__main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lw-admin-user-hero__identity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}
.lw-admin-user-hero__title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fafafa;
}
.lw-admin-user-hero__id {
  font-size: 14px;
  font-weight: 600;
  color: var(--lw-muted);
  font-variant-numeric: tabular-nums;
}
.lw-admin-user-hero__email {
  margin: 0;
  font-size: 14px;
  color: #d4d4d8;
  word-break: break-all;
}
.lw-admin-user-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.lw-admin-user-stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lw-radius-sm);
  background: rgba(0, 0, 0, 0.22);
  min-width: 0;
  min-height: 72px;
}
.lw-admin-user-stat--balance .lw-admin-user-stat__value:not(.lw-admin-money) {
  color: #86efac;
}
.lw-admin-user-stat__label {
  display: block;
  min-height: 2.6em;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
  line-height: 1.3;
}
.lw-admin-user-stat__value {
  display: block;
  margin-top: auto;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fafafa;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lw-admin-user-stat__value .lw-money {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lw-admin-user-stat__value--sm {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}
.lw-admin-user-hwid {
  margin-bottom: 22px;
}
.lw-admin-user-hwid__plate {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px 18px;
  align-items: center;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
}
.lw-admin-user-hwid__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 52px;
  align-self: center;
}
.lw-admin-user-hwid__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--lw-radius-md);
  border: none;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}
.lw-admin-user-hwid__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lw-subtle);
  text-align: center;
}
.lw-admin-user-hwid__main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.lw-admin-user-hwid__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  min-height: 24px;
}
.lw-admin-user-hwid__date {
  font-size: 12px;
  color: var(--lw-muted);
  font-variant-numeric: tabular-nums;
}
.lw-admin-user-hwid__product {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: #d4d4d8;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lw-admin-user-hwid__hash-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lw-radius-sm);
  background: rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}
.lw-admin-user-hwid__hash-short {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.35;
  color: #a1a1aa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
}
.lw-admin-user-hwid__copy {
  flex-shrink: 0;
}
.lw-admin-user-hwid--empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
}
.lw-admin-user-hwid--empty .lw-admin-user-hwid__label {
  text-align: left;
}
.lw-admin-user-hwid__empty-value {
  font-size: 13px;
  color: var(--lw-muted);
}
@media (max-width: 520px) {
  .lw-admin-user-hwid__plate {
    grid-template-columns: 1fr;
  }
  .lw-admin-user-hwid__aside {
    flex-direction: row;
    min-width: 0;
    padding-top: 0;
  }
  .lw-admin-user-hwid__label {
    text-align: left;
  }
}
.lw-admin-user-panels {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lw-admin-user-block {
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
}
.lw-admin-user-block + .lw-admin-user-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lw-admin-user-block__head {
  margin-bottom: 14px;
}
.lw-admin-user-block__title {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lw-muted);
}
.lw-admin-user-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  align-items: start;
}
.lw-admin-user-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
}
.lw-admin-user-action--balance {
  border: none;
  background: none;
}
.lw-admin-user-action__title {
  margin: 0;
  min-height: 2.6em;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
  line-height: 1.3;
}
.lw-admin-user-action__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.lw-admin-user-action--email .lw-admin-user-action__hint-row {
  min-height: 2.75em;
}
.lw-admin-user-action--balance .lw-admin-user-action__hint-row {
  min-height: 0;
}
.lw-admin-user-action--balance .lw-admin-user-action__hint-row:not(:has(.lw-admin-balance-hint:not([hidden]))) {
  display: none;
}
.lw-admin-user-action__hint-row {
  display: flex;
  align-items: flex-start;
  flex: 0 0 auto;
}
.lw-admin-user-action__url {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  line-height: 1.4;
  color: #71717a;
  word-break: break-all;
}
.lw-admin-user-action__input {
  width: 100%;
  box-sizing: border-box;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lw-radius-sm);
  background: rgba(0, 0, 0, 0.35);
  color: #fafafa;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lw-admin-user-action__input--mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.lw-admin-user-action__input:hover {
  border-color: var(--lw-border-hover);
}
.lw-admin-user-action__input:focus {
  outline: none;
  border-color: rgba(212, 212, 212, 0.35);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}
.lw-admin-user-action__hint {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  color: #71717a;
}
.lw-admin-user-action__btn {
  align-self: flex-start;
  margin-top: 0;
  padding: 8px 14px;
  min-height: 38px;
  box-sizing: border-box;
  border: none;
  border-radius: var(--lw-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #e4e4e7;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lw-admin-user-action__btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fafafa;
}
.lw-admin-user-action__btn--primary {
  align-self: flex-start;
  padding: 8px 16px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #e4e4e7;
  font-size: 12px;
}
.lw-admin-user-action__btn--primary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fafafa;
}
.lw-admin-user-history {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.lw-admin-user-history__section {
  padding: 16px 0 0;
}
.lw-admin-user-history__section:first-child {
  padding-top: 0;
}
.lw-admin-user-history__section + .lw-admin-user-history__section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lw-admin-user-history__label {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
}
.lw-admin-user-history__empty {
  margin: 0;
  padding: 8px 0;
  text-align: left;
  font-size: 13px;
  color: var(--lw-muted);
  border-radius: 0;
  background: none;
}
.lw-admin-user-table-wrap {
  overflow-x: auto;
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
}
.lw-admin-user-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.lw-admin-user-table th,
.lw-admin-user-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-admin-user-table th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
  background: rgba(0, 0, 0, 0.2);
}
.lw-admin-user-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.lw-admin-user-table tbody tr:last-child td {
  border-bottom: none;
}
.lw-admin-user-purchases-hwid {
  max-width: 120px;
}
.lw-admin-user-purchases-hwid__code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  color: #a1a1aa;
}
.lw-admin-user-action .lw-admin-balance-form {
  max-width: none;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.lw-admin-balance-form {
  margin-bottom: 0;
}
.lw-admin-balance-direction {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 3px;
  min-height: 0;
  box-sizing: border-box;
  border: none;
  border-radius: var(--lw-radius-sm);
  background: rgba(255, 255, 255, 0.06);
  align-self: stretch;
  width: 100%;
}
.lw-admin-balance-form label.lw-admin-balance-direction__opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  margin: 0;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lw-muted);
  border-radius: calc(var(--lw-radius-sm) - 2px);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  user-select: none;
}
.lw-admin-balance-form label.lw-admin-balance-direction__opt:hover {
  color: #e2e6ef;
}
.lw-admin-balance-form label.lw-admin-balance-direction__opt:has(.lw-admin-balance-direction__input:checked) {
  background: var(--lw-btn-primary-bg);
  border-color: var(--lw-btn-primary-border);
  color: var(--lw-btn-primary-text);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
.lw-admin-balance-direction__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  background: transparent;
}
.lw-admin-balance-form label.lw-admin-balance-direction__opt span {
  line-height: 1.3;
}
.lw-admin-balance-form label.lw-admin-balance-direction__opt--disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.lw-admin-balance-hint {
  margin: 6px 0 0;
  font-size: 11px;
  line-height: 1.4;
}
@media (max-width: 960px) {
  .lw-admin-user-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lw-admin-user-actions-grid {
    grid-template-columns: 1fr;
  }
  .lw-admin-user-stat__label,
  .lw-admin-user-action__title {
    min-height: 0;
  }
}
@media (max-width: 520px) {
  .lw-admin-user-stats {
    grid-template-columns: 1fr;
  }
}
.lw-admin-users-ref {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.lw-admin-users-ref--has {
  color: #4ade80;
}
.lw-admin-users-ref--none {
  color: #facc15;
}
.lw-admin-users-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lw-radius-md);
  background: #0a0a0c;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}
.lw-admin-users-table-wrap::-webkit-scrollbar {
  height: 6px;
}
.lw-admin-users-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}
.lw-admin-users-table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.lw-admin-users-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 13px;
}
.lw-admin-users-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #0a0a0c;
  box-shadow: 0 1px 0 var(--lw-border);
}
.lw-admin-users-table th,
.lw-admin-users-table td {
  padding: 9px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
  text-align: left;
}
.lw-admin-users-table th.lw-admin-users-cell--money,
.lw-admin-users-table td.lw-admin-users-cell--money {
  padding-left: 6px;
  padding-right: 6px;
}
.lw-admin-users-table tbody tr {
  background: #0a0a0c;
}
.lw-admin-users-table tbody td {
  background: inherit;
}
.lw-admin-users-table tbody tr:last-child td {
  border-bottom: none;
}
.lw-admin-users-table tbody tr:hover {
  background: #101012;
}
.lw-admin-users-col--id {
  width: 88px;
  min-width: 88px;
}
.lw-admin-users-col--user {
  width: 108px;
}
.lw-admin-users-col--email {
  width: auto;
}
.lw-admin-users-col--money {
  width: 92px;
}
.lw-admin-users-col--count {
  width: 52px;
}
.lw-admin-users-col--date {
  width: 84px;
}
.lw-admin-users-col--action {
  width: 96px;
}
.lw-admin-users-cell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-admin-users-cell--id {
  font-variant-numeric: tabular-nums;
  color: var(--lw-muted);
  font-weight: 600;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}
.lw-admin-users-page-hint {
  margin: 0 0 10px;
  font-size: 12px;
}
.lw-admin-users-cell--money {
  text-align: right;
  white-space: nowrap;
  font-size: 12px;
}
.lw-admin-users-cell--money .lw-admin-money {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.lw-admin-users-cell--count {
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.lw-admin-users-cell--date {
  font-size: 12px;
  color: var(--lw-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.lw-admin-users-table th.lw-admin-users-cell--money,
.lw-admin-users-table td.lw-admin-users-cell--money {
  text-align: right;
}
.lw-admin-users-table th:nth-child(6),
.lw-admin-users-table td.lw-admin-users-cell--count {
  text-align: center;
}
.lw-admin-users-table thead th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lw-subtle);
  white-space: nowrap;
}
.lw-admin-users-table__action-head {
  position: sticky;
  right: 0;
  z-index: 3;
  width: 96px;
  min-width: 96px;
  max-width: 96px;
  padding-left: 8px;
  padding-right: 10px;
  text-align: center;
  white-space: nowrap;
  background: #0a0a0c;
  box-shadow: -10px 0 14px -8px rgba(0, 0, 0, 0.55);
}
.lw-admin-users-table__action {
  position: sticky;
  right: 0;
  z-index: 2;
  width: 96px;
  min-width: 96px;
  max-width: 96px;
  padding-left: 8px;
  padding-right: 10px;
  text-align: center;
  white-space: nowrap;
  background: inherit;
  box-shadow: -10px 0 14px -8px rgba(0, 0, 0, 0.55);
}
.lw-admin-users-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 30px;
  padding: 4px 2px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--lw-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.lw-admin-users-open:hover {
  background: transparent;
  color: #e4e4e7;
  text-decoration: none;
}
.lw-admin-users-open__icon {
  display: inline-flex;
  flex-shrink: 0;
}
.lw-admin-users-open__icon svg {
  display: block;
}
.lw-account-card--admin-users {
  padding: clamp(16px, 3vw, 22px);
}
.lw-admin-users-table .lw-admin-sort-th.is-active .lw-admin-sort-th__link {
  color: var(--lw-text);
}
.lw-admin-users-table th.lw-admin-sort-th:nth-child(4),
.lw-admin-users-table th.lw-admin-sort-th:nth-child(5) {
  text-align: right;
}
.lw-admin-users-table th.lw-admin-sort-th:nth-child(4) .lw-admin-sort-th__link,
.lw-admin-users-table th.lw-admin-sort-th:nth-child(5) .lw-admin-sort-th__link {
  width: 100%;
  justify-content: flex-end;
}
.lw-admin-users-table th.lw-admin-sort-th:nth-child(6) {
  text-align: center;
}
.lw-admin-users-table th.lw-admin-sort-th:nth-child(6) .lw-admin-sort-th__link {
  width: 100%;
  justify-content: center;
}
.lw-admin-user-purchases-wrap {
  overflow-x: auto;
}
.lw-account-purchases-toolbar {
  margin: 0 0 14px;
}
a.lw-account-btn-activate-key {
  display: inline-block;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  border: 1px solid var(--lw-btn-primary-border);
  border-radius: var(--lw-radius-sm);
  text-decoration: none;
  color: var(--lw-btn-primary-text);
  background: var(--lw-btn-primary-bg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.12s ease;
}
a.lw-account-btn-activate-key:hover {
  background: var(--lw-btn-primary-bg-hover);
  border-color: var(--lw-btn-border-hover);
  color: var(--lw-btn-primary-text);
}
a.lw-account-btn-activate-key:active {
  transform: translateY(1px);
}
a.lw-account-btn-activate-key:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
.lw-account-card--purchases .lw-purchases-table {
  min-width: 880px;
}
.lw-purchases-table__date {
  color: var(--lw-subtle);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.lw-topups-table .lw-admin-table-date {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  color: var(--lw-subtle);
  font-size: 13px;
}
.lw-admin-product-link {
  font-weight: 600;
  white-space: nowrap;
}
.lw-admin-product-link:hover {
  color: #fafafa;
}
.lw-topups-table.lw-admin-purchases-all-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
}
.lw-topups-table.lw-admin-purchases-all-table th,
.lw-topups-table.lw-admin-purchases-all-table td {
  padding: 9px 10px;
  vertical-align: middle;
  overflow: hidden;
}
.lw-topups-table.lw-admin-purchases-all-table th:nth-child(1),
.lw-topups-table.lw-admin-purchases-all-table td:nth-child(1) {
  width: 15%;
  white-space: nowrap;
}
.lw-topups-table.lw-admin-purchases-all-table th:nth-child(2),
.lw-topups-table.lw-admin-purchases-all-table td:nth-child(2) {
  width: 22%;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.lw-topups-table.lw-admin-purchases-all-table td:nth-child(2) .lw-link {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-topups-table.lw-admin-purchases-all-table th:nth-child(3),
.lw-topups-table.lw-admin-purchases-all-table td:nth-child(3) {
  width: 7%;
  padding-left: 8px;
  padding-right: 8px;
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.lw-topups-table.lw-admin-purchases-all-table th:nth-child(3) {
  letter-spacing: 0.02em;
}
.lw-topups-table.lw-admin-purchases-all-table th:nth-child(4),
.lw-topups-table.lw-admin-purchases-all-table td:nth-child(4) {
  width: 28%;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.lw-topups-table.lw-admin-purchases-all-table td:nth-child(4) .lw-admin-product-link,
.lw-topups-table.lw-admin-purchases-all-table td:nth-child(4) .lw-link {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.lw-topups-table.lw-admin-purchases-all-table th:nth-child(5),
.lw-topups-table.lw-admin-purchases-all-table td:nth-child(5) {
  width: 14%;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.lw-topups-table.lw-admin-purchases-all-table th:nth-child(6),
.lw-topups-table.lw-admin-purchases-all-table td:nth-child(6) {
  width: 14%;
  padding-right: 12px;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.lw-topups-table.lw-admin-purchases-all-table td:nth-child(6) .lw-admin-money {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lw-admin-user-purchases-table th:nth-child(2),
.lw-admin-user-purchases-table td:nth-child(2) {
  white-space: nowrap;
  min-width: 9.5rem;
}
.lw-topups-table-wrap {
  overflow-x: auto;
  margin-top: 8px;
  max-width: 100%;
}
.lw-topups-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.lw-topups-table th,
.lw-topups-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--lw-border);
}
.lw-topups-table th {
  font-size: var(--lw-font-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lw-muted);
  font-weight: 700;
}
.lw-topups-table tbody tr:last-child td {
  border-bottom: none;
}
.lw-topups-table.lw-admin-revenue-table,
.lw-topups-table.lw-admin-tier-table {
  table-layout: fixed;
}
.lw-topups-table.lw-admin-revenue-table th,
.lw-topups-table.lw-admin-revenue-table td,
.lw-topups-table.lw-admin-tier-table th,
.lw-topups-table.lw-admin-tier-table td {
  vertical-align: middle;
}
.lw-topups-table.lw-admin-revenue-table th:nth-child(1),
.lw-topups-table.lw-admin-revenue-table td:nth-child(1) {
  text-align: left;
  width: 46%;
}
.lw-topups-table.lw-admin-revenue-table th:nth-child(2),
.lw-topups-table.lw-admin-revenue-table th:nth-child(3),
.lw-topups-table.lw-admin-revenue-table td:nth-child(2),
.lw-topups-table.lw-admin-revenue-table td:nth-child(3) {
  text-align: right;
  width: 27%;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  padding-left: 8px;
  padding-right: 12px;
}
.lw-topups-table.lw-admin-revenue-table td:nth-child(2) .lw-money,
.lw-topups-table.lw-admin-revenue-table td:nth-child(3) .lw-money {
  justify-content: flex-end;
  width: 100%;
}
.lw-topups-table.lw-admin-tier-table th:nth-child(1),
.lw-topups-table.lw-admin-tier-table td:nth-child(1) {
  text-align: left;
  width: 24%;
}
.lw-topups-table.lw-admin-tier-table th:nth-child(2),
.lw-topups-table.lw-admin-tier-table td:nth-child(2),
.lw-topups-table.lw-admin-tier-table th:nth-child(3),
.lw-topups-table.lw-admin-tier-table td:nth-child(3),
.lw-topups-table.lw-admin-tier-table th:nth-child(4),
.lw-topups-table.lw-admin-tier-table td:nth-child(4),
.lw-topups-table.lw-admin-tier-table th:nth-child(5),
.lw-topups-table.lw-admin-tier-table td:nth-child(5) {
  text-align: center;
  width: 10%;
  font-variant-numeric: tabular-nums;
  padding-left: 6px;
  padding-right: 6px;
}
.lw-topups-table.lw-admin-tier-table th:nth-child(n + 2):not(:last-child) {
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.04em;
  vertical-align: bottom;
}
.lw-topups-table.lw-admin-tier-table td:nth-child(n + 2):not(:last-child) {
  vertical-align: middle;
}
.lw-topups-table.lw-admin-tier-table th:last-child,
.lw-topups-table.lw-admin-tier-table td:last-child {
  text-align: left;
  width: 36%;
  padding-left: 12px;
}
.lw-card-actions--single {
  justify-content: flex-start;
}
.lw-card-actions--single .hero-btn {
  flex: 0 1 auto;
}
.lw-product-purchase {
  margin-top: 14px;
}
.lw-purchase-warning {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: var(--lw-radius-sm);
  background: rgba(180, 83, 9, 0.12);
}
.lw-purchase-warning__title {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fde68a;
}
.lw-purchase-warning__text {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #fcd34d;
}
.lw-purchase-warning--lead {
  margin: 0 0 16px;
}
.lw-purchase-consents {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.lw-purchase-consents--dialog {
  margin: 14px 0 0;
}
.lw-purchase-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-purchase-consent:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}
.lw-purchase-consent:has(.lw-purchase-consent__input:checked) {
  border-color: rgba(134, 239, 172, 0.35);
  background: rgba(34, 197, 94, 0.08);
}
.lw-purchase-consent__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lw-purchase-consent__box {
  position: relative;
  box-sizing: border-box;
  grid-column: 1;
  grid-row: 1;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.4);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-purchase-consent:hover .lw-purchase-consent__box {
  border-color: rgba(255, 255, 255, 0.45);
}
.lw-purchase-consent:has(.lw-purchase-consent__input:checked) .lw-purchase-consent__box {
  border-color: #4ade80;
  background: #4ade80;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.2);
}
.lw-purchase-consent:has(.lw-purchase-consent__input:checked) .lw-purchase-consent__box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 5px;
  height: 9px;
  margin: 0;
  border: solid #0a0a0a;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.lw-purchase-consent:has(.lw-purchase-consent__input:focus-visible) .lw-purchase-consent__box {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}
.lw-purchase-consent__text {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: #d4d4d8;
}
.lw-purchase-consent__link {
  color: #fafafa;
  text-decoration: none;
  font-weight: 600;
}
.lw-purchase-consent__link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
.lw-product-purchase-flash {
  margin: 0 0 12px;
}
.lw-form--product-buy {
  margin-top: 4px;
}
.lw-form--product-buy .lw-product-purchase-open {
  display: block;
  width: 100%;
  margin-top: 18px;
}
.lw-product-purchase-dialog {
  width: min(440px, calc(100vw - 24px));
}
.lw-product-purchase-dialog__panel {
  padding: 20px 20px 18px;
  border-color: rgba(255, 255, 255, 0.12);
  background: #0c0c0e;
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.lw-product-purchase-dialog .lw-email-dialog__title {
  margin: 0 36px 16px 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fafafa;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.lw-product-purchase-confirm {
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.lw-product-purchase-confirm__row {
  display: grid;
  grid-template-columns: minmax(92px, 38%) minmax(0, 1fr);
  gap: 8px 14px;
  align-items: baseline;
  margin: 0;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-product-purchase-confirm__row:last-child {
  border-bottom: none;
}
.lw-product-purchase-confirm__row dt {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.lw-product-purchase-confirm__row dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #f4f4f5;
  line-height: 1.35;
  text-align: right;
}
.lw-product-purchase-confirm__row--price {
  background: rgba(255, 255, 255, 0.02);
}
.lw-product-purchase-confirm__row--price dt {
  color: var(--lw-muted);
}
.lw-product-purchase-confirm__row--price dd {
  color: #86efac;
  font-size: 15px;
  font-weight: 700;
}
.lw-product-purchase-dialog__balance {
  margin: 8px 2px 0;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--lw-muted);
  text-align: right;
}
.lw-product-purchase-dialog__balance span {
  color: #e4e4e7;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.lw-product-purchase-confirm__row--price dd {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  gap: 6px 8px;
}
.lw-product-purchase-confirm__price-was {
  font-size: 12px;
  font-weight: 500;
  color: var(--lw-subtle);
  text-decoration: line-through;
}
.lw-product-purchase-confirm__price-sale {
  font-size: 15px;
  font-weight: 700;
  color: #86efac;
}
.lw-product-purchase-dialog__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lw-product-purchase-dialog__cancel {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: transparent;
  color: #d4d4d8;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-product-purchase-dialog__cancel:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #fafafa;
}
.lw-product-purchase-dialog__cancel:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}
button.hero-btn.primary.lw-product-purchase-dialog__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1.15 1 0;
  min-width: 0;
  width: auto;
  min-height: 44px;
  margin: 0;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  background: #fafafa;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: none;
  transition: background 0.15s ease, transform 0.12s ease;
}
button.hero-btn.primary.lw-product-purchase-dialog__submit:hover {
  background: #fff;
  color: #0a0a0a;
  transform: translateY(-1px);
}
button.hero-btn.primary.lw-product-purchase-dialog__submit:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}
button.hero-btn.primary.lw-product-purchase-dialog__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.lw-form--product-buy .row:last-of-type {
  margin-bottom: 14px;
}
.lw-product-purchase-one {
  margin: 0 0 12px;
  font-size: 14px;
}
.lw-product-price-exchange-hint {
  margin: -4px 0 0;
  font-size: 13px;
  line-height: 1.45;
}
.lw-product-purchase-hint {
  margin: 0;
  font-size: 14px;
}
.lw-product-purchase-hint--disabled {
  font-weight: 700;
  color: var(--lw-muted);
}
.lw-product-loader-hint {
  margin: 12px 0 0;
  font-size: 13px;
}
.lw-purchases-table .lw-purchase-key-cell {
  vertical-align: middle;
  min-width: 12rem;
}
.lw-purchase-key-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-width: 0;
}
.lw-purchase-key-text {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--lw-muted);
  white-space: nowrap;
}
.lw-purchase-key-line__sep {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  line-height: 1;
  user-select: none;
}
.lw-purchase-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--lw-border);
  color: var(--lw-muted);
  white-space: nowrap;
}
.lw-purchase-status--activated {
  border-color: rgba(74, 222, 128, 0.45);
  color: #bbf7d0;
  background: rgba(22, 163, 74, 0.14);
}
.lw-purchase-status--pending {
  border-color: rgba(147, 197, 253, 0.4);
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.1);
}
.lw-purchase-status--expired {
  border-color: rgba(252, 165, 165, 0.45);
  color: #fecaca;
  background: rgba(248, 113, 113, 0.1);
}
.lw-purchase-status--frozen {
  border-color: rgba(165, 243, 252, 0.4);
  color: #a5f3fc;
  background: rgba(6, 182, 212, 0.1);
}
.lw-purchase-status--unknown {
  opacity: 0.75;
}
.lw-purchase-status--unfulfilled {
  border-color: rgba(250, 204, 21, 0.45);
  color: #fde68a;
  background: rgba(234, 179, 8, 0.12);
}
.lw-purchase-status--removed {
  border-color: rgba(248, 113, 113, 0.45);
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
}
.lw-admin-user-purchases-reissue {
  margin: 0;
}
.lw-admin-user-purchases-reissue__btn {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1.2;
}
.lw-purchase-copy-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--lw-subtle);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.lw-purchase-copy-icon:hover {
  color: var(--lw-text);
  background: rgba(255, 255, 255, 0.06);
}
.lw-purchase-copy-icon:focus-visible {
  outline: 2px solid var(--lw-accent, #93c5fd);
  outline-offset: 2px;
}
.lw-purchase-copy-icon svg {
  display: block;
}
.lw-purchases-table__col-guide {
  width: 1%;
  white-space: nowrap;
}
.lw-purchase-guide-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.15s ease;
}
.lw-purchase-guide-link:hover {
  color: #bfdbfe;
}
.lw-purchase-guide-link:focus-visible {
  outline: 2px solid rgba(147, 197, 253, 0.5);
  outline-offset: 2px;
}
.lw-email-dialog.lw-full-guide-dialog {
  width: min(1040px, calc(100vw - 24px));
  max-width: calc(100vw - 16px);
  max-height: min(92vh, 900px);
  overflow: hidden;
}
.lw-full-guide-dialog__panel {
  display: flex;
  flex-direction: column;
  max-height: min(92vh, 900px);
  padding-bottom: 0;
  overflow: hidden;
}
.lw-full-guide-dialog__title {
  margin-bottom: 12px;
  flex-shrink: 0;
}
.lw-full-guide__scroll {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 0;
  padding-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lw-full-guide__scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.lw-full-guide__card {
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-border);
  background: rgba(255, 255, 255, 0.02);
}
.lw-full-guide__card--accent {
  border-color: rgba(147, 197, 253, 0.35);
  background: rgba(59, 130, 246, 0.08);
}
.lw-full-guide__card--warn {
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.06);
}
.lw-full-guide__card-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.lw-full-guide__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--lw-text);
}
.lw-full-guide__list {
  margin: 0;
  padding-left: 1.15em;
  font-size: 13px;
  line-height: 1.55;
  color: var(--lw-muted);
}
.lw-full-guide__list li + li {
  margin-top: 6px;
}
.lw-full-guide__hosts {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--lw-border);
  background: rgba(0, 0, 0, 0.28);
  font-size: 12px;
  line-height: 1.55;
  overflow-x: auto;
}
.lw-full-guide__hosts code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--lw-text);
}
.lw-full-guide__sections {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lw-full-guide__section {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}
.lw-full-guide__section-title {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lw-text);
  cursor: pointer;
  list-style: none;
}
.lw-full-guide__section-title::-webkit-details-marker {
  display: none;
}
.lw-full-guide__section-title::before {
  content: "▸";
  display: inline-block;
  margin-right: 8px;
  color: var(--lw-subtle);
  transition: transform 0.15s ease;
}
.lw-full-guide__section[open] .lw-full-guide__section-title::before {
  transform: rotate(90deg);
}
.lw-full-guide__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0 12px 12px;
  list-style: none;
}
.lw-full-guide__tags li {
  padding: 4px 9px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  line-height: 1.35;
  color: var(--lw-muted);
}
.lw-account-layout {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 0;
  min-width: 0;
}
.lw-account-card--summary {
  position: sticky;
  top: 80px;
  width: 100%;
  min-width: 0;
}
.lw-profile-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.lw-profile-card__head {
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-profile-card__title {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.lw-profile-card__user-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.lw-profile-card__identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}
.lw-profile-card__username {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fafafa;
  line-height: 1.25;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-profile-card__username-hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}
.lw-profile-card__status {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  border: 1px solid transparent;
}
.lw-profile-card__status.is-verified {
  color: #86efac;
  background: rgba(22, 163, 74, 0.14);
  border-color: rgba(74, 222, 128, 0.28);
}
.lw-profile-card__status.is-pending {
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(251, 191, 36, 0.28);
}
.lw-profile-card__balance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 16px;
  padding: 13px 14px;
  border-radius: var(--lw-radius-md);
  border: 1px solid rgba(74, 222, 128, 0.18);
  background: linear-gradient(145deg, rgba(22, 163, 74, 0.12) 0%, rgba(0, 0, 0, 0.35) 100%);
  box-sizing: border-box;
}
.lw-profile-card__balance-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}
.lw-profile-card__balance-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
}
.lw-profile-card__balance-value {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fafafa;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}
.lw-profile-card__topup {
  flex-shrink: 0;
  align-self: center;
  margin: 0;
  padding: 7px 14px;
  font-size: 12px;
}
.lw-profile-card__balance-hint {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  max-width: 120px;
  text-align: right;
}
.lw-profile-card__details {
  margin: 0;
  padding: 4px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lw-profile-card__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 12px;
  align-items: baseline;
  padding: 9px 4px;
  border-radius: var(--lw-radius-sm);
  transition: background 0.15s ease;
}
.lw-profile-card__row:hover {
  background: rgba(255, 255, 255, 0.03);
}
.lw-profile-card__row dt {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--lw-muted);
  line-height: 1.35;
  white-space: nowrap;
}
.lw-profile-card__row dd {
  margin: 0;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--lw-text);
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-align: right;
}
.lw-profile-card__mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  color: #d4d4d8;
}
.lw-profile-card__email {
  font-size: 13px;
  line-height: 1.45;
  color: #e4e4e7;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.lw-profile-card__stats {
  margin-top: 0;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-profile-card__promo {
  margin: 6px 16px 16px;
  padding: 14px 14px 12px;
  min-width: 0;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lw-radius-md);
  background: rgba(255, 255, 255, 0.03);
}
.lw-profile-card__promo-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: #fafafa;
  line-height: 1.3;
  overflow-wrap: break-word;
}
.lw-profile-card__promo .lw-glass-notice--info {
  margin-bottom: 12px;
}
.lw-profile-card__promo-hint {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: break-word;
}
.lw-profile-card__promo-btn {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-border);
  background: rgba(255, 255, 255, 0.05);
  color: #c4c9d4;
}
.lw-profile-card__promo-btn:hover {
  border-color: var(--lw-border-hover);
  background: rgba(255, 255, 255, 0.09);
  color: #f1f5f9;
}
.lw-account-h2 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lw-subtle);
}
.lw-account-dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lw-account-dl > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lw-border);
}
.lw-account-dl > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.lw-account-dl dt {
  font-size: var(--lw-font-xs);
  color: var(--lw-muted);
  font-weight: 600;
}
.lw-account-dl dd {
  margin: 0;
  font-size: 15px;
  color: var(--lw-text);
  word-break: break-word;
}
.lw-account-balance-with-action {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  width: 100%;
}
.lw-account-balance-with-action > .lw-account-balance-inline-hint {
  flex: 1 1 100%;
}
.lw-account-balance-amount {
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fafafa;
  flex: 1;
  min-width: 0;
}
.lw-account-balance-inline-hint {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  max-width: 100%;
}
.lw-account-btn-topup {
  display: inline-block;
  padding: 7px 18px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  border: 1px solid var(--lw-btn-primary-border);
  border-radius: var(--lw-radius-sm);
  cursor: pointer;
  color: var(--lw-btn-primary-text);
  background: var(--lw-btn-primary-bg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  color-scheme: dark;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.12s ease;
  flex-shrink: 0;
}
.lw-account-btn-topup:hover {
  background: var(--lw-btn-primary-bg-hover);
  border-color: var(--lw-btn-border-hover);
}
.lw-account-btn-topup:active {
  transform: translateY(1px);
}
.lw-account-btn-topup:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
.lw-account-forms {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lw-form--account .row {
  margin-bottom: 12px;
}
.lw-form--inline-actions {
  margin: 12px 0 18px;
}
.lw-account-forms .hero-btn.hero-btn--sm.lw-account-btn,
.lw-account-forms button.hero-btn.hero-btn--sm.lw-account-btn {
  width: auto;
  max-width: 100%;
  align-self: flex-start;
  padding: 6px 12px;
  font-size: 12px;
}
.lw-account-forms .hero-btn.hero-btn--sm.lw-account-btn.primary,
.lw-account-forms button.hero-btn.hero-btn--sm.lw-account-btn.primary {
  background: var(--lw-btn-primary-bg);
  border-color: var(--lw-btn-primary-border);
  color: var(--lw-btn-primary-text);
}
.lw-account-balance-limits--modal {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.45;
}
.lw-account-email-hint {
  margin-top: 0;
  font-size: 14px;
}
.lw-account-email-card-hint {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
}
.lw-account-email-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.lw-email-change-dialog {
  width: min(480px, calc(100vw - 24px));
}
.lw-email-change-dialog__panel {
  padding: 26px 24px 22px;
  background: linear-gradient(165deg, rgba(22, 22, 26, 0.98) 0%, rgba(10, 10, 12, 0.99) 100%);
  border: 1px solid var(--lw-glass-border);
  border-radius: var(--lw-radius-xl);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.lw-email-change-dialog__hint {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
}
.lw-email-change-form .row:last-of-type {
  margin-bottom: 14px;
}
.lw-email-change-dialog__save {
  width: 100%;
  min-height: 44px;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 12px;
  border-color: rgba(87, 242, 135, 0.38);
  background: rgba(34, 197, 94, 0.14);
  color: #9ae6b4;
}
.lw-email-change-dialog__save:hover {
  background: rgba(34, 197, 94, 0.24);
  border-color: rgba(87, 242, 135, 0.55);
  color: #bbf7d0;
}
.lw-email-change-dialog__verify-open {
  width: 100%;
  max-width: 100%;
}
.lw-email-verify-dialog {
  width: min(460px, calc(100vw - 24px));
}
.lw-email-verify-dialog__panel {
  padding: 26px 24px 22px;
  background: linear-gradient(165deg, rgba(22, 22, 26, 0.98) 0%, rgba(10, 10, 12, 0.99) 100%);
  border: 1px solid var(--lw-glass-border);
  border-radius: var(--lw-radius-xl);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.lw-email-verify-dialog__close {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}
.lw-email-verify-dialog__title {
  margin-bottom: 10px;
}
.lw-email-verify-dialog__lead {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.lw-email-verify-dialog__spam {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.48);
}
.lw-email-verify-dialog__status {
  margin-bottom: 12px;
}
.lw-email-verify-dialog__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lw-email-verify-dialog__otp {
  margin: 0;
}
.lw-email-verify-dialog__resend {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fafafa;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.lw-email-verify-dialog__resend:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.lw-email-verify-dialog__resend:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.lw-email-dialog {
  border: none;
  padding: 0;
  background: transparent;
  max-width: calc(100vw - 24px);
  width: 420px;
  color: var(--lw-text);
}
.lw-email-dialog.lw-deposit-dialog {
  width: min(600px, calc(100vw - 24px));
  max-width: calc(100vw - 16px);
}
.lw-email-dialog.lw-deposit-dialog:has(.lw-deposit-layout--single) {
  width: min(440px, calc(100vw - 24px));
}
.lw-email-dialog.lw-pm--site {
  width: min(820px, calc(100vw - 24px));
  max-width: calc(100vw - 16px);
}
.lw-email-dialog.lw-pm--limits {
  width: min(560px, calc(100vw - 24px));
  max-width: calc(100vw - 16px);
}
.lw-email-dialog.lw-pm > .lw-pm__shell {
  padding: 0;
  overflow: hidden;
  background: #0a0a0b;
}
.lw-email-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}
.lw-email-dialog__panel {
  position: relative;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-lg);
  background: var(--lw-bg);
  padding: 22px 20px 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}
.lw-email-dialog__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--lw-radius-sm);
  background: transparent;
  color: var(--lw-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.lw-email-dialog__close:hover {
  color: var(--lw-text);
  background: rgba(255, 255, 255, 0.06);
}
.lw-email-dialog__title {
  margin: 0 40px 12px 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: #fafafa;
  letter-spacing: -0.02em;
}
.lw-email-dialog__spam {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.5;
}
.lw-email-dialog__hint {
  margin: -6px 0 14px;
  font-size: 13px;
  line-height: 1.5;
}
.lw-email-dialog__status {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.45;
}
.lw-email-dialog__status.ok {
  color: #9ae6b4;
}
.lw-email-dialog__status.err {
  color: #fca5a5;
}
.lw-form--account-modal .row {
  margin-bottom: 14px;
}
.lw-otp-field {
  margin-bottom: 14px;
}
.lw-otp-field__label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lw-muted);
}
.lw-otp {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2.2vw, 12px);
}
.lw-otp--verify {
  gap: clamp(8px, 2.4vw, 12px);
}
.lw-otp__cell {
  box-sizing: border-box;
  width: clamp(44px, 12vw, 54px);
  height: clamp(52px, 13vw, 60px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  color: #fafafa;
  font-family: ui-monospace, Consolas, monospace;
  font-size: clamp(22px, 5.5vw, 26px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  caret-color: transparent;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}
.lw-otp__cell:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}
.lw-otp__cell:focus {
  outline: none;
  border-color: rgba(245, 230, 184, 0.45);
  background: #111114;
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.18);
}
.lw-otp__cell.is-filled {
  border-color: rgba(255, 255, 255, 0.24);
  background: #111114;
}
.lw-email-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}
.lw-sysreq-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--lw-text);
  font-size: 14px;
  line-height: 1.65;
}
.lw-sysreq-list li {
  margin-bottom: 6px;
}
.lw-sysreq-li--warn {
  color: #fbbf24;
}
.lw-sysreq-dl {
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lw-sysreq-dl > div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045) 0%, rgba(0, 0, 0, 0.28) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-sysreq-dl > div:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055) 0%, rgba(0, 0, 0, 0.32) 100%);
}
.lw-sysreq-dl dt {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lw-subtle);
}
.lw-sysreq-dl dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #fafafa;
}
.lw-product-h3 {
  margin: 18px 0 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lw-subtle);
}
@media (max-width: 1023px) {
  .lw-account-shell__body {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lw-account-sidebar {
    position: static;
    margin: 0;
  }
  .lw-account-sidebar__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 8px;
    overflow: visible;
    border-radius: var(--lw-radius-lg);
    border: 1px solid var(--lw-border);
    background: var(--lw-surface);
    box-shadow: var(--lw-shadow-sm);
  }
  .lw-account-sidebar__nav > .lw-account-sidebar__label:first-child {
    display: block;
    margin: 0 0 4px;
    padding: 0 10px;
  }
  .lw-account-sidebar__label--admin {
    margin-top: 6px;
  }
  .lw-account-sidebar__link {
    width: 100%;
    flex: none;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 10px;
    border-radius: var(--lw-radius-sm);
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
  }
  .lw-account-sidebar__link.is-active::before {
    display: block;
    top: 6px;
    bottom: 6px;
  }
  .lw-account-sidebar__link.is-active {
    background: var(--lw-account-accent-bg);
    border-color: var(--lw-account-accent-border);
    box-shadow: none;
  }
  .lw-account-sidebar__icon {
    width: 18px;
    height: 18px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: var(--lw-muted);
  }
  .lw-account-sidebar__link.is-active .lw-account-sidebar__icon {
    background: transparent;
    color: var(--lw-text);
  }
  .lw-account-sidebar__icon svg {
    width: 18px;
    height: 18px;
  }
  .lw-account-sidebar__text {
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .lw-account-sidebar__link--admin:first-of-type {
    margin-left: 0;
    padding-left: 10px;
  }
  .lw-account-sidebar__link--admin:first-of-type::after {
    display: none;
  }
  .lw-account-sidebar__admin {
    display: block;
    margin: 4px 0 0;
    padding: 6px 0 0;
    border-top: 1px solid var(--lw-border);
  }
  .lw-account-sidebar__admin > summary {
    display: flex;
    margin: 0 0 4px;
    padding: 4px 10px;
  }
  .lw-account-sidebar__admin-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 0;
  }
  .lw-account-settings-grid,
  .lw-account-security-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: none;
  }
  .lw-account-settings-grid {
    grid-template-areas:
      "profile"
      "promo";
  }
  .lw-account-settings-grid > .lw-account-card--profile,
  .lw-account-settings-grid > .lw-account-card--promo {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
  .lw-account-main,
  .lw-account-pane,
  .lw-account-settings-grid {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .lw-profile-compact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lw-profile-compact__top {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .lw-profile-compact__top .lw-profile-card__status {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 0;
  }
  .lw-promo-redeem-inline {
    grid-template-columns: 1fr;
  }
  .lw-profile-compact__cell dd {
    overflow-wrap: normal;
    word-break: normal;
  }
  .lw-promo-redeem-inline__submit {
    width: 100%;
    justify-content: center;
    min-height: 36px;
    padding: 8px 14px;
  }
  .lw-account-card--security .lw-form--account .hero-btn.hero-btn--sm.lw-account-btn,
  .lw-account-card--security .lw-form--account button.hero-btn.hero-btn--sm.lw-account-btn {
    width: 100%;
    min-height: 36px;
    justify-content: center;
  }
  .lw-account-ledger__summary {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px;
  }
  .lw-account-ledger__summary--purchases {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .lw-account-ledger__summary--purchases .lw-account-ledger__summary-stats {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }
  .lw-account-ledger__topup {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    min-height: var(--lw-touch-target, 44px);
  }
  .lw-account-ledger__row {
    padding: 12px 14px;
    gap: 10px 12px;
  }
  .lw-account-purchase-list {
    padding: 10px 12px 14px;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 8px;
  }
  .lw-account-purchase-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "main status"
      "key key";
    padding: 12px 14px;
    gap: 8px 10px;
  }
  .lw-account-purchase-row--actions {
    grid-template-areas:
      "main status"
      "key key"
      "actions actions";
  }
  .lw-account-purchase-row__key {
    flex-wrap: nowrap;
  }
  .lw-account-purchase-row__key .lw-purchase-key-text {
    white-space: nowrap;
    word-break: normal;
  }
}
@media (max-width: 900px) {
  .lw-account-layout {
    grid-template-columns: 1fr;
  }
  .lw-account-card--summary {
    position: static;
  }
  .lw-profile-card__balance {
    flex-wrap: wrap;
  }
  .lw-profile-card__balance-hint {
    max-width: none;
    text-align: left;
    flex: 1 1 100%;
  }
}
@media (max-width: 420px) {
  .lw-profile-card__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .lw-profile-card__row dt {
    white-space: normal;
  }
  .lw-profile-card__row dd {
    text-align: left;
  }
  .lw-profile-card__user-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .lw-profile-compact__grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .lw-profile-compact__cell {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .lw-profile-compact__cell dt {
    flex: 1 1 auto;
    min-width: 0;
  }
  .lw-profile-compact__cell dd {
    flex: 0 0 auto;
    text-align: right;
    white-space: nowrap;
  }
  .lw-profile-compact__balance {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .lw-profile-compact__balance .lw-profile-card__topup,
  .lw-profile-compact__balance .lw-account-btn-topup {
    width: 100%;
    justify-content: center;
  }
}
.lw-mobile-blocked-page {
  min-height: 100dvh;
}
.lw-mobile-blocked-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 24px 16px 88px;
  box-sizing: border-box;
}
.lw-mobile-blocked-card {
  width: min(100%, 420px);
  margin: 0;
  padding: 28px 22px;
  text-align: center;
}
.lw-mobile-blocked-brand {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lw-muted);
}
.lw-mobile-blocked-title {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--lw-text);
}
.lw-mobile-blocked-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--lw-text);
}
.lw-mobile-blocked-lang {
  margin-top: 24px;
  align-items: center;
}


.lw-catalog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.lw-catalog-toolbar__search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.lw-catalog-toolbar__input {
  flex: 1 1 200px;
  min-width: 0;
  max-width: 360px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--lw-border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--lw-text);
}
.lw-catalog-toolbar__status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lw-catalog-status-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--lw-border);
  font-size: 13px;
  color: var(--lw-muted);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.lw-catalog-status-chip:hover {
  color: var(--lw-text);
  border-color: rgba(255, 255, 255, 0.2);
}
.lw-catalog-status-chip.is-active {
  color: var(--lw-text);
  background: var(--lw-account-accent-bg);
  border-color: var(--lw-account-accent-border);
}


.home-trust-panel {
  text-align: center;
}
.home-howto-panel {
  text-align: center;
}
.home-howto-steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}
.home-howto-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 16px 16px 18px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-lg);
  background: rgba(0, 0, 0, 0.22);
}
.home-howto-step__num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #fafafa;
}
.home-howto-step__body h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--lw-text);
}
.home-howto-step__body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--lw-muted);
}
.home-howto-step.lw-animate-in:nth-child(1) {
  animation-delay: 0.04s;
}
.home-howto-step.lw-animate-in:nth-child(2) {
  animation-delay: 0.1s;
}
.home-howto-step.lw-animate-in:nth-child(3) {
  animation-delay: 0.16s;
}
.landing-section--popular .section-lead--center {
  margin-top: 8px;
  margin-bottom: 20px;
}
.home-community-btn--telegram {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.28) 0%, rgba(2, 132, 199, 0.22) 100%);
}
.home-community-btn--telegram:hover {
  border-color: rgba(125, 211, 252, 0.45);
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.38) 0%, rgba(2, 132, 199, 0.3) 100%);
}
.home-trust-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 0;
  padding: 0;
}
.home-trust-stats > div {
  margin: 0;
  padding: 14px 10px;
  border-radius: 12px;
  border: 1px solid var(--lw-border);
  background: rgba(0, 0, 0, 0.2);
}
.home-trust-stats dt {
  margin: 0 0 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lw-subtle);
}
.home-trust-stats dd {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--lw-text);
}
.home-trust-stats__star {
  margin-left: 4px;
  color: #fbbf24;
}
.home-trust-cta {
  margin: 18px 0 0;
}


.lw-product-status-log {
  margin-top: clamp(24px, 4vw, 36px);
}
.lw-product-status-log__list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-product-status-log__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--lw-border);
  background: rgba(0, 0, 0, 0.18);
}
.lw-product-status-log__time {
  font-size: 13px;
  color: var(--lw-subtle);
}
.lw-product-status-log__change {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.lw-product-status-log__arrow {
  color: var(--lw-subtle);
}
.lw-product-status-log__by {
  font-size: 12px;
}


.lw-changelog-feed {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lw-changelog-feed__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 10px;
}
.lw-changelog-feed__title {
  margin: 0;
  font-size: 1.1rem;
}


.lw-account-card--changelog-admin {
  max-width: 100%;
}
.lw-admin-changelog-page__head {
  margin-bottom: 4px;
}
.lw-admin-changelog-page__lead {
  margin: 6px 0 0;
  font-size: 14px;
  max-width: 52ch;
}
.lw-admin-changelog-compose {
  margin: 20px 0 28px;
  padding: clamp(16px, 2.5vw, 22px) clamp(18px, 3vw, 24px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.35) 55%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.lw-admin-changelog-compose__title {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.lw-admin-changelog-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  max-width: none;
}
.lw-admin-changelog-form__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lw-admin-changelog-form__fields .row {
  margin-bottom: 0;
}
.lw-admin-changelog-form__fields label {
  font-size: 12px;
  font-weight: 600;
  color: var(--lw-muted);
  margin-bottom: 8px;
}
.lw-admin-changelog-form__fields input,
.lw-admin-changelog-form__fields textarea {
  width: 100%;
  box-sizing: border-box;
}
.lw-admin-changelog-form__fields textarea {
  min-height: 140px;
  resize: vertical;
}
.lw-admin-changelog-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lw-admin-changelog-form__submit {
  flex: 0 0 auto;
  min-width: 168px;
  min-height: 42px;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.lw-admin-form-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--lw-text);
  cursor: pointer;
  user-select: none;
}
.lw-admin-form-check--changelog {
  position: relative;
  flex: 0 1 auto;
  flex-shrink: 0;
  max-width: 100%;
}
.lw-admin-form-check__text {
  line-height: 1.45;
  flex: 1 1 auto;
  min-width: 0;
}
.lw-admin-form-check--changelog .lw-admin-form-check__input {
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  transform: translateY(-50%);
}
.lw-admin-form-check--changelog .lw-admin-form-check__box {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin: 0;
  pointer-events: none;
}
.lw-admin-form-check:not(.lw-admin-form-check--changelog) .lw-admin-form-check__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lw-admin-changelog-entries__title {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.lw-admin-changelog-empty {
  margin: 0;
  padding: 20px 16px;
  text-align: center;
  font-size: 14px;
  color: var(--lw-muted);
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
}
.lw-admin-form-check__box {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 1px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-admin-form-check:hover .lw-admin-form-check__box {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.5);
}
.lw-admin-form-check:has(.lw-admin-form-check__input:checked) .lw-admin-form-check__box {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}
.lw-admin-form-check:has(.lw-admin-form-check__input:checked) .lw-admin-form-check__box::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid #f4f4f5;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.lw-admin-form-check:has(.lw-admin-form-check__input:focus-visible) .lw-admin-form-check__box {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}


.lw-admin-seg {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 12px 0 16px;
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--lw-border);
  background: rgba(0, 0, 0, 0.25);
}
.lw-admin-seg__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 9px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--lw-muted);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.lw-admin-seg__btn:hover {
  color: var(--lw-text);
  background: rgba(255, 255, 255, 0.05);
}
.lw-admin-seg__btn.is-active {
  color: var(--lw-text);
  background: var(--lw-account-accent-bg);
  border-color: var(--lw-account-accent-border);
  box-shadow: none;
}
.lw-admin-seg__btn.is-active::before {
  content: none;
}


.lw-admin-reviews-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lw-admin-reviews-item {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--lw-border);
  background: rgba(0, 0, 0, 0.15);
}
.lw-admin-reviews-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px 16px;
}
.lw-admin-reviews-item__product {
  font-size: 15px;
  font-weight: 600;
}
.lw-admin-reviews-item__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
}
.lw-admin-reviews-item__who {
  font-size: 12px;
  color: var(--lw-subtle);
  line-height: 1.4;
}
.lw-admin-reviews-item__sep {
  margin: 0 6px;
  opacity: 0.55;
}
.lw-admin-reviews-item__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
}
.lw-admin-review-star {
  color: rgba(255, 255, 255, 0.22);
}
.lw-admin-review-star.is-filled {
  color: #fbbf24;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.35);
}
.lw-admin-reviews-item__text {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--lw-muted);
}
.lw-admin-reviews-item__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-admin-reviews-item__form {
  margin: 0;
}


.lw-admin-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 34px;
  padding: 7px 16px;
  border-radius: 9px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  color-scheme: dark;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}
.lw-admin-action-btn--secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #e4e4e7;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.lw-admin-action-btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fafafa;
}
.lw-admin-action-btn--primary {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.07) 100%);
  color: #fafafa;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}
.lw-admin-action-btn--primary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.11) 100%);
}
.lw-admin-action-btn--danger {
  border-color: rgba(248, 113, 113, 0.4);
  background: linear-gradient(180deg, rgba(185, 28, 28, 0.55) 0%, rgba(127, 29, 29, 0.45) 100%);
  color: #fecaca;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.lw-admin-action-btn--danger:hover {
  border-color: rgba(252, 165, 165, 0.55);
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.65) 0%, rgba(153, 27, 27, 0.55) 100%);
  color: #fff;
}
.lw-admin-action-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}
.lw-admin-action-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.lw-admin-changelog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lw-admin-changelog-item {
  padding: 16px 18px;
  margin: 0;
  border-radius: 12px;
  border: 1px solid var(--lw-border);
  background: rgba(0, 0, 0, 0.2);
}
.lw-admin-changelog-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 14px;
}
.lw-admin-changelog-item__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--lw-text);
}
.lw-admin-changelog-item__date {
  font-size: 12px;
  white-space: nowrap;
}
.lw-admin-changelog-item__body {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--lw-muted);
}
.lw-admin-changelog-item__actions {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-admin-changelog-item__delete {
  margin: 0;
}


.lw-product-lead .lw-product-recent-purchases {
  margin-top: 14px;
}
.lw-product-recent-purchases {
  min-width: 0;
}
.lw-product-recent-purchases__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--lw-muted);
}
.lw-product-recent-purchases__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lw-product-recent-purchases__track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.lw-product-recent-purchases__item {
  flex: 0 0 auto;
  min-width: 132px;
  scroll-snap-align: start;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  gap: 4px;
}
.lw-product-recent-purchases__user {
  font-size: 13px;
  font-weight: 700;
  color: var(--lw-text);
}
.lw-product-recent-purchases__term {
  font-size: 12px;
  color: var(--lw-muted);
}
.lw-product-recent-purchases__amount {
  font-size: 13px;
  font-weight: 600;
  color: #c9a227;
}
.lw-account-social-lead {
  margin: 0 0 14px;
  font-size: 14px;
}
.lw-account-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 720px) {
  .lw-account-social-grid {
    grid-template-columns: 1fr;
  }
}
.lw-account-social-item {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.lw-account-chip-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #e4e4e7;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
.lw-account-chip-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fafafa;
}
.lw-account-chip-btn:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
.lw-account-chip-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.lw-account-chip-btn--accent {
  border-color: rgba(125, 211, 252, 0.32);
  background: rgba(14, 165, 233, 0.14);
  color: #bae6fd;
}
.lw-account-chip-btn.lw-account-ledger__topup {
  padding: 7px 14px;
  font-size: 12px;
  border-radius: 10px;
}
.lw-account-chip-btn--accent:hover {
  background: rgba(14, 165, 233, 0.22);
  border-color: rgba(125, 211, 252, 0.45);
  color: #e0f2fe;
}
.lw-account-chip-btn--warn {
  border-color: rgba(248, 113, 113, 0.38);
  background: rgba(220, 38, 38, 0.14);
  color: #fecaca;
}
.lw-account-chip-btn--warn:hover {
  background: rgba(220, 38, 38, 0.24);
  border-color: rgba(252, 165, 165, 0.5);
  color: #fff;
}
.lw-account-chip-btn--ghost {
  border-color: rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(228, 228, 231, 0.72);
}
.lw-account-chip-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fafafa;
}
.lw-account-card--security .lw-account-chip-btn {
  margin-top: 2px;
}
.lw-account-card--social .lw-account-chip-btn--accent {
  border-color: rgba(87, 242, 135, 0.38);
  background: rgba(34, 197, 94, 0.14);
  color: #9ae6b4;
}
.lw-account-card--social .lw-account-chip-btn--accent:hover {
  background: rgba(34, 197, 94, 0.24);
  border-color: rgba(87, 242, 135, 0.55);
  color: #bbf7d0;
}
.lw-account-social-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.lw-account-social-item__name {
  font-weight: 700;
}
.lw-account-social-item__badge.is-linked {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  color: #57f287;
  background: rgba(87, 242, 135, 0.12);
}
.lw-account-social-item__hint {
  font-size: 12px;
  margin: 0 0 8px;
  line-height: 1.45;
}
.lw-account-social-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 22px;
}
.lw-account-social-item__unlink-form {
  margin: 0;
  flex-shrink: 0;
}
.lw-account-social-item__user,
.lw-account-social-item__bonus {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-telegram-link-wrap {
  position: relative;
  display: inline-block;
  margin-top: 4px;
}
.lw-telegram-link-wrap__btn {
  pointer-events: none;
  display: inline-flex;
}
.lw-telegram-link-wrap__widget {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  opacity: 0.01;
  min-width: 100%;
  min-height: 100%;
}
.lw-telegram-link-wrap__widget iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  cursor: pointer;
}

/* Bonuses roulette */
.lw-account-card--bonuses {
  padding: clamp(18px, 2.5vw, 28px);
}
.lw-bonuses__intro {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 62ch;
}
.lw-bonuses__progress {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.lw-bonuses__progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
}
.lw-bonuses__progress-pct {
  font-weight: 700;
  color: #f5e6b8;
}
.lw-bonuses__progress-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.lw-bonuses__progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.65), rgba(245, 230, 184, 0.95));
  transition: width 0.35s ease;
}
.lw-bonuses__status {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}
.lw-bonuses__status--ok {
  color: #9ae6b4;
}
.lw-bonuses__shell {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 420px;
}
.lw-bonuses__main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 18px;
}
.lw-bonuses__reel-strip {
  width: 100%;
  min-width: 0;
}
.lw-bonuses__reel.is-locked .lw-bonuses__reel-viewport {
  filter: grayscale(1) brightness(0.38);
  pointer-events: none;
}
.lw-bonuses__reel-lock {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: inherit;
  background: rgba(8, 8, 12, 0.78);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: none;
}
.lw-bonuses__reel-lock[hidden] {
  display: none !important;
}
.lw-bonuses__reel-lock-timer {
  display: block;
  width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-variant-numeric: tabular-nums;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  color: #f5e6b8;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}
.lw-bonuses__reel.is-spinning {
  border-color: rgba(245, 230, 184, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(201, 162, 39, 0.2),
    0 0 28px rgba(201, 162, 39, 0.18);
  animation: lw-bonuses-reel-spin-glow 1.2s ease-in-out infinite alternate;
}
@keyframes lw-bonuses-reel-spin-glow {
  from { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 1px rgba(201, 162, 39, 0.15), 0 0 18px rgba(201, 162, 39, 0.12); }
  to { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(201, 162, 39, 0.35), 0 0 32px rgba(201, 162, 39, 0.28); }
}
.lw-bonuses__wheel-foot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-height: 0;
}
.lw-bonuses__wheel-foot.is-busy {
  min-height: 0;
  margin: 0;
  padding: 0;
}
.lw-bonuses__prize-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.lw-bonuses__prize-compact--done {
  animation: lw-bonuses-prize-in 0.45s ease-out;
}
@keyframes lw-bonuses-prize-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.lw-bonuses__prize-compact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.48);
}
.lw-bonuses__prize-compact-value {
  width: 100%;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #f5e6b8;
  text-align: center;
  text-wrap: balance;
}
.lw-bonuses__prize-compact-key {
  width: 100%;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  word-break: break-all;
  text-align: center;
}
.lw-bonuses__prize-compact-key code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  color: #fafafa;
}

body.lw-bonuses-win-open {
  overflow: hidden;
}
.lw-bonuses-win {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.lw-bonuses-win[hidden] {
  display: none !important;
}
.lw-bonuses-win__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(201, 162, 39, 0.22), transparent 52%),
    rgba(4, 4, 8, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: lw-bonuses-win-fade 0.35s ease-out;
}
.lw-bonuses-win__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  animation: lw-bonuses-win-pop 0.55s cubic-bezier(0.18, 0.92, 0.2, 1.02);
}
.lw-bonuses-win__rays {
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 0deg, transparent, rgba(245, 230, 184, 0.12), transparent, rgba(245, 230, 184, 0.08), transparent);
  animation: lw-bonuses-win-spin 12s linear infinite;
  pointer-events: none;
  opacity: 0.75;
}
.lw-bonuses-win__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 34px 28px 28px;
  border-radius: 22px;
  border: 1px solid rgba(245, 230, 184, 0.28);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(16, 16, 22, 0.92);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-align: center;
}
.lw-bonuses-win__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  font-size: 34px;
  font-weight: 800;
  color: #fafafa;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  animation: lw-bonuses-win-badge 0.8s ease-out;
}
.lw-bonuses-win__kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 230, 184, 0.82);
}
.lw-bonuses-win__title {
  margin: 0;
  font-size: clamp(22px, 4.5vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  color: #f5e6b8;
  text-wrap: balance;
}
.lw-bonuses-win__message {
  margin: 0;
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.lw-bonuses-win__key {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.lw-bonuses-win__key-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  text-align: left;
}
.lw-bonuses-win__key-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}
.lw-bonuses-win__key-row code {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(12px, 2.8vw, 15px);
  line-height: 1.35;
  color: #fafafa;
  word-break: break-all;
  text-align: left;
}
.lw-bonuses-win__copy {
  flex: 0 0 auto;
  appearance: none;
  border: 1px solid rgba(245, 230, 184, 0.28);
  border-radius: 12px;
  padding: 0 14px;
  background: rgba(245, 230, 184, 0.08);
  color: #f5e6b8;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.lw-bonuses-win__copy:hover {
  background: rgba(245, 230, 184, 0.14);
}
.lw-bonuses-win__close {
  appearance: none;
  width: 100%;
  margin-top: 6px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid rgba(245, 230, 184, 0.35);
  border-radius: 14px;
  background: linear-gradient(180deg, #e8d49a 0%, #c9a227 48%, #a8841a 100%);
  color: #1a1408;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.35);
}
.lw-bonuses-win__close:hover {
  filter: brightness(1.05);
}
.lw-bonuses-win--uncommon .lw-bonuses-win__badge {
  background: linear-gradient(165deg, rgba(56, 120, 90, 0.55), rgba(20, 48, 38, 0.95));
}
.lw-bonuses-win--rare .lw-bonuses-win__badge {
  background: linear-gradient(165deg, rgba(88, 72, 180, 0.55), rgba(34, 24, 72, 0.95));
}
.lw-bonuses-win--epic .lw-bonuses-win__badge {
  background: linear-gradient(165deg, rgba(170, 110, 40, 0.6), rgba(56, 34, 8, 0.95));
}
.lw-bonuses-win--legendary .lw-bonuses-win__badge {
  background: linear-gradient(165deg, rgba(210, 70, 110, 0.58), rgba(72, 18, 48, 0.95));
}
.lw-bonuses-win--common .lw-bonuses-win__badge {
  background: linear-gradient(165deg, rgba(120, 120, 130, 0.45), rgba(40, 40, 48, 0.95));
}
@keyframes lw-bonuses-win-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes lw-bonuses-win-pop {
  from { opacity: 0; transform: scale(0.88) translateY(18px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes lw-bonuses-win-badge {
  0% { transform: scale(0.6) rotate(-8deg); opacity: 0; }
  70% { transform: scale(1.08) rotate(2deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes lw-bonuses-win-spin {
  to { transform: rotate(360deg); }
}
@media (max-width: 520px) {
  .lw-bonuses-win__key-row {
    flex-direction: column;
  }
  .lw-bonuses-win__copy {
    min-height: 42px;
  }
}

.lw-bonuses__history-rail {
  flex: 0 0 clamp(250px, 24vw, 320px);
  width: clamp(250px, 24vw, 320px);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}
.lw-bonuses__history-head {
  flex: 0 0 auto;
  margin-bottom: 12px;
}
.lw-bonuses__history-title {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.lw-bonuses__history-lead {
  margin: 6px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}
.lw-bonuses__history-scroll {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lw-bonuses__play {
  grid-area: play;
  min-width: 0;
}
.lw-bonuses__history {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
}
.lw-bonuses-panel {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lw-bonuses-panel__head {
  margin-bottom: 10px;
}
.lw-bonuses-panel__title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.lw-bonuses-panel__lead {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}
.lw-bonuses__play .lw-bonuses-panel__head {
  margin-bottom: 10px;
}
.lw-bonuses__reel-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  width: 100%;
}
.lw-bonuses__reel-bar .lw-bonuses__reel,
.lw-bonuses__reel {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 18px 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.lw-bonuses__reel-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  min-height: 128px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 1.5%, #000 98.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 1.5%, #000 98.5%, transparent 100%);
}
.lw-bonuses__reel-track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: max-content;
  padding: 6px 0;
  will-change: transform;
}
.lw-bonuses__reel-item {
  flex: 0 0 auto;
  width: 120px;
}
.lw-bonuses__reel-pointer {
  position: absolute;
  left: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  margin-left: -9px;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}
.lw-bonuses__reel-pointer--top {
  top: 2px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 14px solid #f5e6b8;
}
.lw-bonuses__reel-pointer--bottom {
  bottom: 2px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 14px solid #f5e6b8;
}
.lw-bonuses__reel::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(180deg, rgba(245, 230, 184, 0.15), #f5e6b8 45%, rgba(245, 230, 184, 0.15));
  box-shadow: 0 0 12px rgba(245, 230, 184, 0.35);
  z-index: 2;
  pointer-events: none;
}
.lw-bonuses__spin-btn {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 11px 18px;
  margin: 0;
  border: 1px solid rgba(245, 230, 184, 0.35);
  border-radius: 12px;
  background: linear-gradient(180deg, #e8d49a 0%, #c9a227 48%, #a8841a 100%);
  color: #1a1408;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  color-scheme: dark;
  box-shadow:
    0 10px 28px rgba(201, 162, 39, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    filter 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.12s ease,
    opacity 0.15s ease;
}
.lw-bonuses__spin-btn:hover:not(:disabled) {
  filter: brightness(1.06);
  box-shadow:
    0 12px 32px rgba(201, 162, 39, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.lw-bonuses__spin-btn:active:not(:disabled) {
  transform: translateY(1px);
}
.lw-bonuses__spin-btn:focus-visible {
  outline: 2px solid rgba(245, 230, 184, 0.75);
  outline-offset: 2px;
}
.lw-bonuses__spin-btn--paid {
  background: linear-gradient(180deg, #dbeafe 0%, #60a5fa 48%, #2563eb 100%);
  border-color: rgba(191, 219, 254, 0.45);
  color: #0f172a;
  box-shadow:
    0 8px 24px rgba(37, 99, 235, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.lw-bonuses__spin-btn--paid:hover:not(:disabled) {
  box-shadow:
    0 12px 32px rgba(37, 99, 235, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.lw-bonuses__hint--paid {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.lw-bonuses__wheel-foot .lw-bonuses__prize-compact + .lw-bonuses__spin-btn {
  margin-top: 14px;
}
.lw-bonuses__wheel-foot .lw-bonuses__prize-compact + .lw-bonuses__spin-btn + .lw-bonuses__hint--paid {
  margin-top: 8px;
}
.lw-bonuses__spin-btn:disabled {
  opacity: 0.72;
  cursor: wait;
  filter: saturate(0.85);
}
.lw-bonuses__spin-btn[hidden] {
  display: none !important;
}
.lw-bonuses__hint {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-align: left;
  max-width: none;
}
.lw-bonuses__hint--err {
  color: #fca5a5;
}
.lw-bonuses__result {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 40ch;
}
.lw-bonuses__result--win strong {
  font-size: 18px;
  color: #f5e6b8;
}
.lw-bonuses__result--done .lw-bonuses__result-label {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}
.lw-bonuses__result-prize {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #f5e6b8;
}
.lw-bonuses__result-key {
  margin: 4px 0 0;
  font-size: 13px;
  word-break: break-all;
}
.lw-bonuses__result-key code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  color: #fafafa;
}
.lw-bonuses__result-hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.lw-bonuses__history-empty {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}
.lw-bonuses__history-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.lw-bonuses__history-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-bonuses__history-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.lw-bonuses__history-player {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(245, 230, 184, 0.82);
}
.lw-bonuses__history-prize {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
}
.lw-bonuses__history-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
}
.lw-bonuses__catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 12px;
}
.lw-bonus-prize-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lw-bonus-prize-card__shine {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: 0.45;
  pointer-events: none;
}
.lw-bonus-prize-card__face {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}
.lw-bonus-prize-card__chance {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.82);
}
.lw-bonus-prize-card__glyph {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fafafa;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.lw-bonus-prize-card__label {
  margin: 0;
  width: 100%;
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}
.lw-bonus-prize-card--compact {
  flex-shrink: 0;
  width: 52px;
}
.lw-bonus-prize-card--compact .lw-bonus-prize-card__face {
  aspect-ratio: 1;
  border-radius: 12px;
}
.lw-bonus-prize-card--compact .lw-bonus-prize-card__glyph {
  font-size: 14px;
}
.lw-bonus-prize-card--reel {
  width: 100%;
}
.lw-bonus-prize-card--reel .lw-bonus-prize-card__face {
  aspect-ratio: 1;
  min-height: 120px;
  border-radius: 14px;
}
.lw-bonus-prize-card--reel .lw-bonus-prize-card__glyph {
  font-size: 24px;
}
.lw-bonuses__reel-item.is-winner .lw-bonus-prize-card--reel .lw-bonus-prize-card__face {
  box-shadow: 0 0 0 2px rgba(245, 230, 184, 0.55), 0 0 24px rgba(245, 230, 184, 0.22);
  transform: scale(1.04);
}
.lw-bonus-prize-card--common .lw-bonus-prize-card__face {
  background: linear-gradient(165deg, rgba(120, 120, 130, 0.35), rgba(40, 40, 48, 0.85));
}
.lw-bonus-prize-card--common .lw-bonus-prize-card__shine {
  background: radial-gradient(circle at 50% 0%, rgba(180, 180, 190, 0.2), transparent 70%);
}
.lw-bonus-prize-card--uncommon .lw-bonus-prize-card__face {
  background: linear-gradient(165deg, rgba(56, 120, 90, 0.45), rgba(20, 48, 38, 0.9));
  border-color: rgba(120, 220, 170, 0.22);
}
.lw-bonus-prize-card--uncommon .lw-bonus-prize-card__shine {
  background: radial-gradient(circle at 50% 0%, rgba(120, 220, 170, 0.28), transparent 70%);
}
.lw-bonus-prize-card--rare .lw-bonus-prize-card__face {
  background: linear-gradient(165deg, rgba(88, 72, 180, 0.5), rgba(34, 24, 72, 0.92));
  border-color: rgba(170, 140, 255, 0.28);
}
.lw-bonus-prize-card--rare .lw-bonus-prize-card__shine {
  background: radial-gradient(circle at 50% 0%, rgba(170, 140, 255, 0.32), transparent 70%);
}
.lw-bonus-prize-card--epic .lw-bonus-prize-card__face {
  background: linear-gradient(165deg, rgba(170, 110, 40, 0.55), rgba(56, 34, 8, 0.92));
  border-color: rgba(245, 200, 110, 0.32);
}
.lw-bonus-prize-card--epic .lw-bonus-prize-card__shine {
  background: radial-gradient(circle at 50% 0%, rgba(245, 200, 110, 0.34), transparent 70%);
}
.lw-bonus-prize-card--legendary .lw-bonus-prize-card__face {
  background: linear-gradient(165deg, rgba(210, 70, 110, 0.55), rgba(72, 18, 48, 0.92));
  border-color: rgba(255, 140, 180, 0.34);
}
.lw-bonus-prize-card--legendary .lw-bonus-prize-card__shine {
  background: radial-gradient(circle at 50% 0%, rgba(255, 140, 180, 0.36), transparent 70%);
}
@media (max-width: 900px) {
  .lw-bonuses__shell {
    flex-direction: column;
    min-height: 0;
  }
  .lw-bonuses__main {
    padding-right: 0;
  }
  .lw-bonuses__history-rail {
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    padding-left: 0;
    padding-top: 18px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .lw-bonuses__history-scroll {
    max-height: 280px;
  }
}
@media (max-width: 600px) {
  .lw-bonuses__reel-item {
    width: 96px;
  }
  .lw-bonus-prize-card--reel .lw-bonus-prize-card__face {
    min-height: 96px;
    border-radius: 12px;
  }
  .lw-bonus-prize-card--reel .lw-bonus-prize-card__glyph {
    font-size: 18px;
  }
  .lw-bonuses__reel-viewport {
    min-height: 108px;
  }
}

.lw-admin-tier-editor {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-admin-tier-editor__head,
.lw-admin-tier-editor__row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(0, 1.2fr) 88px 32px;
  gap: 8px;
  align-items: center;
}
.lw-admin-tier-editor__head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.55);
  padding: 0 2px;
}
.lw-admin-tier-editor__row input[type="number"],
.lw-admin-tier-editor__row input[type="text"] {
  width: 100%;
  min-width: 0;
}
.lw-admin-tier-editor__row .lw-admin-site-price-input {
  min-width: 0;
}
.lw-admin-tier-editor__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(248, 250, 252, 0.12);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.45);
  color: rgba(248, 250, 252, 0.75);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.lw-admin-tier-editor__remove:hover {
  border-color: rgba(248, 113, 113, 0.45);
  color: #fca5a5;
}
.lw-admin-site-controls--checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-admin-site-controls--checks .lw-admin-site-control {
  margin: 0;
}
.lw-admin-keys-table-wrap {
  overflow-x: auto;
  margin: 10px 0 14px;
  border: 1px solid rgba(248, 250, 252, 0.08);
  border-radius: 12px;
}
.lw-admin-keys-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.lw-admin-keys-table th,
.lw-admin-keys-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(248, 250, 252, 0.06);
}
.lw-admin-keys-table th {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(248, 250, 252, 0.55);
  background: rgba(15, 23, 42, 0.35);
}
.lw-admin-keys-table code {
  font-size: 12px;
  word-break: break-all;
}
.lw-admin-keys-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}
.lw-admin-keys-extend-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.lw-admin-keys-extend-form input[type="number"] {
  width: 72px;
}
.lw-account-card--categories-admin {
  max-width: 100%;
  padding: clamp(16px, 3vw, 22px);
}
.lw-account-card--categories-admin .lw-admin-dashboard__head {
  margin-bottom: 18px;
}
.lw-admin-categories-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: 16px;
  align-items: start;
}
.lw-admin-categories-panel,
.lw-admin-category-form-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(10, 10, 12, 0.65);
  overflow: hidden;
}
.lw-admin-categories-panel__head,
.lw-admin-category-form-panel__head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}
.lw-admin-categories-panel__body {
  flex: 1 1 auto;
  padding: 14px 16px 16px;
}
.lw-admin-categories-panel__title,
.lw-admin-category-form-panel__title {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
  line-height: 1.3;
}
.lw-admin-categories-empty {
  padding: 24px 12px;
}
.lw-admin-categories-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lw-admin-category-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-areas:
    "media body"
    "media actions";
  column-gap: 12px;
  row-gap: 8px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-admin-category-card.is-editing {
  border-color: rgba(74, 222, 128, 0.35);
  background: rgba(22, 163, 74, 0.08);
}
.lw-admin-category-card.is-inactive {
  opacity: 0.72;
}
.lw-admin-category-card__media {
  grid-area: media;
  width: 56px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0c;
}
.lw-admin-category-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lw-admin-category-card__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(248, 250, 252, 0.35);
}
.lw-admin-category-card__body {
  grid-area: body;
  min-width: 0;
}
.lw-admin-category-card__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #fafafa;
  overflow-wrap: anywhere;
}
.lw-admin-category-card__slug {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(248, 250, 252, 0.45);
  overflow-wrap: anywhere;
}
.lw-admin-category-card__badge {
  display: inline-flex;
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.25);
}
.lw-admin-category-card__actions {
  grid-area: actions;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}
.lw-admin-category-card__actions form {
  margin: 0;
  display: flex;
}
.lw-admin-category-card__actions .lw-admin-action-btn {
  width: auto;
  min-width: 84px;
  min-height: 32px;
  padding: 6px 12px;
  font-size: 11px;
  line-height: 1.2;
  border-radius: 8px;
  white-space: nowrap;
}
.lw-admin-category-form-panel {
  min-height: 0;
}
.lw-admin-category-form-panel__head {
  padding: 14px 16px;
}
.lw-admin-category-form-panel__reset {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--lw-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.lw-admin-category-form-panel__reset:hover {
  color: #fafafa;
}
.lw-admin-category-form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 0;
}
.lw-admin-category-form__scroll {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lw-admin-category-form__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.lw-admin-category-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 12px;
  align-items: start;
}
.lw-admin-category-form__row .lw-admin-site-field--sort input {
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.lw-admin-category-form__row .lw-admin-site-field--sort label {
  white-space: nowrap;
}
.lw-admin-category-form__section {
  margin: 0;
  padding: 0;
  border: none;
}
.lw-admin-category-form .lw-pm-field--switch {
  gap: 8px;
}
.lw-admin-category-form .lw-pm-field__label {
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.lw-admin-category-form .lw-pm-switch-box {
  width: 100%;
  box-sizing: border-box;
}
.lw-admin-category-form .lw-admin-site-field__label,
.lw-admin-category-form .lw-admin-site-field > label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #a1a1aa;
}
.lw-admin-category-form .lw-admin-site-field input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]) {
  width: 100%;
  box-sizing: border-box;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  color: #fafafa;
  font: inherit;
  font-size: 13px;
}
.lw-admin-category-form .lw-admin-site-field input:focus {
  outline: none;
  border-color: rgba(74, 222, 128, 0.35);
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.1);
}
.lw-admin-category-file {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.lw-admin-category-file__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lw-admin-category-file__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 42px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fafafa;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-admin-category-file__btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fafafa;
}
.lw-admin-category-file__name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--lw-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-admin-category-form__preview-wrap {
  margin-top: 12px;
}
.lw-admin-category-form__preview {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0c;
}
.lw-admin-category-form__actions {
  flex: 0 0 auto;
  margin: 0;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}
.lw-admin-category-form__actions .lw-admin-site-form__submit {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 13px;
  border-radius: 10px;
}
@media (max-width: 960px) {
  .lw-admin-categories-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .lw-admin-category-form__row {
    grid-template-columns: 1fr;
  }
  .lw-admin-category-card__actions {
    justify-content: stretch;
  }
  .lw-admin-category-card__actions .lw-admin-action-btn {
    flex: 1 1 calc(50% - 3px);
    min-width: 0;
  }
}
@media (max-width: 640px) {
  .lw-admin-tier-editor__head {
    display: none;
  }
  .lw-admin-tier-editor__row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "days price"
      "label limit"
      "remove remove";
    padding: 12px;
    border: 1px solid rgba(248, 250, 252, 0.08);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.25);
  }
  .lw-admin-tier-editor__row input[name="tier_days[]"] {
    grid-area: days;
  }
  .lw-admin-tier-editor__row .lw-admin-site-price-input {
    grid-area: price;
  }
  .lw-admin-tier-editor__row input[name="tier_label[]"] {
    grid-area: label;
  }
  .lw-admin-tier-editor__row input[name="tier_weekly_limit[]"] {
    grid-area: limit;
  }
  .lw-admin-tier-editor__remove {
    grid-area: remove;
    width: 100%;
  }
}

/* Product admin modals (lw-pm) */
.lw-pm__shell {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: min(90vh, 860px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lw-radius-lg);
  background: #0a0a0b;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.lw-pm__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--lw-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.lw-pm__close:hover {
  color: #fafafa;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.lw-pm__head {
  flex: 0 0 auto;
  padding: 20px 56px 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.lw-pm__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fafafa;
}
.lw-pm__subtitle {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--lw-muted);
  line-height: 1.4;
}
.lw-pm-tabs {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  overflow-x: auto;
  scrollbar-width: thin;
}
.lw-pm-tabs__btn {
  flex: 0 0 auto;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 12px 14px;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: rgba(248, 250, 252, 0.58);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.lw-pm-tabs__btn:hover {
  color: #e4e4e7;
  background: rgba(255, 255, 255, 0.03);
}
.lw-pm-tabs__btn.is-active {
  color: #fafafa;
  border-bottom-color: #c9a227;
  background: rgba(201, 162, 39, 0.08);
}
.lw-pm-tabs__btn:focus-visible {
  outline: 2px solid rgba(245, 230, 184, 0.45);
  outline-offset: -2px;
}
.lw-pm__stage {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lw-pm-tabpanel {
  display: none;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 18px 22px 22px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(0, 0, 0, 0.35);
}
.lw-pm-tabpanel.is-active {
  display: block;
}
.lw-pm-tabpanel--keys.is-active {
  display: flex;
  flex-direction: column;
}
.lw-pm-tabpanel--keys .lw-pm-block--keys {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.lw-pm-tabpanel--keys .lw-pm-table-wrap {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
}
.lw-pm__hint {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--lw-muted);
}
.lw-pm__form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.lw-pm__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px 22px 22px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(0, 0, 0, 0.35);
}
.lw-pm__body::-webkit-scrollbar {
  width: 8px;
}
.lw-pm__body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 4px;
}
.lw-pm__body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}
.lw-pm__foot {
  flex: 0 0 auto;
  padding: 14px 22px max(18px, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
}
.lw-pm__foot--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.lw-pm-block + .lw-pm-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-pm-block__head {
  margin-bottom: 14px;
}
.lw-pm-block__title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #e4e4e7;
  line-height: 1.3;
}
.lw-pm-block__hint {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--lw-muted);
}
.lw-pm-grid {
  display: grid;
  gap: 12px;
}
.lw-pm-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lw-pm-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lw-pm-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  margin: 0;
}
.lw-pm-field--compact {
  gap: 6px;
}
.lw-pm-field--switch {
  gap: 8px;
}
.lw-pm-field--inline {
  flex: 0 0 auto;
  min-width: 0;
}
.lw-pm-field__label {
  font-size: 12px;
  font-weight: 600;
  color: #a1a1aa;
  line-height: 1.3;
}
.lw-pm-input,
.lw-pm-select,
.lw-pm-textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  color: #fafafa;
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.lw-pm-textarea {
  min-height: 72px;
  resize: vertical;
}
.lw-pm-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  padding-right: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}
.lw-pm-input--center {
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.lw-pm-input--narrow {
  width: 72px;
  min-width: 72px;
}
.lw-pm-input--price {
  padding-left: 26px;
  font-weight: 700;
}
.lw-pm-input:hover,
.lw-pm-select:hover,
.lw-pm-textarea:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.lw-pm-input:focus,
.lw-pm-select:focus,
.lw-pm-textarea:focus {
  outline: none;
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.12);
}
.lw-pm-price {
  position: relative;
  display: block;
}
.lw-pm-price__prefix {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 700;
  color: rgba(251, 191, 36, 0.8);
  pointer-events: none;
}
.lw-pm-switch-box {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
}
.lw-pm-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  cursor: pointer;
  user-select: none;
}
.lw-pm-switch__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.lw-pm-switch__track {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease;
}
.lw-pm-switch__track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #71717a;
  transition: transform 0.2s ease, background 0.2s ease;
}
.lw-pm-switch__input:checked + .lw-pm-switch__track {
  background: rgba(22, 163, 74, 0.55);
}
.lw-pm-switch__input:checked + .lw-pm-switch__track::after {
  transform: translateX(18px);
  background: #fafafa;
}
.lw-pm-switch__input:focus-visible + .lw-pm-switch__track {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
.lw-pm-switch--sm .lw-pm-switch__track {
  width: 36px;
  height: 20px;
}
.lw-pm-switch--sm .lw-pm-switch__track::after {
  width: 16px;
  height: 16px;
}
.lw-pm-switch--sm .lw-pm-switch__input:checked + .lw-pm-switch__track::after {
  transform: translateX(16px);
}
.lw-pm-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--lw-btn-border);
  border-radius: 10px;
  background: var(--lw-btn-bg);
  color: var(--lw-btn-text);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  color-scheme: dark;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.lw-pm-btn:hover {
  border-color: var(--lw-btn-border-hover);
  background: var(--lw-btn-bg-hover);
  color: var(--lw-btn-text-hover);
}
.lw-pm-btn:active {
  transform: translateY(1px);
}
.lw-pm-btn:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.35);
  outline-offset: 2px;
}
.lw-pm-btn--ghost {
  background: transparent;
}
.lw-pm-btn--primary {
  border-color: var(--lw-btn-primary-border);
  background: var(--lw-btn-primary-bg);
  color: var(--lw-btn-primary-text);
  font-weight: 700;
}
.lw-pm-btn--primary:hover {
  border-color: var(--lw-btn-border-hover);
  background: var(--lw-btn-primary-bg-hover);
  color: var(--lw-btn-primary-text);
}
.lw-pm-btn--block {
  width: 100%;
}
.lw-pm-limits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 12px;
}
.lw-pm-limits__cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  min-width: 0;
}
.lw-pm-limits__label {
  font-size: 12px;
  font-weight: 600;
  color: #a1a1aa;
  line-height: 1.3;
  text-align: center;
}
.lw-pm-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lw-pm-tiers__head,
.lw-pm-tier {
  display: grid;
  grid-template-columns: 64px minmax(88px, 0.85fr) minmax(110px, 1.25fr) 72px 36px;
  gap: 10px;
  align-items: end;
}
.lw-pm-tiers__head {
  padding: 0 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.45);
}
.lw-pm-tiers__head span:last-child {
  width: 36px;
}
.lw-pm-tiers__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lw-pm-tier {
  align-items: end;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
}
.lw-pm-tier .lw-pm-field__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lw-pm-site-form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.lw-pm-site-form[hidden] {
  display: none !important;
}
.lw-pm-site-form > .lw-pm-tabpanel.is-active {
  flex: 1 1 auto;
  min-height: 0;
}
.lw-pm-block--keys {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.lw-pm-site-form .lw-pm__foot {
  flex: 0 0 auto;
  margin-top: 0;
  padding: 14px 22px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}
.lw-pm-table th,
.lw-pm-table td {
  padding: 9px 12px;
}
.lw-pm-table td:nth-child(2),
.lw-pm-table td:nth-child(3),
.lw-pm-table th:nth-child(2),
.lw-pm-table th:nth-child(3) {
  width: 72px;
  white-space: nowrap;
}
.lw-pm-table td:last-child,
.lw-pm-table th:last-child {
  min-width: 148px;
}
.lw-pm-tier__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 250, 252, 0.7);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.lw-pm-tier__remove:hover {
  border-color: rgba(248, 113, 113, 0.45);
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
}
.lw-pm-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 10px;
}
.lw-pm-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 112px;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-pm-cat:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}
.lw-pm-cat.is-selected,
.lw-pm-cat:has(.lw-pm-cat__input:checked) {
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(22, 163, 74, 0.1);
  box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0.18);
}
.lw-pm-cat__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lw-pm-cat__thumb {
  width: 56px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.lw-pm-cat__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lw-pm-cat__name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  color: #fafafa;
}
.lw-pm-req-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.lw-pm-req {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
}
.lw-pm-req__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: #e4e4e7;
}
.lw-pm-table-wrap {
  overflow-x: auto;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
}
.lw-pm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.lw-pm-table th,
.lw-pm-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}
.lw-pm-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.55);
  background: rgba(0, 0, 0, 0.25);
}
.lw-pm-table tbody tr:last-child td {
  border-bottom: none;
}
.lw-pm-table code {
  font-size: 12px;
  word-break: break-all;
}
.lw-pm-keys-toolbar {
  margin-bottom: 12px;
}
.lw-pm-field--search {
  margin: 0;
}
.lw-pm-input--search {
  width: 100%;
  min-height: 40px;
  padding-left: 14px;
  padding-right: 14px;
}
.lw-pm-keys-state {
  margin: 0;
  padding: 18px 12px;
  text-align: center;
  font-size: 14px;
  color: var(--lw-muted);
}
.lw-pm-keys-state--error {
  color: #fca5a5;
}
.lw-pm-keys-pager {
  margin-top: 12px;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.lw-pm-keys-pager .lw-admin-pager__page {
  cursor: pointer;
  border: none;
  font: inherit;
}
.lw-pm-keys-pager .lw-admin-pager__page:focus-visible {
  outline: 2px solid rgba(245, 230, 184, 0.45);
  outline-offset: 2px;
}
.lw-pm-keys-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lw-pm-keys-bar__form,
.lw-pm-keys-bar__extend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.lw-pm-keys-bar__extend .lw-pm-select {
  min-width: 120px;
}
@media (max-width: 720px) {
  .lw-pm-grid--2,
  .lw-pm-req-grid {
    grid-template-columns: 1fr;
  }
  .lw-pm-tiers__head {
    display: none;
  }
  .lw-pm-tier .lw-pm-field__label {
    position: static;
    width: auto;
    height: auto;
    margin: 0 0 6px;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
  .lw-pm-tier {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "days price"
      "label limit"
      "remove remove";
    align-items: stretch;
  }
  .lw-pm-tier .lw-pm-field:nth-child(1) { grid-area: days; }
  .lw-pm-tier .lw-pm-field:nth-child(2) { grid-area: price; }
  .lw-pm-tier .lw-pm-field:nth-child(3) { grid-area: label; }
  .lw-pm-tier .lw-pm-field:nth-child(4) { grid-area: limit; }
  .lw-pm-tier__remove {
    grid-area: remove;
    width: 100%;
    height: 40px;
  }
  .lw-pm-limits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lw-pm__foot--split {
    grid-template-columns: 1fr;
  }
  .lw-pm-keys-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .lw-pm-keys-bar__extend {
    width: 100%;
  }
  .lw-pm-keys-bar__extend .lw-pm-input--narrow,
  .lw-pm-keys-bar__extend .lw-pm-select {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }
}
@media (max-width: 520px) {
  .lw-pm__head {
    padding: 16px 48px 14px 16px;
  }
  .lw-pm__body {
    padding: 14px 16px 18px;
  }
  .lw-pm__foot {
    padding: 12px 16px max(16px, env(safe-area-inset-bottom, 0px));
  }
  .lw-pm-cats {
    grid-template-columns: 1fr 1fr;
  }
}
