


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.landing-body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", 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;
  }
}
@keyframes lw-bg-mesh-drift {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
.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;
  isolation: isolate;
  background-color: var(--lw-bg);
}
.landing-bg__mesh,
.landing-bg__grain,
.landing-bg__vignette {
  position: absolute;
  pointer-events: none;
}
.landing-bg__mesh {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 28%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0%, transparent 24%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  animation: lw-bg-mesh-drift 48s ease-in-out infinite alternate;
}
.landing-bg__grid {
  position: absolute;
  inset: -40px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 42%, black 15%, transparent 72%);
  animation: lw-bg-grid-drift 60s linear infinite;
  opacity: 0.85;
}
.landing-bg__shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.landing-bg__shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}
.landing-bg__shape--1 {
  width: 120px;
  height: 120px;
  top: 12%;
  left: 8%;
  border-radius: 4px;
  animation: lw-bg-shape-float-a 22s ease-in-out infinite;
}
.landing-bg__shape--2 {
  width: 64px;
  height: 64px;
  top: 28%;
  right: 12%;
  border-radius: 50%;
  animation: lw-bg-shape-float-b 18s ease-in-out infinite;
}
.landing-bg__shape--3 {
  width: 90px;
  height: 90px;
  bottom: 22%;
  left: 14%;
  transform: rotate(45deg);
  animation: lw-bg-shape-float-c 26s ease-in-out infinite;
}
.landing-bg__shape--4 {
  width: 48px;
  height: 48px;
  top: 55%;
  right: 22%;
  border-radius: 2px;
  animation: lw-bg-shape-float-b 20s ease-in-out infinite reverse;
}
.landing-bg__shape--5 {
  width: 160px;
  height: 1px;
  top: 38%;
  left: 20%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  border: none;
  animation: lw-bg-line-sweep 14s ease-in-out infinite;
}
.landing-bg__shape--6 {
  width: 1px;
  height: 140px;
  bottom: 18%;
  right: 28%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  border: none;
  animation: lw-bg-line-sweep 18s ease-in-out infinite reverse;
}
.landing-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.landing-bg__glow--1 {
  width: 420px;
  height: 420px;
  top: -8%;
  right: -6%;
  background: rgba(255, 255, 255, 0.07);
  animation: lw-bg-glow-pulse 12s ease-in-out infinite;
}
.landing-bg__glow--2 {
  width: 360px;
  height: 360px;
  bottom: 5%;
  left: -10%;
  background: rgba(255, 255, 255, 0.05);
  animation: lw-bg-glow-pulse 16s ease-in-out infinite reverse;
}
@keyframes lw-bg-grid-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(48px, 48px); }
}
@keyframes lw-bg-shape-float-a {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
  50% { transform: translate(24px, -32px) rotate(8deg); opacity: 0.85; }
}
@keyframes lw-bg-shape-float-b {
  0%, 100% { transform: translate(0, 0); opacity: 0.45; }
  50% { transform: translate(-20px, 28px); opacity: 0.75; }
}
@keyframes lw-bg-shape-float-c {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
  50% { transform: rotate(52deg) translate(18px, -14px); opacity: 0.7; }
}
@keyframes lw-bg-line-sweep {
  0%, 100% { opacity: 0.2; transform: scaleX(0.6); }
  50% { opacity: 0.9; transform: scaleX(1); }
}
@keyframes lw-bg-glow-pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .landing-bg__grid,
  .landing-bg__shape,
  .landing-bg__glow,
  .landing-bg__mesh {
    animation: none !important;
  }
}
.landing-bg__grain {
  inset: 0;
  opacity: 0.022;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.75) 0.35px, transparent 0.35px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}
.landing-bg__vignette {
  inset: 0;
  background: radial-gradient(ellipse 140% 100% at 50% 50%, transparent 58%, rgba(0, 0, 0, 0.2) 100%);
}
.lw-page-ambient {
  display: none;
}
.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.11;
}
.lw-page--home .lw-page-ambient__orb--1 {
  width: 240px;
  height: 240px;
  left: -4%;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.035);
}
.lw-page--home .lw-page-ambient__orb--2 {
  width: 200px;
  height: 200px;
  right: 0;
  bottom: 18%;
  background: rgba(255, 255, 255, 0.03);
}
.lw-page--home .lw-page-ambient__orb--3 {
  width: 160px;
  height: 160px;
  left: 38%;
  bottom: 4%;
  background: rgba(255, 255, 255, 0.03);
}
.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-wrap {
  width: min(1400px, calc(100% - 40px));
}
.lw-page--account .lw-page-ambient {
  opacity: 0.05;
}
.lw-page--account .lw-page-ambient__orb--1 {
  width: 320px;
  height: 320px;
  right: -6%;
  top: 8%;
  background: rgba(255, 255, 255, 0.14);
}
.lw-page--account .lw-page-ambient__orb--2 {
  width: 260px;
  height: 260px;
  left: -8%;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.08);
}
.lw-page--account .lw-page-ambient__orb--3 {
  width: 180px;
  height: 180px;
  right: 24%;
  top: 42%;
  background: rgba(255, 255, 255, 0.04);
}
.lw-page--account .landing-section--tight-top.lw-account-page {
  padding-top: clamp(16px, 2.5vw, 28px);
  padding-bottom: clamp(28px, 4vw, 44px);
}
.lw-page--account .lw-account-main__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lw-brand), rgba(255, 255, 255, 0.15));
  animation: none;
}
.lw-page--faq .lw-page-ambient__orb--1 {
  width: 260px;
  height: 260px;
  left: -5%;
  top: 6%;
  background: rgba(255, 255, 255, 0.12);
}
.lw-page--faq .lw-page-ambient__orb--2 {
  width: 220px;
  height: 220px;
  right: -4%;
  top: 22%;
  background: rgba(255, 255, 255, 0.04);
}
.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--support .landing-section--support {
  max-width: 920px;
  margin-inline: auto;
}
.lw-support-hero {
  text-align: center;
  margin-bottom: 28px;
}
.lw-support-hero__title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--lw-text);
}
.lw-support-hero__lead {
  margin: 0 auto;
  max-width: 52ch;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.65;
  color: var(--lw-muted);
}
.lw-support-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.lw-support-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 92px;
  padding: 16px 12px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-xl);
  background: var(--lw-elevated);
  box-shadow: var(--lw-shadow-sm);
  text-align: center;
}
.lw-support-stat__value {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--lw-text);
  font-variant-numeric: tabular-nums;
}
.lw-support-stat__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lw-muted);
}
.lw-support-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.lw-support-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-xl);
  background: var(--lw-elevated);
  box-shadow: var(--lw-shadow-sm);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.lw-support-channel:hover {
  border-color: var(--lw-border-hover);
  background: var(--lw-surface-2);
  box-shadow: var(--lw-shadow-md);
  transform: translateY(-1px);
}
.lw-support-channel:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.28);
  outline-offset: 2px;
}
.lw-support-channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--lw-text);
}
.lw-support-channel--discord .lw-support-channel__icon {
  color: #8ea1ff;
  background: rgba(88, 101, 242, 0.14);
}
.lw-support-channel--telegram .lw-support-channel__icon,
.lw-support-channel--telegram-direct .lw-support-channel__icon {
  color: #6ec8ff;
  background: rgba(42, 171, 238, 0.14);
}
.lw-support-channel__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}
.lw-support-channel__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--lw-text);
}
.lw-support-channel__desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--lw-muted);
}
.lw-support-channel__arrow {
  flex: 0 0 auto;
  color: var(--lw-subtle);
  transition: color 0.15s ease, transform 0.15s ease;
}
.lw-support-channel:hover .lw-support-channel__arrow {
  color: var(--lw-text);
  transform: translate(2px, -2px);
}
.lw-support-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}
.lw-support-feature {
  padding: 18px 16px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-xl);
  background: var(--lw-elevated);
  box-shadow: var(--lw-shadow-sm);
}
.lw-support-feature__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--lw-text);
}
.lw-support-feature__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--lw-muted);
}
.lw-support-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 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-support-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-support-tab:hover {
  color: var(--lw-text);
  background: rgba(255, 255, 255, 0.04);
}
.lw-support-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-support-panels {
  margin-top: 0;
  border-radius: var(--lw-radius-xl);
  padding: clamp(20px, 2.5vw, 28px);
}
.lw-support-panel[hidden] {
  display: none;
}
.lw-support-panel__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lw-text);
}
.lw-support-panel__title--spaced {
  margin-top: 28px;
}
.lw-support-panel__intro {
  margin: 10px 0 0;
  max-width: 56ch;
  font-size: 14px;
  line-height: 1.55;
  color: var(--lw-muted);
}
.lw-support-install {
  margin: 16px 0 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--lw-muted);
  font-size: 14px;
  line-height: 1.6;
}
.lw-support-install li::marker {
  color: var(--lw-brand);
}
.lw-support-driver-group {
  margin-top: 22px;
}
.lw-support-driver-group__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.lw-support-driver-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lw-support-driver-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  padding: 14px 16px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-lg);
  background: var(--lw-elevated);
  box-shadow: var(--lw-shadow-sm);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-support-driver-row:hover {
  border-color: var(--lw-border-hover);
  background: var(--lw-surface-2);
  box-shadow: var(--lw-shadow-md);
}
.lw-support-driver-main {
  flex: 1 1 280px;
  min-width: 0;
}
.lw-support-driver-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.lw-support-driver-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--lw-text);
}
.lw-support-driver-version {
  font-size: 11px;
  font-weight: 600;
  color: var(--lw-subtle);
  font-variant-numeric: tabular-nums;
}
.lw-support-driver-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lw-support-driver-badge--required {
  color: #fecaca;
  background: color-mix(in srgb, var(--destructive) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--destructive) 22%, transparent);
}
.lw-support-driver-badge--recommended {
  color: #e4e4e7;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.22);
}
.lw-support-driver-badge--alternative {
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.22);
}
.lw-support-driver-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--lw-muted);
}
.lw-page--auth .lw-page-ambient__orb--1 {
  width: 340px;
  height: 340px;
  left: 50%;
  top: 32%;
  margin-left: -170px;
  background: rgba(255, 255, 255, 0.05);
  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(255, 255, 255, 0.035);
}
.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 .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(255, 255, 255, 0.025);
}
.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(255, 255, 255, 0.04);
}
.lw-page--default .lw-page-ambient__orb--2 {
  width: 200px;
  height: 200px;
  left: -2%;
  bottom: 14%;
  background: rgba(255, 255, 255, 0.035);
}
@media (prefers-reduced-motion: reduce) {
  .landing-bg__mesh {
    animation: none !important;
    opacity: 1;
  }
  .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: 6px 10px;
  border-radius: var(--lw-radius-lg);
  background: var(--lw-surface);
  border: 1px solid var(--lw-border);
  box-shadow: var(--lw-shadow-sm);
}
.topbar::before,
.topbar::after {
  display: none;
}
.topbar-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px 14px;
  min-height: 36px;
}
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  min-height: 36px;
  padding: 0 4px 0 0;
  margin: 0;
  border-radius: var(--lw-radius-sm);
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--lw-text);
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: color 0.15s ease;
}
.brand__logo {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}
.brand__text {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.brand:hover {
  color: #fff;
  background: transparent;
}
.brand-tag {
  margin-left: 0;
  padding: 2px 6px;
  border-radius: var(--lw-radius-sm);
  background: var(--lw-surface-2);
  border: 1px solid var(--lw-border);
  color: var(--lw-muted);
  font-weight: 600;
  font-size: 11px;
  line-height: 1.2;
}
.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 color-mix(in srgb, var(--color-emerald-400) 35%, transparent);
  background: color-mix(in srgb, var(--color-emerald-400) 8%, transparent);
  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 color-mix(in srgb, var(--color-emerald-400) 25%, transparent);
  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 color-mix(in srgb, var(--color-emerald-400) 28%, transparent);
  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: 2px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.nav--end {
  justify-self: end;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.nav--end--session {
  padding: 0;
  border: none;
  background: transparent;
  gap: 0;
}
.lw-header-session {
  display: inline-flex;
  align-items: stretch;
  max-width: min(100%, 380px);
  min-height: var(--lw-control-h);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-md);
  background: var(--lw-surface-2);
  box-shadow: none;
  overflow: hidden;
}
.lw-header-session__balance {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: var(--lw-control-h);
  padding: 0 12px 0 13px;
  border: none;
  background: transparent;
  color: var(--lw-text);
  font: inherit;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lw-header-session__balance:hover {
  background: var(--lw-elevated);
}
.lw-header-session__balance:focus-visible {
  outline: 2px solid var(--lw-border-hover);
  outline-offset: -2px;
}
.lw-header-session__balance--readonly {
  cursor: default;
}
.lw-header-session__balance--readonly:hover {
  background: transparent;
}
.lw-header-session__balance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lw-muted);
}
.lw-header-session__balance-value {
  font-size: var(--lw-control-fs);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.lw-header-session__divider {
  align-self: stretch;
  width: 1px;
  flex-shrink: 0;
  background: var(--lw-border);
}
.lw-header-session__user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: var(--lw-control-h);
  padding: 0 12px;
  text-decoration: none;
  color: var(--lw-muted);
  transition: background 0.15s ease, color 0.15s ease;
}
.lw-header-session__user:hover {
  background: var(--lw-elevated);
  color: var(--lw-text);
}
.lw-header-session__user.is-active {
  background: var(--lw-elevated);
  color: var(--lw-text);
}
.lw-header-session__user:focus-visible {
  outline: 2px solid var(--lw-border-hover);
  outline-offset: -2px;
}
.lw-header-session__avatar {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--lw-border);
  background: var(--lw-elevated);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: var(--lw-text);
  overflow: hidden;
}
.lw-header-session__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.lw-header-session__username {
  min-width: 0;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--lw-control-fs);
  font-weight: 600;
}
.lw-header-session__logout-form {
  display: flex;
  margin: 0;
  padding: 0;
}
.lw-header-session__logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: var(--lw-control-h);
  padding: 0 11px;
  margin: 0;
  border: none;
  border-left: 1px solid var(--lw-border);
  border-radius: 0;
  background: transparent;
  color: var(--lw-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lw-header-session__logout:hover {
  color: #fca5a5;
  background: color-mix(in srgb, var(--destructive) 10%, transparent);
}
.lw-header-session__logout:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--destructive) 35%, transparent);
  outline-offset: -2px;
}
.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: var(--lw-control-h);
  padding: 0 13px;
  color: var(--lw-muted);
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--lw-radius-sm);
  font-size: var(--lw-control-fs);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.nav--primary .nav-btn {
  min-height: var(--lw-control-h);
}
.nav-btn:hover {
  color: var(--lw-text);
  background: var(--lw-surface-2);
}
.nav-btn.is-active {
  color: var(--lw-text);
  background: var(--lw-surface-2);
  border-color: var(--lw-border);
  font-weight: 600;
}
.nav-btn--primary {
  min-height: var(--lw-control-h);
  padding: 0 14px;
  border: 1px solid var(--lw-btn-primary-border);
  background: var(--lw-btn-primary-bg);
  color: var(--lw-btn-primary-text);
  font-weight: 600;
}
.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 color-mix(in srgb, var(--destructive) 20%, transparent);
  background: color-mix(in srgb, var(--destructive) 8%, transparent);
  color: var(--destructive);
  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: color-mix(in srgb, var(--destructive) 16%, transparent);
  border-color: color-mix(in srgb, var(--destructive) 35%, transparent);
}
a.nav-logout:focus-visible,
button.nav-logout:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--destructive) 45%, transparent);
  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);
}
.lw-page--home .landing-wrap {
  width: min(1200px, calc(100% - 40px));
}
.lw-page--home .landing-section--hero {
  position: relative;
  isolation: isolate;
}
.lw-page--home .landing-section--hero::after,
.lw-page--home .landing-section--home-band::before,
.lw-page--home .landing-section--home-popular::before {
  display: none;
}
.lw-page--home .hero-ambient {
  display: none;
}
.lw-page--home .hero-intro {
  position: relative;
  z-index: 1;
}
.lw-page--home .landing-section--home-band {
  position: relative;
  isolation: isolate;
  background: transparent;
}
.lw-page--home .landing-section--home-band::before {
  display: none;
}
.lw-page--home .landing-section--home-reviews {
  --home-reviews-accent: var(--lw-brand);
  --home-reviews-bg: transparent;
  --home-reviews-card-bg: var(--lw-surface);
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(24px, 3.5vw, 40px) 0 clamp(28px, 4vw, 48px);
  background: transparent;
  overflow: hidden;
  isolation: isolate;
  box-sizing: border-box;
}
.lw-page--home .landing-section--home-reviews::before,
.lw-page--home .landing-section--home-reviews::after {
  display: none;
}
.home-reviews__inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto  clamp(22px, 3.5vw, 34px);
  padding: 0 20px;
}
.home-reviews__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.home-reviews__head-copy {
  min-width: 0;
}
.home-reviews__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--home-reviews-accent);
}
.home-reviews__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}
.home-reviews__title-accent {
  color: var(--home-reviews-accent);
}
.home-reviews__all {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--home-reviews-accent);
  text-decoration: none;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.08);
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}
.home-reviews__all:hover {
  color: #fff;
  border-color: var(--lw-brand-border);
  background: rgba(255, 255, 255, 0.16);
}
.home-reviews-marquee {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin: 0;
}
.home-reviews-marquee__row {
  overflow: hidden;
  width: 100%;
}
.home-reviews-marquee__row--right {
  padding-left: 0;
}
.home-reviews-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: lw-home-reviews-left 52s linear infinite;
}
.home-reviews-marquee__row--right .home-reviews-marquee__track {
  animation-name: lw-home-reviews-right;
}
.home-reviews-marquee__row:hover .home-reviews-marquee__track {
  animation-play-state: paused;
}
.home-reviews-marquee__track:has(.home-review-card:hover) {
  animation-play-state: paused;
}
.home-reviews-marquee__group {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding-right: 12px;
}
.home-review-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(480px, 90vw);
  min-height: 132px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--home-reviews-card-bg);
  box-shadow: none;
  color: inherit;
  transition:
    border-color 0.18s ease,
    background 0.18s ease;
}
.home-review-card:hover {
  border-color: var(--lw-brand-border);
  background: #161616;
  position: relative;
  z-index: 2;
}
.home-review-card__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.home-review-card__avatar {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  font-size: 13px;
}
.home-review-card__meta {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.home-review-card__author {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.home-review-card__date {
  flex: 0 0 auto;
  margin-left: auto;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(161, 161, 170, 0.95);
  white-space: nowrap;
}
.home-review-card__stars-row {
  display: flex;
  align-items: center;
  min-height: 14px;
}
.home-review-card__stars {
  color: var(--home-reviews-accent);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.home-review-card__product {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--home-reviews-accent);
  text-decoration: none;
  transition: color 0.15s ease;
}
.home-review-card__product:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.home-review-card__text {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif, "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: #d4d4d8;
}
@keyframes lw-home-reviews-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes lw-home-reviews-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-reviews-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    max-width: 100%;
    padding-inline: clamp(20px, 4vw, 48px);
  }
  .home-reviews-marquee__group {
    flex-wrap: wrap;
    width: 100%;
    padding-right: 0;
  }
}
.lw-page--home .home-section-head {
  margin-bottom: clamp(20px, 3vw, 32px);
}
.lw-page--home .home-section-head .section-title--center::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 14px auto 0;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--lw-brand), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.lw-page--home .home-section-head.lw-reveal.is-visible .section-title--center::after {
  transform: scaleX(1);
}
.lw-page--home .landing-section--home-popular {
  position: relative;
  padding: clamp(28px, 4vw, 48px) 0 clamp(24px, 3.5vw, 40px);
  background: transparent;
  box-sizing: border-box;
}
.lw-page--home .landing-section--home-popular::before {
  content: "";
  position: absolute;
  top: clamp(12px, 2vw, 20px);
  left: 50%;
  width: min(220px, 42%);
  height: 1px;
  margin-left: calc(min(220px, 42%) / -2);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}
@media (min-width: 1100px) {
  .lw-page--home .landing-section--home-popular .home-section-head,
  .lw-page--home .landing-section--home-popular .lw-grid--popular {
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
  }
  .lw-page--home .landing-section--home-popular .lw-grid--popular:has(> :first-child:last-child) {
    grid-template-columns: minmax(0, min(100%, 520px));
    justify-content: center;
  }
  .lw-page--home .landing-section--home-popular .lw-grid--popular:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }
}
@media (min-width: 721px) and (max-width: 1099px) {
  .lw-page--home .landing-section--home-popular .lw-grid--popular:has(> :first-child:last-child) {
    grid-template-columns: minmax(0, min(100%, 520px));
    justify-content: center;
  }
  .lw-page--home .landing-section--home-popular .lw-grid--popular:has(> :nth-child(2):last-child) {
    justify-content: center;
  }
}
.lw-page--home .landing-section--home-popular .lw-grid--popular {
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}
.lw-page--home .landing-section--home-popular .lw-grid--popular > article {
  display: flex;
  height: 100%;
  min-height: 0;
}
.lw-page--home .landing-section--home-popular .lw-card--list {
  width: 100%;
  height: 100%;
}
.lw-page--home .landing-section--home-popular .lw-card-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.9em;
  text-align: left;
  font-size: 13px;
  line-height: 1.55;
}
.lw-page--home .landing-section--home-popular .lw-card--list .lw-card-excerpt {
  flex: 1 1 auto;
  min-height: 3.9em;
}
.lw-page--home .landing-section--home-popular .lw-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.lw-page--home .landing-section--home-popular .lw-card__foot {
  margin-top: auto;
}
.lw-reveal {
  opacity: 1;
  transform: translateY(10px);
  transition:
    opacity 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}
.lw-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.lw-page--home .landing-section--why {
  padding: clamp(36px, 5vw, 64px) 0 clamp(28px, 4vw, 48px);
}

.lw-page--home .landing-section--why .home-section-head,
.lw-page--home .landing-section--why .lw-grid--why {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
}

.lw-page--home .landing-section--why .home-section-head {
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.lw-grid.lw-grid--why {
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
}

.lw-grid--why .home-advantage-card {
  min-height: clamp(236px, 24vw, 280px);
  padding: clamp(24px, 2.8vw, 32px) clamp(24px, 2.6vw, 30px) clamp(22px, 2.4vw, 28px);
  border-radius: 20px;
  gap: 0;
}
.lw-grid--why .home-advantage-card.lw-reveal:nth-child(1) { transition-delay: 0.04s; }
.lw-grid--why .home-advantage-card.lw-reveal:nth-child(2) { transition-delay: 0.12s; }
.lw-grid--why .home-advantage-card.lw-reveal:nth-child(3) { transition-delay: 0.2s; }
.home-howto-card.lw-reveal:nth-child(1) { transition-delay: 0.05s; }
.home-howto-flow__arrow.lw-reveal:nth-child(2) { transition-delay: 0.08s; }
.home-howto-card.lw-reveal:nth-child(3) { transition-delay: 0.12s; }
.home-howto-flow__arrow.lw-reveal:nth-child(4) { transition-delay: 0.15s; }
.home-howto-card.lw-reveal:nth-child(5) { transition-delay: 0.19s; }
.lw-page--home .lw-grid--popular .lw-animate-in:nth-child(1) { transition-delay: 0.05s; }
.lw-page--home .lw-grid--popular .lw-animate-in:nth-child(2) { transition-delay: 0.12s; }
.lw-page--home .lw-grid--popular .lw-animate-in:nth-child(3) { transition-delay: 0.19s; }
.lw-page--home .lw-grid--popular .lw-animate-in {
  animation: none;
  opacity: 1;
  transform: translateY(10px);
  transition:
    opacity 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.lw-page--home .lw-grid--popular .lw-animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.landing-section--features {
  padding-top: clamp(8px, 2vw, 24px);
}
.landing-section--narrow {
  max-width: 480px;
  margin-inline: auto;
}
.hero {
  position: relative;
  overflow: hidden;
}
.lw-page--home .landing-section--hero.hero {
  overflow: visible;
}
.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.hero-ambient {
  display: none;
}
.hero-ambient__orb {
  display: none;
}
.hero-ambient__orb--1 {
  width: 220px;
  height: 220px;
  left: 12%;
  top: 8%;
  background: rgba(255, 255, 255, 0.06);
  animation-delay: 0s;
}
.hero-ambient__orb--2 {
  width: 180px;
  height: 180px;
  right: 10%;
  top: 18%;
  background: rgba(255, 255, 255, 0.045);
  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-intro {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.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);
  }
}
.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: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--lw-brand-border);
  background: var(--lw-brand-soft);
  font-size: 10px;
  font-weight: 700;
  color: var(--lw-brand);
  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;
}

.lw-btn,
a.lw-btn,
button.lw-btn,
.hero-btn,
a.hero-btn,
button.hero-btn,
.lw-account-btn,
a.lw-account-btn,
button.lw-account-btn,
.lw-auth-submit--cta,
.lw-account-btn-topup,
a.lw-account-btn-activate-key,
.lw-admin-clear-stats__btn,
.lw-promo-redeem-submit,
.lw-promo-redeem-btn,
.lw-promo-redeem-inline__submit,
.lw-email-change-dialog__save {
  --btn-bg: var(--lw-btn-bg);
  --btn-bg-hover: var(--lw-btn-bg-hover);
  --btn-text: var(--lw-btn-text);
  --btn-text-hover: var(--lw-btn-text-hover);
  --btn-border: var(--lw-btn-border);
  --btn-border-hover: var(--lw-btn-border-hover);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-sizing: border-box;
  min-height: var(--lw-control-h);
  padding: var(--lw-control-py) var(--lw-control-px);
  border: 1px solid var(--btn-border);
  border-radius: var(--lw-radius-sm);
  background: var(--btn-bg);
  color: var(--btn-text);
  font: inherit;
  font-size: var(--lw-control-fs);
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  color-scheme: light;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
button.lw-btn,
button.hero-btn,
button.lw-account-btn,
.lw-auth-submit--cta,
.lw-account-btn-topup,
.lw-admin-clear-stats__btn,
.lw-promo-redeem-submit,
.lw-promo-redeem-btn,
.lw-email-change-dialog__save {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  text-align: center;
  forced-color-adjust: auto;
}
.lw-btn:hover,
a.lw-btn:hover,
button.lw-btn:hover,
.hero-btn:hover,
a.hero-btn:hover,
button.hero-btn:hover,
.lw-account-btn:hover,
a.lw-account-btn:hover,
button.lw-account-btn:hover,
.lw-auth-submit--cta:hover,
.lw-account-btn-topup:hover,
a.lw-account-btn-activate-key:hover,
.lw-admin-clear-stats__btn:hover,
.lw-promo-redeem-submit:hover,
.lw-promo-redeem-btn:hover,
.lw-promo-redeem-inline__submit:hover,
.lw-email-change-dialog__save:hover {
  background: var(--btn-bg-hover);
  border-color: var(--btn-border-hover);
  color: var(--btn-text-hover);
}
.lw-btn:focus-visible,
a.lw-btn:focus-visible,
button.lw-btn:focus-visible,
.hero-btn:focus-visible,
a.hero-btn:focus-visible,
button.hero-btn:focus-visible,
.lw-account-btn:focus-visible,
a.lw-account-btn:focus-visible,
button.lw-account-btn:focus-visible,
.lw-auth-submit--cta:focus-visible,
.lw-account-btn-topup:focus-visible,
a.lw-account-btn-activate-key:focus-visible,
.lw-admin-clear-stats__btn:focus-visible,
.lw-promo-redeem-submit:focus-visible,
.lw-promo-redeem-btn:focus-visible,
.lw-promo-redeem-inline__submit:focus-visible,
.lw-email-change-dialog__save:focus-visible {
  outline: 2px solid var(--lw-brand-border);
  outline-offset: 2px;
}
.lw-btn:disabled,
button.lw-btn:disabled,
button.hero-btn:disabled,
button.lw-account-btn:disabled,
.lw-auth-submit--cta:disabled,
.lw-account-btn-topup:disabled,
.lw-admin-clear-stats__btn:disabled,
.lw-promo-redeem-submit:disabled,
.lw-email-change-dialog__save:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.lw-btn--dark,
.hero-btn--dark,
.lw-account-btn--dark {
  --btn-bg: #262626;
  --btn-bg-hover: #323232;
  --btn-text: #fafafa;
  --btn-text-hover: #fff;
  --btn-border: rgba(255, 255, 255, 0.1);
  --btn-border-hover: rgba(255, 255, 255, 0.16);
  color-scheme: dark;
}
.lw-btn--ghost,
.hero-btn--ghost,
.lw-account-btn--ghost,
.lw-promo-redeem-btn {
  --btn-bg: transparent;
  --btn-bg-hover: rgba(255, 255, 255, 0.06);
  --btn-text: var(--lw-muted);
  --btn-text-hover: var(--lw-text);
  --btn-border: var(--lw-border);
  --btn-border-hover: var(--lw-border-hover);
  color-scheme: dark;
}
.lw-btn--danger,
.lw-account-btn--danger,
.lw-admin-clear-stats__btn,
.lw-subscription-freeze-dialog__btn--cancel {
  --btn-bg: rgba(127, 29, 29, 0.42);
  --btn-bg-hover: rgba(185, 28, 28, 0.52);
  --btn-text: #fecaca;
  --btn-text-hover: #fff;
  --btn-border: color-mix(in srgb, var(--destructive) 45%, transparent);
  --btn-border-hover: rgba(252, 165, 165, 0.65);
  color-scheme: dark;
}
.lw-btn--success,
.lw-account-btn--success,
.lw-subscription-freeze-dialog__btn--confirm,
.lw-email-change-dialog__save {
  --btn-bg: #ececec;
  --btn-bg-hover: #ffffff;
  --btn-text: #0a0a0a;
  --btn-text-hover: #000;
  --btn-border: rgba(255, 255, 255, 0.16);
  --btn-border-hover: rgba(255, 255, 255, 0.28);
  color-scheme: light;
}
.hero-btn.primary,
a.hero-btn.primary,
button.hero-btn.primary,
.lw-account-btn.primary,
a.lw-account-btn.primary,
button.lw-account-btn.primary {
  --btn-bg: #ececec;
  --btn-bg-hover: #ffffff;
  --btn-text: #0a0a0a;
  --btn-text-hover: #000;
  --btn-border: rgba(255, 255, 255, 0.16);
  --btn-border-hover: rgba(255, 255, 255, 0.28);
  color-scheme: light;
}
.hero-btn--sm,
.lw-btn--sm {
  min-height: 24px;
  padding: 4px 9px;
  font-size: 11px;
}
.lw-btn-wide,
.hero-btn.lw-btn-wide {
  width: 100%;
  max-width: 100%;
}
.lw-account-forms .lw-btn,
.lw-account-forms .hero-btn,
.lw-account-forms .lw-account-btn,
.lw-account-card--security .lw-form--account .lw-btn,
.lw-account-card--security .lw-form--account .hero-btn,
.lw-account-card--security .lw-form--account .lw-account-btn {
  align-self: flex-start;
  width: auto;
  max-width: 100%;
}
.lw-auth-submit--cta {
  align-self: flex-start;
  margin: 6px 0 0;
}
.lw-auth-submit--cta:active,
.lw-account-btn-topup:active,
a.lw-account-btn-activate-key:active,
.lw-promo-redeem-submit:active,
.lw-promo-redeem-btn:active,
.lw-email-change-dialog__save:active {
  transform: translateY(1px);
}
.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: var(--lw-radius-lg);
  border: 1px solid var(--lw-border);
  background: var(--lw-surface);
  box-shadow: var(--lw-shadow-sm);
}
.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: var(--lw-text);
}
.home-community-banner__lead {
  margin: 0;
  max-width: 52ch;
  font-size: 13px;
  line-height: 1.45;
  color: var(--lw-muted);
}
.home-community-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-shrink: 0;
  min-height: var(--lw-control-h);
  padding: var(--lw-control-py) 14px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-brand-border);
  background: var(--lw-brand-soft);
  color: var(--lw-brand);
  font: inherit;
  font-size: var(--lw-control-fs);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}
.home-community-banner__btn:hover {
  background: var(--lw-brand-soft-hover);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--lw-brand-hover);
  transform: translateY(-1px);
  box-shadow: none;
}
.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: var(--lw-brand);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--lw-surface);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-lg);
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-advantage-card::after {
  display: none;
}
.home-advantage-card--security,
.home-advantage-card--updates,
.home-advantage-card--support {
  --home-adv-accent: var(--lw-brand);
}
.home-advantage-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  border: 1px solid var(--lw-brand-border);
  background: var(--lw-brand-soft);
  color: var(--lw-brand);
  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--updates .home-advantage-card__icon-wrap,
.home-advantage-card--support .home-advantage-card__icon-wrap {
  border-color: var(--lw-brand-border);
  background: var(--lw-brand-soft);
  color: var(--lw-brand);
}
.home-advantage-card:hover {
  border-color: var(--lw-brand-border);
  box-shadow: none;
  transform: translateY(-2px);
}
.home-advantage-card--security:hover,
.home-advantage-card--updates:hover,
.home-advantage-card--support:hover {
  box-shadow: none;
}
.home-advantage-card:hover .home-advantage-card__icon-wrap {
  transform: none;
  border-color: rgba(255, 255, 255, 0.45);
  background: var(--lw-brand-soft-hover);
  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;
}
.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) {
  .lw-reveal,
  .lw-page--home .lw-grid--popular .lw-animate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .home-advantage-card.lw-animate-in,
  .home-community-banner.lw-animate-in {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .lw-page--home .landing-section--howto::before,
  .lw-page--home .landing-section--howto::after,
  .lw-page--home .landing-section--home-popular::after,
  .home-howto-flow__arrow.lw-reveal.is-visible,
  .home-howto-card.lw-reveal.is-visible .home-howto-card__icon,
  .lw-page--home .lw-grid--popular .lw-yt-facade-play svg,
  .lw-page--home .lw-grid--popular .lw-card--list.is-visible .lw-card-price-value {
    animation: none !important;
  }
  .home-advantage-card:hover,
  .home-howto-card:hover,
  .home-community-banner__btn:hover,
  .lw-page--home .lw-grid--popular .lw-card--list:hover {
    transform: none;
    box-shadow: none;
  }
  .lw-page--home .lw-grid--popular .lw-card--list:hover .lw-yt-facade-thumb,
  .lw-page--home .lw-grid--popular .lw-card--list:hover .lw-card-video-stage--placeholder,
  .lw-page--home .lw-grid--popular .lw-card--list:hover .hero-btn.primary {
    transform: 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-border);
  background: var(--lw-surface);
  border-radius: var(--lw-radius-lg);
  padding: clamp(18px, 2.5vw, 28px);
  box-shadow: var(--lw-shadow-sm);
}
.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-border);
  border-radius: var(--lw-radius-xl);
  background: var(--lw-surface);
  box-shadow: none;
  overflow: hidden;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease;
}
.lw-card--list:hover {
  border-color: var(--lw-brand-border);
  box-shadow: none;
  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: #a1a1aa;
  border-color: rgba(255, 255, 255, 0.14);
}
.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: var(--lw-control-h);
  padding: var(--lw-control-py) 14px;
  font-size: var(--lw-control-fs);
  border-radius: var(--lw-radius-sm);
}
.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: #d4d4d8;
  border-color: rgba(255, 255, 255, 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(255, 255, 255, 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: #d4d4d8;
}
.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: #d4d4d8;
}
.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: 12px;
  border: 1px solid var(--lw-border);
  background: var(--lw-surface);
  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: var(--lw-border-hover);
  transform: translateY(-2px);
  box-shadow: var(--lw-shadow-md);
}
.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: var(--lw-surface-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: var(--lw-radius-lg);
  border: 1px solid var(--lw-border);
  background: var(--lw-surface);
  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: var(--lw-border-hover);
  transform: translateY(-2px);
  box-shadow: var(--lw-shadow-md);
}
.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: var(--lw-bg);
  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: var(--lw-bg);
}
.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: 12px;
  border: 1px solid var(--lw-border);
  background: var(--lw-surface);
  box-shadow: var(--lw-shadow-sm);
}
.lw-category-picker-label {
  display: block;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a1a1aa;
}
.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(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.45);
}
.lw-category-picker.is-open .lw-category-picker__trigger {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 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: #d4d4d8;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 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: #d4d4d8;
  background: rgba(255, 255, 255, 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(255, 255, 255, 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: var(--lw-radius-lg);
  border: 1px solid var(--lw-border);
  background: var(--lw-surface);
  box-shadow: var(--lw-shadow-md);
  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(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 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: color-mix(in srgb, var(--color-emerald-500) 15%, transparent);
}
.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-pm-field):not(.lw-admin-category-file__btn):not(.lw-product-test__check):not(.checkbox):not(.radio):not(.field) {
  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%;
  min-height: var(--lw-control-h);
  background: var(--lw-surface);
  border: 1px solid var(--lw-border);
  color: var(--lw-text);
  border-radius: var(--lw-radius-sm);
  padding: var(--lw-control-py) var(--lw-control-px);
  font-size: var(--lw-control-fs);
  line-height: 1.35;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.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: var(--lw-brand-border);
  background: #0d0d0d;
}
.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);
  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: color-mix(in srgb, var(--color-emerald-400) 32%, transparent);
  color: #bbf7d0;
}
.lw-glass-notice--ok .lw-glass-notice__icon {
  color: #86efac;
  background: color-mix(in srgb, var(--color-emerald-600) 22%, transparent);
  border-color: color-mix(in srgb, var(--color-emerald-400) 35%, transparent);
}
.lw-glass-notice--ok .lw-glass-notice__icon::before {
  content: "✓";
}
.lw-glass-notice--err {
  border-color: color-mix(in srgb, var(--destructive) 32%, transparent);
  color: #fecaca;
}
.lw-glass-notice--err .lw-glass-notice__icon {
  color: #fca5a5;
  background: rgba(220, 38, 38, 0.2);
  border-color: color-mix(in srgb, var(--destructive) 35%, transparent);
}
.lw-glass-notice--err .lw-glass-notice__icon::before {
  content: "!";
}
.lw-glass-notice--info {
  border-color: rgba(255, 255, 255, 0.12);
  color: #d4d4d8;
}
.lw-glass-notice--info .lw-glass-notice__icon {
  color: #a1a1aa;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}
.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-stack--in-dialog {
  position: fixed;
  top: calc(76px + env(safe-area-inset-top, 0px));
  right: max(16px, env(safe-area-inset-right, 0px));
  left: auto;
  z-index: 1;
  max-width: min(360px, calc(100vw - 32px));
  align-items: flex-end;
}
.lw-toast-stack--in-dialog .lw-toast.lw-glass-notice {
  align-self: flex-end;
  width: max-content;
  max-width: min(340px, calc(100vw - 32px));
}


.lw-toast.lw-glass-notice {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 11px;
  width: max-content;
  max-width: min(360px, calc(100vw - 32px));
  min-height: 46px;
  padding: 12px 16px 12px 14px;
  pointer-events: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #171717;
  box-shadow:
    0 14px 36px -14px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(0, 0, 0, 0.4);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  isolation: isolate;
  color: #e6e4e0;
  font-size: 14px;
  font-weight: 600;
  animation: lw-toast-enter 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lw-toast.lw-glass-notice::before {
  display: none;
}
.lw-toast.lw-glass-notice .lw-glass-notice__text {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 1.35;
  font-weight: 600;
}
.lw-toast.lw-glass-notice .lw-glass-notice__icon {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-width: 1.5px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.lw-toast.lw-glass-notice--err {
  border-color: rgba(229, 72, 77, 0.4);
  background: linear-gradient(180deg, rgba(40, 16, 16, 0.9) 0%, rgba(23, 13, 13, 0.95) 100%);
  color: #ec9a9a;
}
.lw-toast.lw-glass-notice--err .lw-glass-notice__text {
  color: #ec9a9a;
}
.lw-toast.lw-glass-notice--err .lw-glass-notice__icon {
  color: #ef5350;
  background: transparent;
  border-color: rgba(239, 83, 80, 0.6);
}
.lw-toast.lw-glass-notice--err .lw-glass-notice__icon::before {
  content: "\00d7";
  font-size: 15px;
  line-height: 1;
}

.lw-toast.lw-glass-notice--ok {
  border-color: color-mix(in srgb, var(--color-emerald-500) 40%, transparent);
  background: linear-gradient(180deg, rgba(16, 34, 20, 0.9) 0%, rgba(13, 21, 15, 0.95) 100%);
  color: #6fdc8c;
}
.lw-toast.lw-glass-notice--ok .lw-glass-notice__text {
  color: #6fdc8c;
}
.lw-toast.lw-glass-notice--ok .lw-glass-notice__icon {
  color: var(--color-emerald-500);
  background: transparent;
  border-color: color-mix(in srgb, var(--color-emerald-500) 60%, transparent);
}
.lw-toast.lw-glass-notice--ok .lw-glass-notice__icon::before {
  content: "\2713";
  font-size: 12px;
  line-height: 1;
}

.lw-toast.lw-glass-notice--info,
.lw-toast.lw-glass-notice--muted {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.97) 100%);
  color: #d4d1ca;
}
.lw-toast.lw-glass-notice--info .lw-glass-notice__text,
.lw-toast.lw-glass-notice--muted .lw-glass-notice__text {
  color: #d4d1ca;
}
.lw-toast.lw-glass-notice--info .lw-glass-notice__icon,
.lw-toast.lw-glass-notice--muted .lw-glass-notice__icon {
  color: #a1a1aa;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}
.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);
  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 .lw-auth-dialog__logo {
  margin-bottom: 14px;
}
.lw-auth-dialog__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.lw-auth-dialog__logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.lw-auth-header__title {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lw-text);
}
.lw-auth-header__subtitle {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--lw-muted);
  line-height: 1.45;
}
.lw-auth-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 24px 22px 20px;
  background: var(--lw-surface);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-lg);
  box-shadow: var(--lw-shadow-sm);
}
.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);
  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%;
  min-height: var(--lw-control-h);
  padding: var(--lw-control-py) var(--lw-control-px);
  font-size: var(--lw-control-fs);
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-border);
  background: var(--lw-surface);
  color: var(--lw-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lw-form--auth .row input:focus {
  outline: none;
  border-color: var(--lw-brand-border);
  box-shadow: 0 0 0 3px var(--lw-brand-soft);
}
.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-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 {
  width: auto;
  min-width: 0;
  max-width: 100%;
}
.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);
}
.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: color-mix(in srgb, var(--color-emerald-600) 40%, transparent);
  border-color: color-mix(in srgb, var(--color-emerald-400) 45%, transparent);
}
.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 color-mix(in srgb, var(--color-emerald-400) 25%, transparent);
}
.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;
}


.lw-auth-dialog {
  width: min(400px, calc(100vw - 24px));
  max-width: calc(100vw - 16px);
  color: var(--lw-text);
}
.lw-auth-dialog__panel {
  padding: 22px 20px 18px;
}
.lw-auth-dialog__brand {
  margin: 0 36px 16px 0;
  text-align: center;
}
.lw-auth-dialog__brand-title {
  margin: 0;
  font-size: clamp(1.05rem, 3.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--lw-text);
  text-transform: uppercase;
}
.lw-auth-dialog__brand-tag {
  margin-left: 0.35em;
  color: var(--lw-muted);
  font-weight: 600;
}
.lw-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin: 0 0 14px;
  padding: 3px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-md);
  background: rgba(0, 0, 0, 0.28);
}
.lw-auth-tab {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: calc(var(--lw-radius-md) - 2px);
  background: transparent;
  color: var(--lw-muted);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-auth-tab:hover {
  color: var(--lw-text);
  background: rgba(255, 255, 255, 0.04);
}
.lw-auth-tab.is-active {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.09);
  color: var(--lw-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.lw-auth-dialog__panel-pane {
  display: none;
}
.lw-auth-dialog__panel-pane.is-active {
  display: block;
}
.lw-auth-dialog__register-hint {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--lw-muted);
}
.lw-auth-dialog__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.lw-auth-dialog .lw-auth-field {
  margin-bottom: 12px;
}
.lw-auth-dialog .lw-auth-field label {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lw-muted);
}
.lw-auth-dialog .lw-auth-field__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.lw-auth-dialog .lw-auth-field__head label {
  margin-bottom: 0;
}
.lw-auth-dialog .lw-auth-field__control {
  position: relative;
}
.lw-auth-dialog .lw-auth-field__control input {
  display: block;
  width: 100%;
  min-height: 36px;
  padding: 8px 38px 8px 11px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-border);
  background: var(--lw-bg);
  color: var(--lw-text);
  font: inherit;
  font-size: 14px;
  line-height: 1.25;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lw-auth-dialog .lw-auth-field__control input:not([type="password"]) {
  padding-right: 11px;
}
.lw-auth-dialog .lw-auth-field__control input::placeholder {
  color: var(--lw-subtle);
}
.lw-auth-dialog .lw-auth-field__control input:focus {
  outline: none;
  border-color: var(--lw-border-hover);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05);
}
.lw-auth-dialog .lw-auth-field__control input:-webkit-autofill,
.lw-auth-dialog .lw-auth-field__control input:-webkit-autofill:hover,
.lw-auth-dialog .lw-auth-field__control input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--lw-text);
  caret-color: var(--lw-text);
  transition: background-color 99999s ease-out 0s;
  -webkit-box-shadow: 0 0 0 1000px var(--lw-bg) inset;
}
.lw-auth-field__toggle {
  position: absolute;
  top: 50%;
  right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  padding: 0;
  border: none;
  border-radius: var(--lw-radius-sm);
  background: transparent;
  color: var(--lw-muted);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.lw-auth-field__toggle:hover {
  color: var(--lw-text);
  background: rgba(255, 255, 255, 0.05);
}
.lw-auth-field__toggle-icon--hide {
  display: none;
}
.lw-auth-field__toggle.is-visible .lw-auth-field__toggle-icon--show {
  display: none;
}
.lw-auth-field__toggle.is-visible .lw-auth-field__toggle-icon--hide {
  display: block;
}
.lw-auth-dialog .lw-auth-field__hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--lw-subtle);
}
.lw-auth-dialog .lw-auth-link,
.lw-auth-dialog__forgot {
  font-size: 12px;
  font-weight: 500;
  color: var(--lw-muted);
  text-decoration: none;
  white-space: nowrap;
}
.lw-auth-dialog .lw-auth-link:hover,
.lw-auth-dialog__forgot:hover {
  color: var(--lw-text);
  text-decoration: underline;
}
.lw-auth-dialog .lw-auth-turnstile {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 65px;
  margin: 2px 0 10px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  line-height: normal;
  isolation: isolate;
}
.lw-auth-turnstile > div {
  width: auto;
  max-width: 100%;
  min-height: 65px;
  border: none !important;
  border-radius: 0;
  overflow: visible;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}
.lw-auth-turnstile iframe {
  display: block;
  width: auto !important;
  max-width: 100%;
  min-height: 65px;
  margin: 0 auto;
  padding: 0;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.lw-auth-dialog__submit {
  align-self: center;
  width: auto;
  min-width: 148px;
  max-width: 100%;
  margin-top: 4px;
  min-height: 32px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}
.lw-auth-dialog__legal {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--lw-border);
  text-align: center;
  font-size: 11px;
  line-height: 1.45;
  color: var(--lw-subtle);
}
.lw-auth-dialog__legal a {
  color: var(--lw-muted);
  text-decoration: none;
  font-weight: 500;
}
.lw-auth-dialog__legal 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 var(--lw-border);
  border-radius: var(--lw-radius-lg);
  background: var(--lw-elevated);
  box-shadow: var(--lw-shadow-sm);
  overflow: hidden;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-faq-item:hover {
  border-color: var(--lw-border-hover);
}
.lw-faq-item[open] {
  border-color: var(--lw-border-hover);
  background: var(--lw-surface-2);
  box-shadow: var(--lw-shadow-md);
}
.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 var(--lw-border);
  border-radius: var(--lw-radius-lg);
  background: var(--lw-elevated);
  box-shadow: var(--lw-shadow-sm);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-download-row:hover {
  border-color: var(--lw-border-hover);
  background: var(--lw-surface-2);
  box-shadow: var(--lw-shadow-md);
}
.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: 8px;
  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-page--support .lw-support-panels .lw-faq-list {
  margin-top: 16px;
}
.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: #d4d4d8;
  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: 14px;
  box-sizing: border-box;
  border-top: 1px solid var(--lw-border);
  background: transparent;
}
footer.footer--legal {
  padding-top: 18px;
}
.footer-shell {
  width: 100%;
  margin: 0;
  padding: 0 0 calc(12px + var(--lw-safe-bottom, 0px));
  box-sizing: border-box;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 18px;
}
.footer-nav--legal {
  justify-content: center;
  gap: 10px 24px;
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}
.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;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  background: rgba(0, 0, 0, 0.35);
}
.footer-lang__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 32px;
  padding: 4px 10px;
  line-height: 1;
  color: var(--lw-muted);
  text-align: center;
  text-decoration: none;
  border: 0;
  border-radius: calc(var(--lw-radius-sm) - 2px);
  background: transparent;
  transition: color 0.15s ease, background 0.15s ease, opacity 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 0 0 1px rgba(255, 255, 255, 0.12);
}
.footer-lang__btn:not(.is-active) .footer-lang__flag {
  opacity: 0.55;
}
.footer-lang__flag {
  width: 26px;
  height: 17px;
  display: block;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
@media (max-width: 900px) {
  .footer-nav--legal {
    gap: 8px 16px;
  }
}
@media (max-width: 520px) {
  .footer-shell {
    width: 100%;
    padding-bottom: calc(18px + var(--lw-safe-bottom, 0px));
  }
  .footer-link {
    font-size: 12px;
  }
  .footer-nav--legal {
    flex-direction: column;
    gap: 8px;
  }
}
.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-head .lw-product-stats {
  margin-top: 10px;
}
.lw-product-stats {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45em;
  font-size: var(--lw-font-xs);
  line-height: 1.2;
}
.lw-product-stats__star {
  color: var(--lw-brand);
  font-size: 14px;
  line-height: 1;
}
.lw-product-stats__score {
  font-weight: 700;
  color: var(--lw-brand);
}
.lw-product-stats__reviews,
.lw-product-stats__sales {
  color: var(--lw-muted);
}
.lw-product-stats__sep {
  color: var(--lw-muted);
  opacity: 0.65;
}
.lw-card--list .lw-product-stats {
  justify-content: center;
}
.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-prices--discounted {
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}
.lw-price-table-value {
  color: #ececef;
  font-weight: 600;
  font-size: 14px;
  text-align: right;
  line-height: 1.35;
  white-space: nowrap;
}
.lw-price-table-value.lw-price-table-value--was {
  text-decoration: line-through;
  color: var(--lw-subtle);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.85;
}
.lw-price-table-value.lw-price-table-value--was .lw-money,
.lw-price-table-value.lw-price-table-value--was .lw-money__amount,
.lw-price-table-value.lw-price-table-value--was .lw-money__currency {
  color: inherit;
  text-decoration: line-through;
  font-weight: inherit;
  font-size: inherit;
}
.lw-price-table-value.lw-price-table-value--sale {
  color: #86efac;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
}
.lw-price-table-value.lw-price-table-value--sale .lw-money,
.lw-price-table-value.lw-price-table-value--sale .lw-money__amount,
.lw-price-table-value.lw-price-table-value--sale .lw-money__currency {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}
.lw-product-promo-discount-badge {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--lw-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.lw-product-promo-discount-badge.lw-product-sale-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--lw-brand-border);
  background: var(--lw-brand-soft);
  color: var(--lw-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  box-shadow: none;
}
.lw-product-promo-discount-badge.lw-product-sale-badge::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lw-brand);
  box-shadow: 0 0 0 3px var(--lw-brand-soft);
}
.lw-product-promo-discount-badge:not(.lw-product-sale-badge) {
  margin: 0 0 10px;
  padding: 8px 12px;
  border-radius: var(--lw-radius-sm);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--lw-muted);
  font-size: 12px;
  font-weight: 600;
}
.lw-form--product-buy label.lw-price-table-row--select {
  display: flex;
  flex-direction: row;
  align-items: center;
  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: #e4e4e7;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 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);
  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);
}
.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);
}
.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, 3fr) minmax(380px, 2fr);
    column-gap: 24px;
    row-gap: 20px;
    align-items: start;
  }
  .lw-product-block--main .lw-product-top,
  .lw-product-block--main .lw-product-cell--info {
    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--info {
    grid-column: 1 / -1;
    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--info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.lw-product-cell--info {
  gap: 0;
  min-width: 0;
}
.lw-product-info {
  --lw-product-tab-accent: var(--lw-brand);
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.lw-product-info__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 4px 22px;
  margin: 0;
  padding: 0 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lw-product-info__tab {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 2px 12px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(212, 212, 220, 0.72);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  box-shadow: inset 0 -3px 0 transparent;
  transition: color 0.15s ease, box-shadow 0.15s ease;
}
.lw-product-info__tab:hover {
  color: #f4f4f5;
}
.lw-product-info__tab.is-active {
  color: var(--lw-product-tab-accent);
  box-shadow: inset 0 -3px 0 var(--lw-product-tab-accent);
}
.lw-product-info__tab-icon {
  flex: 0 0 auto;
  opacity: 0.9;
}
.lw-product-info__tab.is-active .lw-product-info__tab-icon {
  color: var(--lw-product-tab-accent);
}
.lw-product-info__panels {
  padding-top: 18px;
}
.lw-product-info__pane {
  display: none;
}
.lw-product-info__pane.is-active:not([hidden]) {
  display: block;
}
.lw-product-info__card {
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-md);
  background: rgba(255, 255, 255, 0.025);
  padding: 18px 18px 20px;
}
.lw-product-info__card-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--lw-text);
}
.lw-product-info__extra {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lw-product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-product-feature {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lw-radius-sm);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.lw-product-feature__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.lw-product-feature__head::-webkit-details-marker {
  display: none;
}
.lw-product-feature__icon {
  display: inline-flex;
  color: var(--lw-product-tab-accent);
}
.lw-product-feature__title {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--lw-text);
}
.lw-product-feature__chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
  margin-top: -3px;
}
.lw-product-feature[open] .lw-product-feature__chev {
  transform: rotate(-135deg);
  margin-top: 3px;
}
.lw-product-feature__list {
  margin: 0;
  padding: 0 14px 14px 38px;
  list-style: none;
}
.lw-product-feature__list li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 14px;
  color: rgba(244, 244, 245, 0.88);
  font-size: 14px;
  line-height: 1.45;
}
.lw-product-feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lw-product-tab-accent);
  transform: translateY(-50%);
}
.lw-product-sysreq {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lw-product-sysreq__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.lw-product-sysreq__icon {
  flex: 0 0 auto;
  display: inline-flex;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
}
.lw-product-sysreq__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.lw-product-sysreq__label {
  font-size: 13px;
  color: rgba(161, 161, 170, 0.95);
}
.lw-product-sysreq__value {
  font-size: 15px;
  font-weight: 700;
  color: var(--lw-text);
}
.lw-product-reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: #121212;
}
.lw-product-reviews-summary__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.lw-product-reviews-summary__avg {
  font-size: 18px;
  font-weight: 700;
  color: var(--lw-product-tab-accent);
}
.lw-product-reviews-summary__count {
  font-size: 14px;
  color: var(--lw-subtle);
}
.lw-product-info [data-lw-product-info-pane="reviews"] .lw-form--review-top {
  margin-bottom: 16px;
}
.lw-product-cell--video {
  gap: 0;
  min-height: 0;
}
.lw-product-media-card {
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-md);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.lw-product-media-card .lw-video-slider-viewport {
  border-radius: 0;
}
.lw-product-media-card .lw-video-frame {
  border: none;
  border-radius: 0;
}
.lw-empty-hint--media {
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 24px 16px;
}
.lw-product-buy-head {
  margin: 0 0 12px;
}
.lw-product-buy-head .lw-product-h2 {
  margin: 0;
}
.lw-product-cell--buy .lw-product-side-block--pricing {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0;
  border-top: none;
  align-self: start;
  width: 100%;
}
.lw-product-buy-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  height: fit-content;
  flex: 0 0 auto;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-md);
  background: var(--lw-surface, #131316);
  overflow: hidden;
}
@media (min-width: 900px) {
  .lw-product-block--main .lw-product-cell--video > .lw-product-h2,
  .lw-product-block--main .lw-product-buy-head {
    min-height: 18px;
    margin: 0 0 12px;
    display: flex;
    align-items: flex-end;
  }
  .lw-product-block--main .lw-product-buy-head .lw-product-buy-tabs {
    align-items: flex-end;
    min-height: 18px;
  }
}
.lw-product-buy-panel > .lw-product-h2 {
  margin: 0;
  padding: 14px 16px 10px;
}
.lw-product-buy-head .lw-product-buy-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.lw-product-buy-head .lw-product-buy-tab {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0 0 3px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--lw-subtle);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.65;
  box-shadow: inset 0 -2px 0 transparent;
  transition: opacity 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.lw-product-buy-head .lw-product-buy-tab:hover {
  opacity: 1;
  color: var(--lw-text);
  background: transparent;
}
.lw-product-buy-head .lw-product-buy-tab.is-active {
  opacity: 1;
  color: var(--lw-subtle);
  background: transparent;
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.42);
}
.lw-product-buy-pane {
  display: none;
}
.lw-product-buy-pane[hidden] {
  display: none !important;
}
.lw-product-buy-pane.is-active:not([hidden]) {
  display: block;
}
.lw-product-buy-pane[data-lw-product-buy-pane="pricing"].is-active:not([hidden]) {
  display: flex;
  flex-direction: column;
}
.lw-product-buy-pane[data-lw-product-buy-pane="trial"].is-active:not([hidden]) {
  display: block;
}
.lw-product-buy-panel .lw-product-buy-pane {
  padding: 0;
}
.lw-product-buy-panel .lw-product-buy-pane .lw-product-purchase {
  margin: 0;
  padding: 10px 12px 12px;
  flex: 0 0 auto;
  display: block;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-product-buy-pane .lw-product-purchase {
  padding: 12px 16px 14px;
  border-top: none;
  background: transparent;
  box-sizing: border-box;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-product-buy-pane .lw-product-purchase > .lw-product-promo-discount-badge.lw-product-sale-badge,
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-product-buy-pane > .lw-product-promo-discount-badge.lw-product-sale-badge {
  margin: 12px 14px 10px;
  padding: 6px 12px;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-product-buy-pane .lw-product-purchase > .lw-product-promo-discount-badge,
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-product-buy-pane .lw-product-purchase > .lw-product-purchase-hint,
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-product-buy-pane .lw-product-purchase > .lw-product-purchase-hint--disabled,
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-product-buy-pane .lw-product-purchase > .lw-product-cta--inline {
  margin: 0;
  padding: 12px 14px 0;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-form--product-buy .lw-product-purchase-open,
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-product-buy-pane .lw-product-purchase > .hero-btn.lw-btn-wide {
  display: block;
  width: calc(100% - 28px);
  box-sizing: border-box;
  margin: 12px 14px 14px;
  border-top: 1px solid var(--lw-border);
  padding-top: 12px;
  border-radius: var(--lw-radius-sm);
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-product-buy-pane .lw-product-purchase > .lw-product-cta--inline {
  padding-bottom: 12px;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-product-buy-pane .lw-product-purchase > .lw-product-cta--inline .hero-btn {
  width: 100%;
}
.lw-product-buy-panel .lw-form--product-buy {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}
.lw-product-buy-panel .lw-form--product-buy .lw-price-tier-fieldset,
.lw-product-buy-panel .lw-form--product-buy .lw-price-table--readonly {
  flex: 0 0 auto;
}
.lw-product-buy-panel .lw-form--product-buy .lw-product-purchase-open {
  margin-top: 0;
}
.lw-product-buy-pane[data-lw-product-buy-pane="trial"] {
  padding: 12px 14px 14px;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-price-table,
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-price-tier-fieldset.lw-price-table,
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-form--product-buy .lw-price-tier-fieldset,
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-form--product-buy .lw-price-table--readonly {
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
[data-lw-product-buy-panel] .lw-product-buy-panel label.lw-price-table-row--select {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 12px 16px;
  margin: 0;
  border: none;
  border-bottom: 1px solid var(--lw-border);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: background 0.12s ease, box-shadow 0.12s ease;
}
[data-lw-product-buy-panel] .lw-product-buy-panel label.lw-price-table-row--select:last-child {
  border-bottom: none;
}
[data-lw-product-buy-panel] .lw-product-buy-panel label.lw-price-table-row--select:hover {
  background: rgba(255, 255, 255, 0.03);
}
[data-lw-product-buy-panel] .lw-product-buy-panel label.lw-price-table-row--select:has(.lw-tier-input:checked) {
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 3px 0 0 rgba(255, 255, 255, 0.55);
}
[data-lw-product-buy-panel] .lw-product-buy-panel label.lw-price-table-row--select:has(.lw-tier-input:focus-visible) {
  outline: none;
  background: rgba(255, 255, 255, 0.04);
}
[data-lw-product-buy-panel] .lw-product-buy-panel label.lw-price-table-row--select .lw-tier-option-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-tier-radio-cell {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  align-self: center;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-tier-input {
  width: 20px;
  height: 20px;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-tier-radio-ui {
  width: 16px;
  height: 16px;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-tier-option-text {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  flex: 1 1 auto;
  min-width: 0;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-tier-option-text .lw-price-table-label {
  width: auto;
  flex: 0 1 auto;
  font-size: 14px;
  line-height: 1.4;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-price-table-aside,
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-tier-sold-out-wrap {
  flex: 0 0 auto;
  margin-left: auto;
  padding-left: 12px;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-price-table-value {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-tier-popular-badge {
  padding: 1px 6px;
  font-size: 9px;
  line-height: 1.25;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-price-table-row--display {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--lw-border);
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-price-table-row--display .lw-tier-option-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-price-table-row--display .lw-tier-option-text {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  flex: 1 1 auto;
  min-width: 0;
}
[data-lw-product-buy-panel] .lw-product-buy-panel .lw-price-table-row--display .lw-price-table-aside {
  flex: 0 0 auto;
  margin-left: auto;
  padding-left: 12px;
}
.lw-product-buy-panel .lw-price-table,
.lw-product-buy-panel .lw-price-tier-fieldset.lw-price-table,
.lw-product-buy-panel .lw-form--product-buy .lw-price-tier-fieldset,
.lw-product-buy-panel .lw-form--product-buy .lw-price-table--readonly {
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.lw-product-buy-panel .lw-price-table-row {
  padding: 10px 14px;
  gap: 10px;
  border-bottom: 1px solid var(--lw-border);
}
.lw-product-buy-panel .lw-price-table-row:last-child {
  border-bottom: none;
}
.lw-product-buy-panel .lw-price-table-row--select {
  align-items: center;
  gap: 10px;
}
.lw-product-buy-panel .lw-price-table-row--select:hover {
  background: rgba(255, 255, 255, 0.03);
}
.lw-product-buy-panel .lw-price-table-row--select:has(.lw-tier-input:checked) {
  background: rgba(255, 255, 255, 0.045);
}
.lw-product-buy-panel .lw-tier-option-text {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
}
.lw-product-buy-panel .lw-tier-radio-cell {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.lw-product-buy-panel .lw-tier-input {
  width: 20px;
  height: 20px;
}
.lw-product-buy-panel .lw-tier-radio-ui {
  width: 16px;
  height: 16px;
}
.lw-product-buy-panel .lw-price-table-label {
  font-size: 13px;
}
.lw-product-buy-panel .lw-price-table-value {
  font-size: 13px;
}
.lw-product-buy-panel .lw-tier-popular-badge {
  padding: 1px 7px;
  font-size: 9px;
}
.lw-product-buy-panel .lw-product-buy-pane > .lw-price-table:first-child {
  border-top: none;
}
.lw-product-buy-panel .lw-product-buy-pane .lw-product-promo-discount-badge.lw-product-sale-badge,
.lw-product-side-block--pricing:not([data-lw-product-buy-panel]) .lw-product-buy-panel .lw-product-promo-discount-badge.lw-product-sale-badge {
  margin-left: 16px;
  margin-right: 16px;
}
.lw-product-buy-panel .lw-product-buy-pane .lw-product-purchase-hint,
.lw-product-buy-panel .lw-product-buy-pane .lw-product-purchase-hint--disabled,
.lw-product-buy-panel .lw-product-buy-pane .lw-product-cta--inline,
.lw-product-buy-panel .lw-product-buy-pane .lw-product-promo-discount-badge:not(.lw-product-sale-badge) {
  padding-left: 16px;
  padding-right: 16px;
}
.lw-product-buy-panel .lw-product-buy-pane .lw-product-purchase-hint:first-child,
.lw-product-buy-panel .lw-product-buy-pane .lw-product-promo-discount-badge:not(.lw-product-sale-badge):first-child {
  padding-top: 14px;
}
.lw-product-buy-panel .lw-product-buy-pane .lw-product-promo-discount-badge.lw-product-sale-badge:first-child {
  padding-top: 0;
  margin-top: 14px;
}
.lw-product-side-block--pricing:not([data-lw-product-buy-panel]) .lw-product-buy-panel .lw-price-table,
.lw-product-side-block--pricing:not([data-lw-product-buy-panel]) .lw-product-buy-panel .lw-form--product-buy .lw-price-tier-fieldset,
.lw-product-side-block--pricing:not([data-lw-product-buy-panel]) .lw-product-buy-panel .lw-form--product-buy .lw-price-table--readonly {
  margin: 0;
  border: none;
  border-radius: 0;
  border-top: 1px solid var(--lw-border);
}
.lw-product-side-block--pricing:not([data-lw-product-buy-panel]) .lw-product-buy-panel .lw-product-purchase {
  margin: 0;
  padding: 14px 16px 16px;
}
.lw-product-side-block--pricing:not([data-lw-product-buy-panel]) .lw-product-buy-panel .lw-product-purchase-hint,
.lw-product-side-block--pricing:not([data-lw-product-buy-panel]) .lw-product-buy-panel .lw-product-purchase-hint--disabled,
.lw-product-side-block--pricing:not([data-lw-product-buy-panel]) .lw-product-buy-panel .lw-product-cta--inline,
.lw-product-side-block--pricing:not([data-lw-product-buy-panel]) .lw-product-buy-panel .lw-product-promo-discount-badge:not(.lw-product-sale-badge) {
  padding-left: 16px;
  padding-right: 16px;
}
.lw-product-side-block--pricing:not([data-lw-product-buy-panel]) .lw-product-buy-panel .lw-product-purchase-hint:first-child,
.lw-product-side-block--pricing:not([data-lw-product-buy-panel]) .lw-product-buy-panel .lw-product-promo-discount-badge:not(.lw-product-sale-badge):first-child {
  padding-top: 14px;
}
.lw-product-side-block--pricing:not([data-lw-product-buy-panel]) .lw-product-buy-panel .lw-product-promo-discount-badge.lw-product-sale-badge:first-child {
  padding-top: 0;
  margin-top: 14px;
}
.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-page--product .landing-wrap {
  width: min(1160px, calc(100% - 36px));
}
.lw-product-info [data-lw-product-info-pane="reviews"] {
  width: 100%;
  max-width: none;
}
.lw-product-info [data-lw-product-info-pane="reviews"] .lw-form--review-top,
.lw-product-info [data-lw-product-info-pane="reviews"] .lw-review-login-hint,
.lw-product-info [data-lw-product-info-pane="reviews"] .lw-reviews-empty,
.lw-product-info [data-lw-product-info-pane="reviews"] .lw-reviews-pager,
.lw-product-info [data-lw-product-info-pane="reviews"] .lw-product-reviews-summary,
.lw-product-info [data-lw-product-info-pane="reviews"] .lw-reviews-cap-hint {
  width: 100%;
  max-width: none;
}
.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: #d4d4d8;
}
.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 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  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: 0;
  padding: 0;
  background: transparent;
  border: none;
  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 rgba(255, 255, 255, 0.12);
  background: rgba(11, 11, 13, 0.72);
  color: #fafafa;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.lw-video-slider-btn:hover {
  background: rgba(24, 24, 28, 0.88);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.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--labeled {
  width: auto;
  min-width: 40px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
}
.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: 12px;
  width: 100%;
}
.lw-reviews-pager-page .lw-review-list {
  margin-top: 0;
}
.lw-review-item {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: #121212;
}
.lw-review-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px 14px;
}
.lw-review-item__author-block {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 220px;
  min-width: 0;
}
.lw-review-item__avatar {
  width: 34px;
  height: 34px;
}
.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-user-avatar--initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #e4e4e7;
  background: rgba(255, 255, 255, 0.08);
}
.lw-review-item__avatar--sm {
  width: 22px;
  height: 22px;
}
.lw-review-item__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}
.lw-review-item__author {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-review-item__product {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--lw-brand);
  text-decoration: none;
  transition: color 0.15s ease;
}
.lw-review-item__product:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lw-review-item__date {
  flex: 0 0 auto;
  margin-left: auto;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(161, 161, 170, 0.95);
  white-space: nowrap;
}
.lw-review-item__rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 10px;
}
.lw-review-item__stars {
  flex-shrink: 0;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: var(--lw-brand);
}
.lw-review-item__title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.lw-review-body {
  margin: 10px 0 0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif, "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 13px;
  color: #d4d4d8;
  line-height: 1.45;
  word-break: break-word;
}
.lw-review-body strong {
  font-weight: 600;
  color: #f1f5f9;
}
.lw-review-body em {
  font-style: italic;
}
.lw-review-body u {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lw-review-votes {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.lw-review-vote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-review-vote:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.lw-review-vote:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}
.lw-review-vote.is-active {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.lw-review-vote--like.is-active {
  border-color: rgba(87, 242, 135, 0.45);
  background: rgba(87, 242, 135, 0.12);
  color: #9ef0b8;
}
.lw-review-vote--dislike.is-active {
  border-color: rgba(237, 66, 69, 0.45);
  background: rgba(237, 66, 69, 0.12);
  color: #f3a0a2;
}
.lw-review-vote__icon {
  flex-shrink: 0;
}
.lw-review-vote__count {
  min-width: 1ch;
  font-variant-numeric: tabular-nums;
}
.lw-review-reply {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border-left: 3px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}
.lw-review-reply__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 6px;
}
.lw-review-reply__label {
  margin: 0;
  font-size: var(--lw-font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d4d4d8;
  line-height: 1;
}
.lw-review-reply__author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.lw-review-reply__avatar {
  width: 20px;
  height: 20px;
  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-reply__author-name {
  font-size: var(--lw-font-xs);
  font-weight: 500;
  color: var(--lw-subtle);
  line-height: 1.2;
}
.lw-review-reply__text {
  margin: 0;
  font-size: var(--lw-font-sm);
  line-height: 1.55;
  color: #d4dae4;
  word-break: break-word;
}
.lw-review-reply__text strong {
  font-weight: 600;
  color: #e8edf4;
}
.lw-review-reply__text em {
  font-style: italic;
}
.lw-review-reply__text u {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lw-review-reply__date {
  margin: 8px 0 0;
  font-size: var(--lw-font-xs);
  color: var(--lw-subtle);
}
.lw-review-reply-form[hidden] {
  display: none !important;
}
.lw-review-reply-form {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--lw-border);
}
.lw-review-reply-toggle {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--lw-brand);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-review-reply-toggle:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
  color: #d4d4d8;
}
.lw-review-reply-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}
.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,
.lw-review-reply-form .lw-review-editor 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-item__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.lw-review-edit-link {
  font-size: 12px;
  font-weight: 600;
  color: #d4d4d8;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.lw-review-edit-link:hover {
  color: #fafafa;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}
.lw-review-delete {
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 11px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--destructive) 38%, transparent);
  background: color-mix(in srgb, var(--destructive) 9%, transparent);
  color: #fecaca;
}
.lw-review-delete:hover {
  border-color: rgba(252, 165, 165, 0.55);
  background: color-mix(in srgb, var(--destructive) 14%, transparent);
}
.lw-review-edited {
  color: var(--lw-subtle);
}
.lw-form--review {
  margin-top: 0;
  width: 100%;
  max-width: none;
  padding: 22px 20px;
  border: 1px solid var(--lw-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  scroll-margin-top: 88px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.lw-form--review.is-edit-focus {
  border-color: color-mix(in srgb, var(--color-emerald-500) 45%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-emerald-500) 20%, transparent);
}
.lw-review-editor {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.lw-review-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid var(--lw-border);
  background: rgba(0, 0, 0, 0.22);
}
.lw-review-toolbar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: rgba(226, 232, 240, 0.88);
  font: inherit;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
.lw-review-toolbar__btn strong,
.lw-review-toolbar__btn em {
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
}
.lw-review-toolbar__u {
  text-decoration: underline;
}
.lw-review-toolbar__btn:hover,
.lw-review-toolbar__btn:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  outline: none;
}
.lw-review-toolbar__btn--emoji {
  font-size: 15px;
}
.lw-review-toolbar__sep {
  width: 1px;
  height: 18px;
  margin: 0 2px;
  background: rgba(255, 255, 255, 0.1);
}
.lw-review-emoji {
  position: relative;
}
.lw-review-emoji__panel {
  position: absolute;
  z-index: 12;
  top: calc(100% + 6px);
  left: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2px;
  width: min(248px, calc(100vw - 48px));
  padding: 8px;
  border-radius: 10px;
  border: 1px solid var(--lw-border);
  background: #141414;
  box-shadow: var(--lw-shadow-md);
}
.lw-review-emoji__panel[hidden] {
  display: none !important;
}
.lw-review-emoji__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  border: none;
  border-radius: 6px;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.lw-review-emoji__btn:hover,
.lw-review-emoji__btn:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}
.lw-form--review textarea,
.lw-review-editor textarea,
.lw-review-reply-form .lw-review-editor textarea {
  width: 100%;
  max-width: none;
  padding: 10px 12px;
  font-size: var(--lw-font-sm);
  line-height: 1.5;
}
.lw-review-text-hint {
  margin: 6px 0 0;
  font-size: var(--lw-font-xs);
  line-height: 1.45;
}
.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);
  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-support-dialog {
  width: min(480px, calc(100vw - 24px));
  max-width: calc(100vw - 16px);
}
.lw-support-dialog__panel {
  padding: 22px 22px 20px;
  background: var(--lw-surface);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-xl);
  box-shadow: var(--lw-shadow-md);
}
.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(255, 255, 255, 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(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 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: #e4e4e7;
  background: rgba(255, 255, 255, 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-account-shell {
  display: flex;
  flex-direction: column;
  gap: 0;
  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, 260px) minmax(0, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: start;
  min-width: 0;
}
.lw-account-shell__body > .lw-account-sidebar {
  grid-column: 1;
  grid-row: 1;
}
.lw-account-shell__body > .lw-account-main {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  width: 100%;
}
.lw-account-sidebar {
  position: sticky;
  top: calc(72px + var(--lw-safe-top, 0px));
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-self: start;
}
.lw-account-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 auto;
  padding: 12px;
  border-radius: var(--lw-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.42);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.lw-account-sidebar__label {
  margin: 0 0 2px;
  padding: 0 10px 4px;
  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 10px;
  margin: 6px 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 var(--lw-border);
  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: 9px 10px 9px 12px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid transparent;
  color: var(--lw-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.lw-account-sidebar__link:hover {
  background: var(--lw-elevated);
  border-color: transparent;
  color: var(--lw-text);
}
.lw-account-sidebar__link.is-active {
  background: var(--lw-elevated);
  border-color: var(--lw-border);
  color: var(--lw-text);
  box-shadow: none;
}
.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: 30px;
  height: 30px;
  border-radius: var(--lw-radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--lw-account-accent-muted);
}
.lw-account-sidebar__icon svg {
  display: block;
}
.lw-account-sidebar__link.is-active .lw-account-sidebar__icon {
  background: var(--lw-surface-2);
  border-color: var(--lw-border-hover);
  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%;
  container-type: inline-size;
  container-name: account-main;
}
.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: 12px;
  min-height: 0;
}
.lw-account-main__title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lw-text);
  line-height: 1.2;
}
.lw-account-main__lead {
  margin: 0;
  max-width: 56ch;
  font-size: 14px;
  line-height: 1.45;
  color: var(--lw-muted);
  min-height: 1.45em;
}
.lw-account-main__lead[hidden] {
  display: block !important;
  visibility: hidden;
}
.lw-page--account .lw-account-page.lw-animate-in {
  animation: none;
}
.lw-account-settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "overview"
    "side"
    "right"
    "security";
  gap: 12px;
  align-items: stretch;
}
.lw-account-settings-grid > .lw-account-card--overview {
  grid-area: overview;
  align-self: start;
  min-height: 0;
  overflow: visible;
}
.lw-account-settings-tools__stack {
  grid-area: side;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
}
.lw-account-settings-tools__stack > .section-card {
  width: 100%;
  min-width: 0;
  flex: 0 0 auto;
}
.lw-account-settings-tools__stack > .lw-account-card--media-partner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.lw-account-settings-tools__stack > .lw-account-card--media-partner-linked {
  flex: 1 1 auto;
}
.lw-account-settings-tools__stack > .lw-account-card--media-partner .lw-profile-mp-plate--card,
.lw-account-settings-tools__stack > .lw-account-card--media-partner-linked .lw-profile-mp-plate--card {
  flex: 1 1 auto;
  min-height: 0;
}
.lw-account-settings-tools__stack > .lw-account-card--media-partner:not(.lw-account-card--media-partner-linked) {
  justify-content: flex-start;
}
.lw-account-settings-right {
  grid-area: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
}
.lw-account-settings-right > .lw-account-card--social {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.lw-account-settings-grid > .lw-account-card--security {
  grid-area: security;
  width: 100%;
  min-width: 0;
}
@container account-main (min-width: 560px) {
  .lw-account-settings-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "overview overview"
      "side right"
      "security security";
  }
}
.lw-profile-mp-plate--card {
  margin: 0;
}
.lw-profile-mp-plate {
  margin: 2px 0 0;
  padding: 12px 14px;
  border-radius: var(--lw-radius-md);
  border: 1px solid color-mix(in srgb, var(--color-emerald-500) 22%, transparent);
  background: linear-gradient(145deg, color-mix(in srgb, var(--color-emerald-500) 10%, transparent) 0%, rgba(255, 255, 255, 0.02) 55%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-profile-mp-plate__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  min-width: 0;
}
.lw-profile-mp-plate__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid color-mix(in srgb, var(--color-emerald-500) 24%, transparent);
  background: color-mix(in srgb, var(--color-emerald-500) 12%, transparent) center / 18px 18px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E");
}
.lw-profile-mp-plate__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lw-profile-mp-plate__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lw-muted);
}
.lw-profile-mp-plate__code {
  display: block;
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lw-text);
  word-break: break-word;
}
.lw-profile-mp-plate__badge {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  color: #4ade80;
  background: color-mix(in srgb, var(--color-emerald-500) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-emerald-500) 28%, transparent);
}
.lw-profile-mp-plate__hint {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  line-height: 1.45;
}
.lw-account-settings-grid > .section-card,
.lw-account-settings-right > .section-card {
  padding: 16px 18px;
  margin: 0;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-lg);
  background: var(--lw-surface);
  box-shadow: var(--lw-shadow-sm);
  box-sizing: border-box;
}
.lw-account-card--overview {
  padding-bottom: 14px;
}
.lw-account-settings-grid > .section-card.lw-account-card--media-partner-linked,
.lw-account-settings-tools__stack > .section-card.lw-account-card--media-partner-linked {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.lw-account-card__heading {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--lw-text);
}
.lw-account-card__heading--inline {
  margin-bottom: 4px;
}
.lw-account-settings-layout {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.lw-account-overview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}
.lw-account-card--overview .lw-account-card__heading {
  margin-bottom: 10px;
}
.lw-account-overview__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 20px;
}
@container account-main (max-width: 540px) {
  .lw-account-overview__top {
    grid-template-columns: 1fr;
  }
}
.lw-account-overview__identity {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
  min-width: 0;
}
.lw-account-overview__identity .lw-account-avatar-form {
  align-self: center;
}
.lw-account-overview__who {
  grid-column: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lw-account-overview__name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.lw-account-overview__name-row .lw-profile-card__username {
  min-width: 0;
  font-size: 16px;
}
.lw-account-overview__name-row .lw-profile-card__status {
  flex-shrink: 0;
}
.lw-account-overview__balance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 12px;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  min-width: min(100%, 210px);
  padding: 10px 12px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-border);
  background: var(--lw-bg);
}
@container account-main (max-width: 540px) {
  .lw-account-overview__balance {
    width: 100%;
    min-width: 0;
  }
}
.lw-account-overview__balance-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.lw-account-overview__balance-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
}
.lw-account-overview__balance-value {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fafafa;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.lw-account-overview__balance .lw-profile-card__topup,
.lw-account-overview__balance .lw-account-btn-topup {
  width: auto;
  flex-shrink: 0;
  margin: 0;
}
.lw-account-overview__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--lw-border);
  align-items: stretch;
}
@container account-main (min-width: 640px) {
  .lw-account-overview__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.lw-account-overview__stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-height: 0;
  padding: 8px 10px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-border);
  background: var(--lw-bg);
  min-width: 0;
}
.lw-account-overview__stat dt {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  color: var(--lw-muted);
  line-height: 1.3;
}
.lw-account-overview__stat dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--lw-text);
  line-height: 1.35;
  word-break: break-word;
}
.lw-account-settings-right .lw-account-social-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}
.lw-account-settings-right .lw-account-social-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  min-height: 72px;
}
.lw-account-settings-right .lw-account-social-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}
.lw-account-settings-right .lw-account-social-item__status {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  flex-shrink: 0;
  width: max-content;
  max-width: 100%;
}
.lw-account-settings-right .lw-account-social-item__status .lw-account-social-item__badge.is-linked,
.lw-account-settings-right .lw-account-social-item__status .lw-account-chip-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
.lw-account-settings-right .lw-account-social-item__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
}
.lw-account-settings-right .lw-account-social-item__unlink-form {
  margin: 0;
  width: 100%;
}
.lw-account-settings-right .lw-account-social-item__unlink-form .lw-account-chip-btn {
  font-size: 11px;
  font-weight: 700;
  min-height: 0;
  height: auto;
  width: 100%;
  padding: 3px 8px;
  border-radius: 999px;
  line-height: 1.2;
  white-space: nowrap;
}
.lw-account-settings-right .lw-account-social-item__badge.is-linked {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  line-height: 1.2;
  text-align: center;
}
.lw-account-settings-right .lw-account-social-item__actions {
  margin-top: 0;
}
.lw-account-settings-right .lw-account-social-item__actions .lw-account-chip-btn {
  width: 100%;
}
.lw-account-card--promo,
.lw-account-card--social {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.lw-account-card--promo .lw-account-promo-bar__hint,
.lw-account-card--promo .lw-account-promo-notice {
  margin: 0 0 10px;
}
.lw-account-card--promo .lw-account-card__heading,
.lw-account-card--social .lw-account-card__heading {
  margin-bottom: 10px;
}
.lw-profile-compact__top .lw-account-avatar-form {
  display: contents;
}
.lw-account-avatar--upload {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--lw-border);
  background: var(--lw-elevated);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-account-avatar--upload:hover {
  border-color: var(--lw-border-hover);
}
.lw-account-avatar--upload:focus-within {
  outline: none;
  border-color: var(--lw-border-hover);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}
.lw-account-avatar__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.lw-account-avatar__initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 700;
  color: var(--lw-text);
}
.lw-account-avatar__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  color: #fafafa;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.lw-account-avatar--upload:hover .lw-account-avatar__overlay,
.lw-account-avatar--upload:focus-within .lw-account-avatar__overlay {
  opacity: 1;
}
.lw-account-avatar-form__hint {
  margin: -4px 0 0;
  font-size: 12px;
  line-height: 1.45;
}
.lw-profile-compact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  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: 12px 14px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-border);
  background: var(--lw-bg);
}
.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: 12px 0 0;
  border-top: 1px solid var(--lw-border);
}
.lw-profile-compact__cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-border);
  background: var(--lw-bg);
  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,
.lw-account-card--media-partner .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: 40px;
  padding: 10px 12px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  background: var(--lw-bg);
  color: var(--lw-text);
  font-size: 14px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  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: var(--lw-subtle);
  font-family: inherit;
  letter-spacing: normal;
}
.lw-promo-redeem-inline__input:focus {
  outline: none;
  border-color: var(--lw-border-hover);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}
.lw-promo-redeem-inline__submit {
  flex-shrink: 0;
  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,
.lw-account-card--media-partner .lw-promo-redeem-inline {
  gap: 8px;
}
.lw-account-card--media-partner .lw-promo-redeem-inline__input {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 13px;
}
.lw-account-card--media-partner:not(.lw-account-card--media-partner-linked) .lw-promo-redeem-inline {
  width: 100%;
  max-width: 420px;
}
.lw-account-card--media-partner .lw-account-mp-locked {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}
.lw-account-card--security .lw-form--account .lw-btn,
.lw-account-card--security .lw-form--account .hero-btn,
.lw-account-card--security .lw-form--account .lw-account-btn {
  margin-top: 2px;
}
.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-security-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 24px;
  align-items: start;
}
.lw-account-card--security .lw-account-security-block {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--lw-border);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lw-account-security-layout > .lw-account-security-block {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.lw-account-security-layout > .lw-account-security-block--email {
  padding-left: 24px;
  border-left: 1px solid var(--lw-border);
}
.lw-account-card--security .lw-account-security-block:first-of-type .lw-form--account {
  display: flex;
  flex-direction: column;
  max-width: none;
  gap: 0;
}
.lw-account-card--security .lw-account-security-block:first-of-type .lw-form--account > .lw-account-chip-btn {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  justify-content: center;
}
.lw-account-security-block--email .lw-account-email-actions,
.lw-account-security-block--email .lw-account-security-email-state {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-border);
  background: var(--lw-bg);
}
.lw-account-card--security .lw-account-email-actions {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.lw-account-card--security .lw-account-email-actions .lw-account-chip-btn {
  width: 100%;
  justify-content: center;
}
.lw-account-security-email-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}
.lw-account-security-email-state__addr {
  display: block;
  max-width: 100%;
  font-size: 13px;
  line-height: 1.4;
  color: var(--lw-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .lw-account-security-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lw-account-security-layout > .lw-account-security-block--email {
    padding-top: 16px;
    padding-left: 0;
    margin-top: 16px;
    border-left: none;
    border-top: 1px solid var(--lw-border);
  }
}
.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"],
.lw-account-card--security .lw-form--account input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--lw-radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--lw-text);
  font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.lw-account-card--security .lw-form--account input[type="password"]:focus,
.lw-account-card--security .lw-form--account input[type="email"]:focus {
  outline: none;
  border-color: var(--lw-border-hover);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}
.lw-account-card--security .lw-form--account label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lw-text);
}
.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-promo-redeem-inline {
  margin: 0;
  max-width: 420px;
}
.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(255, 255, 255, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 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: #d4d4d8;
}
.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(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #e4e4e7;
}
.lw-account-tab--admin:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #e4e4e7;
}
.lw-account-tab--admin.is-active {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fffbeb;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 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-border);
  border-radius: var(--lw-radius-lg);
  background: var(--lw-surface);
  box-shadow: var(--lw-shadow-sm);
}
.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 22px;
  border-bottom: 1px solid var(--lw-border);
  background: var(--lw-surface-2);
}
.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 var(--lw-border);
  border-radius: var(--lw-radius-md);
  background: var(--lw-bg);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-account-ledger__row:hover {
  border-color: var(--lw-border-hover);
  background: var(--lw-elevated);
}
.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.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--lw-brand);
}
.lw-account-ledger__icon--payment,
.lw-account-ledger__icon--promo,
.lw-account-ledger__icon--link,
.lw-account-ledger__icon--review,
.lw-account-ledger__icon--bonus {
  color: var(--lw-brand);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}
.lw-account-ledger__icon--admin {
  color: var(--destructive);
  background: color-mix(in srgb, var(--destructive) 12%, transparent);
  border-color: color-mix(in srgb, var(--destructive) 32%, transparent);
}
.lw-account-ledger__icon--admin-debit {
  color: #fca5a5;
  background: color-mix(in srgb, var(--destructive) 12%, transparent);
  border-color: color-mix(in srgb, var(--destructive) 32%, transparent);
}
.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: var(--destructive);
}
.lw-account-ledger__amount--promo-disc {
  color: #e4e4e7;
}
.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: visible;
}
.lw-account-ledger__summary--purchases {
  padding: 14px 16px;
  border-bottom: 1px solid var(--lw-border);
}
.lw-account-ledger__summary-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.lw-account-ledger__pill {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-variant-numeric: tabular-nums;
}
.lw-account-ledger__pill-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-subtle);
  line-height: 1.2;
}
.lw-account-ledger__pill-value {
  font-size: 13px;
  font-weight: 700;
  color: #fafafa;
  line-height: 1.2;
}
.lw-account-ledger__pill--expired {
  border-color: color-mix(in srgb, var(--destructive) 22%, transparent);
  background: color-mix(in srgb, var(--destructive) 8%, transparent);
}
.lw-account-ledger__pill--expired .lw-account-ledger__pill-label {
  color: rgba(252, 165, 165, 0.85);
}
.lw-account-ledger__pill--expired .lw-account-ledger__pill-value {
  color: #fca5a5;
}
.lw-account-ledger__active-empty {
  margin: 0;
  padding: 10px 12px 12px;
  font-size: 13px;
  line-height: 1.45;
}
.lw-account-ledger__summary--purchases .lw-account-ledger__topup {
  margin-left: auto;
  white-space: nowrap;
}
.lw-account-purchase-table {
  margin: 0;
  --lw-purchase-pad-x: 14px;
  --lw-purchase-grid: minmax(128px, 1.15fr) 104px 84px 64px 108px 92px minmax(240px, 1fr);
}
.lw-account-purchase-table-wrap {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.lw-account-purchase-list {
  list-style: none;
  margin: 0;
  padding: 0 0 6px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 860px;
}
.lw-account-purchase-row__grid > * {
  min-width: 0;
}
.lw-account-purchase-row__grid {
  display: grid;
  grid-template-columns: var(--lw-purchase-grid);
  gap: 0 10px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.lw-account-purchase-list__head {
  position: sticky;
  top: 0;
  z-index: 2;
  margin: 0;
  padding: 10px var(--lw-purchase-pad-x);
  border-bottom: 1px solid var(--lw-border);
  background: var(--lw-surface);
}
.lw-account-purchase-list__col {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-subtle);
  line-height: 1.2;
  white-space: nowrap;
}
.lw-account-purchase-list__col--amount,
.lw-account-purchase-row__amount {
  text-align: right;
  justify-self: end;
}
.lw-account-purchase-list__col--term,
.lw-account-purchase-row__term {
  justify-self: start;
  min-width: 0;
}
.lw-account-purchase-list__col--remaining,
.lw-account-purchase-row__remaining {
  justify-self: start;
  text-align: left;
}
.lw-account-purchase-list__col--date,
.lw-account-purchase-row__date {
  justify-self: start;
}
.lw-account-purchase-list__col--status {
  justify-self: start;
}
.lw-account-purchase-list__col--actions {
  justify-self: end;
  text-align: right;
}
.lw-account-purchase-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: visible;
  content-visibility: visible;
  padding: 10px var(--lw-purchase-pad-x);
  min-height: 0;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s ease;
}
.lw-account-purchase-row:last-child {
  border-bottom: none;
}
.lw-account-purchase-row:hover {
  background: rgba(255, 255, 255, 0.03);
}
.lw-account-purchase-row__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--lw-text);
  line-height: 1.3;
  letter-spacing: -0.01em;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-account-purchase-row__date,
.lw-account-purchase-row__term {
  font-size: 11px;
  color: var(--lw-muted);
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.lw-account-purchase-row__amount {
  font-size: 11px;
  font-weight: 600;
  color: var(--lw-text);
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.lw-account-purchase-row__remaining {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  color: #86efac;
  font-variant-numeric: tabular-nums;
  min-width: 0;
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
  word-break: break-word;
}
.lw-account-purchase-row__remaining.is-empty {
  font-weight: 500;
  color: rgba(113, 113, 122, 0.65);
  text-align: center;
  justify-self: center;
  white-space: nowrap;
}
.lw-account-purchase-row__issue-hint {
  margin: 0 0 6px;
  font-size: 11px;
  line-height: 1.35;
  max-width: 56ch;
}
.lw-account-purchase-row__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  box-sizing: border-box;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--lw-muted);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  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: color-mix(in srgb, var(--color-emerald-500) 12%, transparent);
  border-color: color-mix(in srgb, var(--color-emerald-400) 24%, transparent);
}
.lw-account-purchase-row__status--pending {
  color: #a1a1aa;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.lw-account-purchase-row__status--expired {
  color: #fca5a5;
  background: color-mix(in srgb, var(--destructive) 10%, transparent);
  border-color: color-mix(in srgb, var(--destructive) 22%, transparent);
}
.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(255, 255, 255, 0.1);
  border-color: rgba(252, 211, 77, 0.22);
}
.lw-account-purchase-row__status--removed {
  color: var(--destructive);
  background: color-mix(in srgb, var(--destructive) 10%, transparent);
  border-color: color-mix(in srgb, var(--destructive) 22%, transparent);
}
.lw-account-purchase-row__foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 6px 0 2px;
  width: 100%;
  box-sizing: border-box;
}
.lw-account-purchase-row__key {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 4px 6px 4px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.lw-account-purchase-row__key-label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lw-subtle);
  line-height: 1.2;
}
.lw-account-purchase-row__key .lw-purchase-key-text {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  color: rgba(228, 228, 231, 0.92);
  letter-spacing: 0.03em;
  font-family: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
}
.lw-account-purchase-row__key .lw-purchase-copy-icon {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  color: rgba(161, 161, 170, 0.9);
}
.lw-account-purchase-row__key .lw-purchase-copy-icon:hover {
  color: #f4f4f5;
  background: rgba(255, 255, 255, 0.08);
}
.lw-account-purchase-row__key .lw-purchase-copy-icon svg {
  width: 13px;
  height: 13px;
}
.lw-account-purchase-row__key .lw-muted {
  font-size: 11px;
}
.lw-account-purchase-row__actions {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  align-content: flex-end;
  gap: 6px;
  row-gap: 4px;
  min-height: 30px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-self: end;
  box-sizing: border-box;
  content-visibility: visible;
}
.lw-purchase-action-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 5px;
  height: 30px;
  margin: 0;
  padding: 0 8px 0 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #ececee;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.lw-purchase-action-btn--icon-only {
  width: 30px;
  min-width: 30px;
  padding: 0;
  gap: 0;
}
.lw-purchase-action-btn__label {
  padding-right: 1px;
}
.lw-purchase-action-btn:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fafafa;
}
.lw-purchase-action-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}
.lw-purchase-action-btn svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  pointer-events: none;
}
.lw-account-purchase-row__actions .lw-purchase-menu {
  display: inline-flex;
  flex: 0 0 auto;
}
.lw-account-purchase-row__actions .lw-purchase-menu__toggle {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #ececee;
}
.lw-account-purchase-row__actions .lw-purchase-menu.is-open .lw-purchase-menu__toggle,
.lw-account-purchase-row__actions .lw-purchase-menu__toggle:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fafafa;
}
.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.is-fixed {
  position: fixed;
  top: auto;
  right: auto;
  left: auto;
  bottom: auto;
  z-index: 1200;
}
.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--danger {
  color: #fca5a5;
}
.lw-purchase-menu__item--danger:hover {
  background: rgba(220, 38, 38, 0.18);
  color: #fecaca;
}
.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__pricing {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fafafa;
}
.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(255, 255, 255, 0.1);
  font-size: 13px;
  line-height: 1.45;
  color: #e4e4e7;
}
.lw-hwid-reset-dialog__actions {
  justify-content: flex-end;
  gap: 8px;
}
.lw-loader-download-dialog {
  width: min(420px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
}
.lw-loader-download-dialog__inner {
  padding: 20px 18px 18px;
}
.lw-loader-download-dialog__title {
  margin: 0 40px 0.35rem 0;
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.lw-loader-download-dialog__product {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}
.lw-loader-download-dialog__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.lw-loader-download-dialog__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.lw-loader-download-dialog__label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.lw-loader-download-dialog__filename {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-border);
  background: rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lw-loader-download-dialog__filename:focus-within {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.lw-loader-download-dialog__filename-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--lw-muted);
}
.lw-loader-download-dialog__filename-input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: none;
  background: transparent;
  color: var(--lw-text);
  font: inherit;
  font-size: 13px;
  outline: none;
}
.lw-loader-download-dialog__weight-value {
  margin: 0;
  font-size: 12px;
  color: var(--lw-muted);
  font-variant-numeric: tabular-nums;
}
.lw-loader-download-dialog__range {
  --range-fill: 0%;
  --range-track: rgba(255, 255, 255, 0.1);
  --range-active: rgba(255, 255, 255, 0.82);
  --range-thumb: #f4f4f5;
  display: block;
  width: 100%;
  height: 8px;
  margin: 4px 0 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.lw-loader-download-dialog__range::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--range-active) 0%,
    var(--range-active) var(--range-fill),
    var(--range-track) var(--range-fill),
    var(--range-track) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.28);
}
.lw-loader-download-dialog__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  margin-top: -7px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--range-thumb) 0%, #d4d4d8 100%);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(0, 0, 0, 0.12);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.lw-loader-download-dialog__range:hover::-webkit-slider-thumb {
  box-shadow:
    0 3px 10px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.22);
}
.lw-loader-download-dialog__range:active::-webkit-slider-thumb {
  transform: scale(1.04);
  cursor: grabbing;
}
.lw-loader-download-dialog__range::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: var(--range-track);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.28);
}
.lw-loader-download-dialog__range::-moz-range-progress {
  height: 8px;
  border-radius: 999px 0 0 999px;
  background: var(--range-active);
}
.lw-loader-download-dialog__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--range-thumb) 0%, #d4d4d8 100%);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(0, 0, 0, 0.12);
  cursor: grab;
}
.lw-loader-download-dialog__range:focus-visible::-webkit-slider-thumb,
.lw-loader-download-dialog__range:focus-visible::-moz-range-thumb {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}
.lw-loader-download-dialog__turnstile {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 4px 0 0;
  padding: 0;
  line-height: 0;
}
.lw-loader-download-dialog__turnstile > div {
  width: auto !important;
  max-width: 100%;
  margin: 0;
}
.lw-loader-download-dialog__turnstile iframe {
  display: block;
  margin: 0;
}
.lw-loader-download-dialog__actions {
  justify-content: flex-start;
  gap: 8px;
  margin-top: 2px;
  padding-top: 0;
}
.lw-loader-download-dialog__submit {
  min-height: 30px;
  padding: 5px 14px;
  border-radius: var(--lw-radius-sm);
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 479px) {
  .lw-loader-download-dialog {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
  }
  .lw-loader-download-dialog__inner {
    padding: 16px 14px 14px;
  }
}
.lw-subscription-freeze-dialog .lw-hwid-reset-dialog__actions .lw-subscription-freeze-dialog__btn {
  min-height: 28px;
  padding: 4px 10px;
  font-size: 11px;
}
.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;
  text-decoration: none;
  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: 24px;
  height: 24px;
  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;
}
.lw-purchase-loader-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 5px 8px 5px 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: var(--lw-btn-bg);
  color: var(--lw-btn-text);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.lw-purchase-loader-btn:hover {
  background: var(--lw-btn-bg-hover);
  color: var(--lw-btn-text-hover);
}
.lw-purchase-loader-btn:focus-visible {
  outline: 2px solid rgba(229, 229, 229, 0.35);
  outline-offset: 2px;
}
.lw-purchase-loader-btn--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.06);
  color: var(--lw-muted);
  border-color: var(--lw-border);
}
.lw-purchase-loader-btn__frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.35);
  color: inherit;
}
.lw-purchase-loader-btn__label {
  padding-right: 2px;
}
@media (max-width: 900px) {
  .lw-account-purchase-row__key {
    max-width: 100%;
  }
}
.lw-account-card--purchases.lw-account-card--ledger {
  padding: 0;
  overflow: hidden;
  border-radius: var(--lw-radius-lg);
  isolation: isolate;
}
.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: var(--lw-bg);
  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: none;
  width: 100%;
}
.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: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lw-promo-redeem-form .lw-email-dialog__actions {
  margin-top: 8px;
}
.lw-promo-redeem-form .lw-promo-redeem-btn {
  margin-top: 2px;
}
.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: hidden;
  overflow-y: visible;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lw-radius-md);
  background: rgba(0, 0, 0, 0.22);
}
.lw-admin-promo-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 12px;
}
.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.06em;
  text-transform: uppercase;
  color: var(--lw-subtle);
  white-space: normal;
  overflow: hidden;
  line-height: 1.25;
  padding: 8px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  vertical-align: middle;
}
.lw-admin-promo-table tbody td {
  padding: 10px 8px;
  border-bottom: none;
  vertical-align: middle;
}
.lw-admin-promo-table tbody tr:not(:last-child) td {
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}
.lw-admin-promo-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.lw-admin-promo-col--code {
  width: 12%;
}
.lw-admin-promo-col--type {
  width: 16%;
}
.lw-admin-promo-col--value {
  width: 20%;
}
.lw-admin-promo-col--used {
  width: 12%;
}
.lw-admin-promo-col--expires {
  width: 16%;
}
.lw-admin-promo-col--status {
  width: 18%;
}
.lw-admin-promo-col--action {
  width: 6%;
}
.lw-admin-promo-cell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-admin-promo-cell--type {
  white-space: normal;
  vertical-align: middle;
}
.lw-admin-promo-cell__clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  line-height: 1.35;
  font-size: 11px;
}
.lw-admin-promo-cell--code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-promo-code-chip {
  display: inline-block;
  max-width: 100%;
  padding: 3px 6px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-family: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #e4e4e7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.lw-admin-promo-cell--value,
.lw-admin-promo-table:not(.lw-mp-admin-table) th:nth-child(3) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.lw-admin-promo-cell--used,
.lw-admin-promo-table:not(.lw-mp-admin-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: visible;
}
.lw-promo-create-dialog__head {
  padding: 16px 20px 0;
}
.lw-promo-create-dialog__head .lw-email-dialog__title {
  margin: 0 0 6px;
  font-size: 15px;
}
.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: 14px 20px 18px;
}
.lw-promo-create-form__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: visible;
}
.lw-promo-create-form__fields .lw-pm-field {
  gap: 5px;
}
.lw-promo-create-dialog .lw-pm-field__label {
  font-size: 11px;
  font-weight: 600;
  color: #a1a1aa;
  line-height: 1.25;
}

.lw-promo-create-dialog .lw-pm-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 34px;
  height: 34px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: #0a0a0a;
  color: #fafafa;
  -webkit-text-fill-color: #fafafa;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-promo-create-dialog .lw-pm-input:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background-color: #111111;
}
.lw-promo-create-dialog .lw-pm-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.28);
  background-color: #141414;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.lw-promo-create-dialog input[type="number"].lw-pm-input {
  appearance: textfield;
  -moz-appearance: textfield;
}
.lw-promo-create-dialog input[type="number"].lw-pm-input::-webkit-outer-spin-button,
.lw-promo-create-dialog input[type="number"].lw-pm-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.lw-promo-create-dialog input[type="datetime-local"].lw-pm-input {
  color-scheme: dark;
  padding-right: 28px;
}
.lw-promo-create-dialog input[type="datetime-local"].lw-pm-input::-webkit-calendar-picker-indicator {
  filter: invert(0.85);
  opacity: 0.85;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.lw-promo-create-dialog .lw-pm-custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  min-height: 34px;
  height: 34px;
  padding: 5px 28px 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: #0a0a0a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4d4d8' 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 8px center;
  background-size: 12px;
  color: #fafafa;
  -webkit-text-fill-color: #fafafa;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  box-shadow: none;
}
.lw-promo-create-dialog .lw-pm-custom-select__trigger.lw-pm-select {
  margin: 0;
}
.lw-promo-create-dialog .lw-pm-custom-select__trigger:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background-color: #111111;
}
.lw-promo-create-dialog .lw-pm-custom-select.is-open .lw-pm-custom-select__trigger {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: #141414;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.lw-promo-create-dialog .lw-pm-custom-select__trigger-text {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  color: #fafafa;
  -webkit-text-fill-color: #fafafa;
}
.lw-promo-create-dialog .lw-pm-custom-select__menu {
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #0c0c0c;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65);
  max-height: min(176px, 38vh);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}
.lw-promo-create-dialog .lw-pm-custom-select__menu::-webkit-scrollbar {
  width: 4px;
}
.lw-promo-create-dialog .lw-pm-custom-select__menu::-webkit-scrollbar-track {
  margin: 2px 0;
  background: transparent;
}
.lw-promo-create-dialog .lw-pm-custom-select__menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border: 0;
  border-radius: 999px;
}
.lw-promo-create-dialog .lw-pm-custom-select__menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.34);
}
.lw-promo-create-dialog .lw-pm-custom-select__group-label {
  padding: 6px 8px 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #737373;
}
.lw-promo-create-dialog .lw-pm-custom-select__group-label--divider {
  margin-top: 2px;
  padding-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.lw-promo-create-dialog .lw-pm-custom-select__option {
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.3;
  color: #e5e5e5;
}
.lw-promo-create-dialog .lw-pm-custom-select__option:hover,
.lw-promo-create-dialog .lw-pm-custom-select__option.is-highlighted {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}
.lw-promo-create-dialog .lw-pm-custom-select__option.is-selected {
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  font-weight: 600;
}
.lw-promo-create-dialog select.lw-pm-select:not(.lw-pm-custom-select__native) {
  display: block;
  width: 100%;
  min-height: 34px;
  padding: 5px 28px 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: #0a0a0a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4d4d8' 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 8px center;
  background-size: 12px;
  color: #fafafa;
  color-scheme: dark;
  box-sizing: border-box;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.lw-promo-create-dialog select.lw-pm-select:not(.lw-pm-custom-select__native):hover {
  border-color: rgba(255, 255, 255, 0.22);
  background-color: #111111;
}
.lw-promo-create-dialog select.lw-pm-select:not(.lw-pm-custom-select__native):focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.28);
  background-color: #141414;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.lw-promo-field--product {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.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: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
}
.lw-promo-create-dialog .lw-email-dialog__close {
  top: 14px;
  right: 14px;
}
.lw-admin-promo-toolbar .lw-promo-admin-create-open {
  min-height: 34px;
  height: 34px;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 8px;
}
.lw-promo-admin-delete-form {
  margin: 0;
  display: inline-block;
}
.lw-promo-admin-delete {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: var(--lw-radius-sm);
  border: 1px solid color-mix(in srgb, var(--destructive) 35%, transparent);
  background: rgba(0, 0, 0, 0.25);
  color: #fca5a5;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  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 color-mix(in srgb, var(--destructive) 50%, transparent);
  outline-offset: 2px;
}
.lw-account-card--mp-admin {
  max-width: 100%;
  padding: clamp(18px, 3vw, 24px);
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 42%),
    var(--lw-surface);
  box-shadow: var(--lw-shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.lw-account-card--mp-admin .lw-pm-btn {
  min-height: 34px;
  height: 34px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: 8px;
}
.lw-account-card--mp-admin .lw-pm-btn--primary {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.18);
}
.lw-mp-admin-toolbar {
  margin-bottom: 14px;
}
.lw-mp-admin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.lw-mp-admin-stats--single {
  margin-top: -2px;
  margin-bottom: 12px;
}
.lw-mp-admin-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lw-radius-md);
  background: rgba(0, 0, 0, 0.24);
}
.lw-mp-admin-stat__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-subtle);
  line-height: 1.3;
}
.lw-mp-admin-stat__value {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fafafa;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.lw-mp-admin-money--payout {
  color: #d4d4d8;
}
.lw-mp-admin-money--profit {
  color: #86efac;
}
.lw-mp-admin-toolbar__cta {
  min-height: 34px;
  height: 34px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
}
.lw-mp-form__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--lw-border);
}
.lw-mp-form__head-main {
  min-width: 0;
}
.lw-mp-form__eyebrow {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.lw-mp-form__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lw-text);
}
.lw-mp-form__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 30px;
  height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #d4d4d8;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-mp-form__back:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fafafa;
}
.lw-mp-form__back:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.28);
  outline-offset: 2px;
}
.lw-account-card--mp-admin:has(.lw-mp-form) {
  max-width: 480px;
  padding: 16px 18px;
}
.lw-mp-form {
  width: 100%;
  max-width: 480px;
}
.lw-mp-form__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-mp-form__row {
  display: grid;
  gap: 8px 10px;
  align-items: start;
}
.lw-mp-form__row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lw-mp-form__row--active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}
.lw-mp-form__active-label {
  font-size: 12px;
  font-weight: 600;
  color: #e4e4e7;
}
.lw-mp-form__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}
.lw-mp-form__block-label {
  font-size: 11px;
  font-weight: 600;
  color: #d4d4d8;
}
.lw-account-card--mp-admin .lw-mp-form__segment.lw-pm-segment--mp {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  margin: 0;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
}
.lw-account-card--mp-admin .lw-mp-form__segment .lw-pm-segment__item {
  display: flex;
  min-width: 0;
  margin: 0;
}
.lw-account-card--mp-admin .lw-mp-form__segment .lw-pm-segment__text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 30px;
  height: 30px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  box-sizing: border-box;
}
.lw-mp-form__params {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  margin-top: 0;
}
.lw-mp-form__params[hidden] {
  display: none !important;
}
.lw-mp-form__params-note {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  line-height: 1.5;
  color: var(--lw-muted);
}
.lw-mp-form__params .lw-pm-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  margin: 0;
}
.lw-mp-form__params .lw-pm-field__label {
  font-size: 11px;
  line-height: 1.25;
  color: #a1a1aa;
}
.lw-mp-form__params .lw-pm-field__hint {
  font-size: 11px;
  line-height: 1.35;
  color: #71717a;
}
.lw-mp-form__row .lw-pm-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  margin: 0;
}
.lw-mp-form .lw-pm-field__label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  color: #a1a1aa;
}
.lw-mp-form .lw-pm-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 34px;
  height: 34px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: #0a0a0a;
  color: #fafafa;
  -webkit-text-fill-color: #fafafa;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-mp-form .lw-pm-input:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background-color: #111111;
}
.lw-mp-form .lw-pm-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.28);
  background-color: #141414;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.lw-mp-form input[type="number"].lw-pm-input {
  appearance: textfield;
  -moz-appearance: textfield;
}
.lw-mp-form input[type="number"].lw-pm-input::-webkit-outer-spin-button,
.lw-mp-form input[type="number"].lw-pm-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.lw-mp-form__note {
  margin: 0;
}
.lw-mp-form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--lw-border);
}
.lw-mp-form__save {
  min-width: 0;
  width: auto;
}
.lw-mp-form__delete {
  appearance: none;
  -webkit-appearance: none;
  margin-left: auto;
  font: inherit;
  cursor: pointer;
  min-height: 34px;
  height: 34px;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--destructive) 35%, transparent);
  background: rgba(127, 29, 29, 0.18);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.lw-mp-form__delete:hover {
  border-color: rgba(252, 165, 165, 0.55);
  background: rgba(220, 38, 38, 0.28);
  color: #fecaca;
}
.lw-mp-form__delete:active {
  transform: translateY(1px);
}
.lw-mp-form__delete:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--destructive) 45%, transparent);
  outline-offset: 2px;
}
.lw-mp-admin-table-wrap .lw-admin-promo-table.lw-mp-admin-table {
  min-width: 1080px;
  width: 100%;
  table-layout: fixed;
}
.lw-mp-admin-table thead th {
  white-space: nowrap;
  line-height: 1.25;
  padding: 8px 10px;
  vertical-align: bottom;
  overflow-wrap: normal;
  word-break: normal;
}
.lw-mp-admin-col--code {
  width: 108px;
}
.lw-mp-admin-col--name {
  width: 120px;
}
.lw-mp-admin-col--bonus {
  width: 248px;
}
.lw-mp-admin-col--num {
  width: 72px;
}
.lw-mp-admin-col--money {
  width: 96px;
}
.lw-mp-admin-col--revenue {
  width: 96px;
}
.lw-mp-admin-col--status {
  width: 104px;
}
.lw-mp-admin-col--action {
  width: 52px;
}
.lw-admin-promo-table-wrap.lw-mp-admin-table-wrap {
  overflow-x: auto;
}
.lw-table-hscroll {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.lw-table-hscroll__viewport {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}
.lw-table-hscroll__viewport::-webkit-scrollbar {
  height: 6px;
}
.lw-table-hscroll__viewport::-webkit-scrollbar-track {
  background: transparent;
}
.lw-table-hscroll__viewport::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}
.lw-table-hscroll__viewport::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.32);
}
.lw-table-hscroll__viewport.lw-admin-promo-table-wrap.lw-mp-admin-table-wrap {
  overflow-x: auto;
}
.lw-table-hscroll__bar {
  display: none !important;
}
.lw-mp-admin-cell--action {
  text-align: center;
  white-space: nowrap;
}
.lw-mp-admin-row-menu {
  display: inline-flex;
  vertical-align: middle;
}
.lw-mp-admin-row-menu__form {
  margin: 0;
}
a.lw-purchase-menu__item {
  text-decoration: none;
}
.lw-mp-admin-cell--code {
  overflow: visible;
}
.lw-mp-admin-cell--code .lw-promo-code-chip {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
}
.lw-mp-admin-cell--name {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-mp-admin-cell--bonus {
  font-size: 12px;
  line-height: 1.45;
  color: #a1a1aa;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.lw-mp-admin-cell--num {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.lw-mp-admin-cell--money,
.lw-mp-admin-cell--revenue {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
  font-size: 12px;
}
.lw-mp-admin-table thead th:nth-child(3) {
  text-align: left;
}
.lw-mp-admin-table thead th:nth-child(4),
.lw-mp-admin-table thead th:nth-child(5) {
  text-align: center;
}
.lw-mp-admin-table thead th:nth-child(6),
.lw-mp-admin-table thead th:nth-child(7),
.lw-mp-admin-table thead th:nth-child(8) {
  text-align: right;
}
.lw-mp-admin-table tbody td {
  padding: 9px 10px;
}
.lw-mp-admin-cell--status {
  white-space: nowrap;
}
.lw-mp-admin-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.lw-mp-admin-status::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.9;
}
.lw-mp-admin-status--active {
  color: #86efac;
  background: color-mix(in srgb, var(--color-emerald-500) 12%, transparent);
  border-color: color-mix(in srgb, var(--color-emerald-500) 28%, transparent);
}
.lw-mp-admin-status--inactive {
  color: #a1a1aa;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.lw-mp-admin-status--exhausted {
  color: #fca5a5;
  background: color-mix(in srgb, var(--destructive) 12%, transparent);
  border-color: color-mix(in srgb, var(--destructive) 28%, transparent);
}
.lw-mp-admin-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #e4e4e7;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lw-mp-admin-edit:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fafafa;
}
.lw-mp-admin-edit:focus-visible {
  outline: 2px solid rgba(248, 250, 252, 0.28);
  outline-offset: 2px;
}
.lw-mp-admin-empty {
  padding: 18px 12px !important;
  text-align: center;
}
.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-action-btn,
a.lw-admin-action-btn,
button.lw-admin-action-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-sizing: border-box;
  margin: 0;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--lw-border);
  border-radius: 8px;
  background: var(--lw-elevated);
  color: var(--lw-text);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  color-scheme: dark;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
.lw-admin-action-btn:hover,
a.lw-admin-action-btn:hover,
button.lw-admin-action-btn:hover {
  background: var(--lw-surface-2);
  border-color: var(--lw-border-hover);
  color: var(--lw-text);
}
.lw-admin-action-btn:focus-visible,
a.lw-admin-action-btn:focus-visible,
button.lw-admin-action-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}
.lw-admin-action-btn--secondary {
  background: transparent;
  color: #d4d4d8;
}
.lw-admin-action-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fafafa;
}
.lw-admin-action-btn--danger {
  border-color: color-mix(in srgb, var(--destructive) 35%, transparent);
  background: rgba(127, 29, 29, 0.35);
  color: #fecaca;
}
.lw-admin-action-btn--danger:hover {
  border-color: rgba(252, 165, 165, 0.45);
  background: rgba(185, 28, 28, 0.45);
  color: #fff;
}
.lw-admin-action-btn--primary {
  border-color: rgba(134, 239, 172, 0.35);
  background: rgba(20, 83, 45, 0.45);
  color: #bbf7d0;
}
.lw-admin-action-btn--primary:hover {
  border-color: rgba(134, 239, 172, 0.55);
  background: rgba(22, 101, 52, 0.55);
  color: #dcfce7;
}
.lw-admin-seg {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 16px;
  padding: 4px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-md);
  background: var(--lw-elevated);
}
.lw-admin-seg__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--lw-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  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 {
  border-color: var(--lw-border);
  background: var(--lw-surface);
  color: #fafafa;
}
.lw-admin-reviews-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-admin-reviews-item {
  padding: 14px 16px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-md);
  background: var(--lw-bg);
}
.lw-admin-reviews-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 8px;
}
.lw-admin-reviews-item__product {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #fafafa;
}
.lw-admin-reviews-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  min-width: 0;
}
.lw-admin-reviews-item__who {
  font-size: 12px;
  line-height: 1.35;
  color: var(--lw-muted);
}
.lw-admin-reviews-item__sep {
  opacity: 0.55;
}
.lw-admin-reviews-item__stars {
  gap: 2px;
}
.lw-admin-review-star {
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.18);
}
.lw-admin-review-star.is-filled {
  color: #d4d4d8;
}
.lw-admin-reviews-item__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #d4d4d8;
}
.lw-admin-reviews-item__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.lw-admin-reviews-item__form {
  margin: 0;
  display: inline-flex;
}
.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: #e4e4e7;
}
.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: #d4d4d8;
  text-shadow: 0 0 18px rgba(255, 255, 255, 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: #d4d4d8;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.lw-admin-provider--rollypay {
  color: #86efac;
  background: color-mix(in srgb, var(--color-emerald-400) 12%, transparent);
  border-color: color-mix(in srgb, var(--color-emerald-400) 28%, transparent);
}
.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: #a1a1aa;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.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(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.18);
  color: #e4e4e7;
}
.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: #d4d4d8;
}
.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: #e4e4e7;
}
.lw-admin-clear-stats {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--destructive) 28%, transparent);
}
.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 color-mix(in srgb, var(--destructive) 35%, transparent);
  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 color-mix(in srgb, var(--destructive) 50%, transparent);
  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: var(--destructive);
  background: rgba(185, 28, 28, 0.55);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--destructive) 20%, transparent) 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 color-mix(in srgb, var(--destructive) 55%, transparent);
  outline-offset: 2px;
}
.lw-admin-clear-stats-form button.lw-admin-clear-stats__btn {
  align-self: flex-start;
  margin: 2px 0 0;
}
.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--products-admin {
  max-width: 100%;
  padding: clamp(16px, 3vw, 22px);
}
.lw-admin-products-empty {
  margin-top: 4px;
}
.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: var(--lw-bg);
}
.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: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  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-stat__remain {
  margin-left: 4px;
  font-size: 10px;
  font-weight: 500;
  color: var(--lw-subtle);
}
.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-discount {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.16);
}
.lw-admin-product-discount__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.lw-admin-product-discount__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
}
.lw-admin-product-discount__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--color-emerald-400) 35%, transparent);
  color: #86efac;
  background: color-mix(in srgb, var(--color-emerald-600) 14%, transparent);
}
.lw-admin-product-discount__badge--off {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--lw-muted);
  background: rgba(255, 255, 255, 0.04);
}
.lw-admin-product-discount__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
}
.lw-admin-product-discount__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.lw-admin-product-discount__field--date {
  flex: 1 1 180px;
}
.lw-admin-product-discount__label {
  font-size: 11px;
  font-weight: 600;
  color: #a1a1aa;
}
.lw-admin-product-discount__input {
  min-height: 34px;
  height: 34px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: #0a0a0a;
  color: #fafafa;
  font-size: 12px;
  box-sizing: border-box;
}
.lw-admin-product-discount__field:not(.lw-admin-product-discount__field--date) .lw-admin-product-discount__input {
  width: 96px;
}
.lw-admin-product-discount__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.28);
  background-color: #141414;
}
.lw-admin-product-discount__btn {
  min-height: 34px;
  height: 34px;
  padding: 5px 16px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #e4e4e7;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lw-admin-product-discount__btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fafafa;
}
.lw-admin-product-discount__hint {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  color: #71717a;
}
.lw-card-price-was {
  margin-right: 6px;
  color: var(--lw-muted);
  text-decoration: line-through;
  font-weight: 500;
  opacity: 0.75;
}
.lw-card-price-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #86efac;
  background: color-mix(in srgb, var(--color-emerald-600) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-emerald-400) 30%, transparent);
  vertical-align: middle;
}
.lw-product-sale-badge {
  color: var(--lw-brand);
}
.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: color-mix(in srgb, var(--color-emerald-600) 50%, transparent);
}
.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(255, 255, 255, 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(255, 255, 255, 0.4);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 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(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  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: #d4d4d8;
}
.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: color-mix(in srgb, var(--color-emerald-400) 35%, transparent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-emerald-400) 10%, transparent);
}
.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: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fafafa;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  color-scheme: dark;
  box-shadow: none;
  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: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.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: color-mix(in srgb, var(--color-emerald-400) 40%, transparent);
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-emerald-400) 12%, transparent);
}
.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: #d4d4d8;
  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 12px;
}
.lw-account-card--admin-users.lw-account-card--admin-user-open {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.lw-admin-user-detail {
  margin-top: 0;
  padding-top: 0;
}
.lw-admin-user-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  max-width: none;
}
.lw-admin-user-card {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  box-shadow: none;
  box-sizing: border-box;
}
.lw-admin-user-card--actions {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.lw-admin-user-card--actions > .lw-admin-user-card__title {
  margin-bottom: 10px;
  font-size: 14px;
}
.lw-admin-user-card__title,
.lw-admin-user-card .lw-login-history-card__title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  color: #f9fafb;
}
.lw-admin-user-hero {
  margin-bottom: 0;
}
.lw-admin-user-card--hero .lw-admin-user-hero__top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.lw-admin-user-hero__avatar {
  flex-shrink: 0;
}
.lw-admin-user-hero__avatar-img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
}
.lw-admin-user-hero__main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.lw-admin-user-hero__identity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
.lw-admin-user-hero__title {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fafafa;
}
.lw-admin-user-hero__id {
  font-size: 13px;
  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-card--hero {
  position: relative;
}
.lw-admin-user-hero__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.lw-admin-user-hero__mp {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}
.lw-admin-user-hero__mp-code {
  font-family: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fafafa;
}
.lw-admin-user-menu-form {
  margin: 0;
  display: block;
}
.lw-admin-user-purchases-actions {
  width: 44px;
  text-align: center;
  white-space: nowrap;
}
.lw-admin-user-purchases-actions-head {
  width: 44px;
}
.lw-admin-user-purchase-menu .lw-purchase-menu__toggle,
.lw-admin-user-profile-menu .lw-purchase-menu__toggle {
  width: 32px;
  height: 32px;
  padding: 0;
}
.lw-admin-user-mp-dialog__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.lw-admin-user-mp-dialog__form .lw-admin-user-action__btn {
  align-self: flex-start;
}
.lw-admin-user-card--hero .lw-admin-user-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lw-admin-user-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  min-width: 0;
  min-height: 0;
}
.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: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.58);
  line-height: 1.3;
}
.lw-admin-user-stat__value {
  display: block;
  margin-top: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #f3f4f6;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
  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;
  white-space: normal;
}
.lw-admin-user-card--hwid .lw-admin-user-hwid-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-admin-user-card--hwid .lw-admin-user-hwid__plate {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lw-admin-user-hwid {
  margin-bottom: 0;
}
.lw-admin-user-hwid__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
.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;
  background: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lw-admin-user-hwid__hash-line {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-width: 0;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: transparent;
  box-sizing: border-box;
}
.lw-admin-user-hwid__hash-short {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  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-card--hwid-empty .lw-admin-user-hwid__empty-value {
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  font-size: 12px;
  color: var(--lw-muted);
}
.lw-admin-user-card--actions .lw-admin-user-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
.lw-admin-user-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: transparent;
  box-sizing: border-box;
  min-width: 0;
  height: 100%;
}
.lw-admin-user-action--email .lw-admin-user-action__input {
  max-width: none;
}
.lw-admin-user-action--email .lw-admin-user-action__form,
.lw-admin-user-action--balance .lw-admin-balance-form {
  flex: 1 1 auto;
}
.lw-admin-user-action--email .lw-admin-user-action__btn,
.lw-admin-user-action--balance .lw-admin-user-action__btn {
  width: 100%;
  margin-top: auto;
}
.lw-admin-user-action--balance .lw-admin-balance-form {
  width: 100%;
  gap: 10px;
}
.lw-admin-user-action--balance .lw-admin-user-action__field,
.lw-admin-user-action--balance .lw-admin-user-action__input {
  width: 100%;
  max-width: none;
}
.lw-admin-user-action--grant-key .lw-admin-user-action__fields--2 {
  max-width: 420px;
}
.lw-admin-user-action--grant-key {
  grid-column: 1 / -1;
}

.lw-admin-user-action--grant-key .lw-pm-custom-select__trigger.lw-admin-user-action__input {
  margin: 0;
  min-height: 34px;
  padding: 5px 28px 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: #0a0a0a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4d4d8' 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 8px center;
  background-size: 12px;
  color: #fafafa;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  box-shadow: none;
}
.lw-admin-user-action--grant-key .lw-pm-custom-select__trigger.lw-admin-user-action__input:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background-color: #111111;
}
.lw-admin-user-action--grant-key .lw-pm-custom-select.is-open .lw-pm-custom-select__trigger.lw-admin-user-action__input {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: #141414;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.lw-admin-user-action--grant-key .lw-pm-custom-select__trigger-text {
  color: #fafafa;
  -webkit-text-fill-color: #fafafa;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}
.lw-admin-user-action--grant-key .lw-pm-custom-select__menu {
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #0c0c0c;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65);
  max-height: min(176px, 38vh);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}
.lw-admin-user-action--grant-key .lw-pm-custom-select__menu::-webkit-scrollbar {
  width: 4px;
}
.lw-admin-user-action--grant-key .lw-pm-custom-select__menu::-webkit-scrollbar-track {
  margin: 2px 0;
  background: transparent;
}
.lw-admin-user-action--grant-key .lw-pm-custom-select__menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border: 0;
  border-radius: 999px;
}
.lw-admin-user-action--grant-key .lw-pm-custom-select__menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.34);
}
.lw-admin-user-action--grant-key .lw-pm-custom-select__option {
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.3;
  color: #e5e5e5;
}
.lw-admin-user-action--grant-key .lw-pm-custom-select__option:hover,
.lw-admin-user-action--grant-key .lw-pm-custom-select__option.is-highlighted {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}
.lw-admin-user-action--grant-key .lw-pm-custom-select__option.is-selected {
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  font-weight: 600;
}
.lw-admin-user-action--grant-key .lw-pm-custom-select.is-disabled .lw-pm-custom-select__trigger.lw-admin-user-action__input {
  opacity: 0.55;
  cursor: not-allowed;
}
.lw-admin-user-action__title {
  margin: 0;
  min-height: 0;
  font-size: 11px;
  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: 8px;
  margin: 0;
  flex: 1 1 auto;
}
.lw-admin-user-action__fields {
  display: grid;
  gap: 8px;
}
.lw-admin-user-action__fields--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
}
.lw-admin-user-action__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  min-width: 0;
}
.lw-admin-user-action__label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: #a1a1aa;
}
.lw-admin-user-action__url {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 10px;
  line-height: 1.4;
  color: #71717a;
  word-break: break-all;
}
.lw-admin-user-action__input {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 34px;
  height: 34px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: #0a0a0a;
  color: #fafafa;
  -webkit-text-fill-color: #fafafa;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-admin-user-action__input--mono {
  font-family: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.lw-admin-user-action__input:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background-color: #111111;
}
.lw-admin-user-action__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.28);
  background-color: #141414;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
select.lw-admin-user-action__input,
.lw-admin-user-action__input.lw-admin-user-action__select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4d4d8' 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 8px center;
  background-size: 12px;
}
select.lw-admin-user-action__input option,
.lw-admin-user-action__input.lw-admin-user-action__select option {
  background: #171717;
  color: #fafafa;
}
.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: 5px 12px;
  min-height: 28px;
  height: 28px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #ececec;
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.lw-admin-user-action__btn:hover {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  color: #000;
}
.lw-admin-user-action__btn--primary,
.lw-admin-user-action__btn--success {
  align-self: flex-start;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #ececec;
  color: #0a0a0a;
  font-size: 12px;
}
.lw-admin-user-action__btn--primary:hover,
.lw-admin-user-action__btn--success:hover {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  color: #000;
}
.lw-admin-user-action__btn--danger {
  border: 1px solid color-mix(in srgb, var(--destructive) 55%, transparent);
  background: color-mix(in srgb, var(--destructive) 22%, transparent);
  color: color-mix(in srgb, var(--destructive) 10%, #fff);
}
.lw-admin-user-action__btn--danger:hover {
  border-color: color-mix(in srgb, var(--destructive) 72%, transparent);
  background: color-mix(in srgb, var(--destructive) 38%, transparent);
  color: #fff;
}
.lw-admin-user-action .lw-pm-custom-select__trigger.lw-admin-user-action__input {
  width: 100%;
  min-height: 34px;
  height: 34px;
  padding: 5px 28px 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: #0a0a0a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4d4d8' 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 8px center;
  background-size: 12px;
  color: #fafafa;
  -webkit-text-fill-color: #fafafa;
  box-sizing: border-box;
}
.lw-admin-user-action .lw-pm-custom-select__trigger-text {
  color: #fafafa;
  -webkit-text-fill-color: #fafafa;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}
.lw-admin-user-action .lw-pm-custom-select__menu {
  padding: 3px;
  border-radius: 8px;
  border-color: rgba(255, 255, 255, 0.14);
  background: #0c0c0c;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65);
  max-height: min(176px, 38vh);
}
.lw-admin-user-action .lw-pm-custom-select__menu::-webkit-scrollbar {
  width: 6px;
}
.lw-admin-user-action .lw-pm-custom-select__menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}
.lw-admin-user-action .lw-pm-custom-select__menu::-webkit-scrollbar-track {
  background: transparent;
}
.lw-admin-user-action .lw-pm-custom-select__option {
  font-size: 12px;
}
.lw-admin-user-action .lw-pm-custom-select.is-open .lw-pm-custom-select__trigger.lw-admin-user-action__input {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: #141414;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.lw-admin-user-action .lw-pm-custom-select.is-disabled .lw-pm-custom-select__trigger.lw-admin-user-action__input {
  opacity: 0.55;
  cursor: not-allowed;
}
.lw-admin-user-history {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.lw-admin-user-card--history .lw-admin-user-history__section {
  padding: 14px 0 0;
}
.lw-admin-user-card--history .lw-admin-user-history__section:first-child {
  padding-top: 0;
}
.lw-admin-user-card--history .lw-admin-user-history__section + .lw-admin-user-history__section {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lw-admin-user-history__label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
}
.lw-admin-user-history__empty {
  margin: 0;
  padding: 4px 0;
  text-align: left;
  font-size: 13px;
  color: var(--lw-muted);
}
.lw-admin-user-table-scroll,
.lw-admin-user-table-wrap,
.lw-admin-user-purchases-wrap {
  overflow-x: hidden;
  overflow-y: visible;
  margin: 0;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}
.lw-admin-user-card.lw-login-history-card {
  padding: 16px 18px;
  margin-top: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  box-shadow: none;
}
.lw-admin-user-card.lw-login-history-card--section {
  margin-top: 0;
  padding-top: 16px;
  border-top: none;
}
.lw-admin-user-card.lw-login-history-card .lw-login-history-card__head {
  margin-bottom: 12px;
}
.lw-admin-user-card.lw-login-history-card .lw-login-history-scroll {
  max-height: 280px;
  border-radius: 9px;
}
.lw-admin-user-card.lw-login-history-card .lw-login-history-table {
  font-size: 11px;
}
.lw-admin-user-card.lw-login-history-card .lw-login-history-table th,
.lw-admin-user-card.lw-login-history-card .lw-login-history-table td {
  padding: 7px 4px;
}
.lw-admin-user-card.lw-login-history-card .lw-login-history-table th {
  font-size: 10px;
  letter-spacing: 0.03em;
}
.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-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: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 3px;
  min-height: 0;
  min-inline-size: 0;
  box-sizing: border-box;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  align-self: stretch;
  width: 100%;
}
.lw-admin-balance-form label.lw-admin-balance-direction__opt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 7px 10px;
  min-height: 34px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lw-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  user-select: none;
  text-align: center;
}
.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-card--hero .lw-admin-user-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lw-admin-user-card--actions .lw-admin-user-actions-grid {
    grid-template-columns: 1fr;
  }
  .lw-admin-user-action--grant-key {
    grid-column: auto;
  }
  .lw-admin-user-action__fields--2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .lw-admin-user-card--hero .lw-admin-user-hero__top {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .lw-admin-user-card--hero .lw-admin-user-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.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: var(--lw-bg);
  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: var(--lw-bg);
  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: var(--lw-bg);
}
.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--role {
  width: 112px;
  min-width: 112px;
}
.lw-admin-users-col--role {
  width: 112px;
  min-width: 112px;
}
.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 {
  width: 96px;
  min-width: 96px;
  max-width: 96px;
  padding-left: 8px;
  padding-right: 10px;
  text-align: center;
  white-space: nowrap;
}
.lw-admin-users-table__action {
  width: 96px;
  min-width: 96px;
  max-width: 96px;
  padding-left: 8px;
  padding-right: 10px;
  text-align: center;
  white-space: nowrap;
}
.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 {
  max-width: 100%;
}
.lw-admin-user-purchases-table.lw-purchases-table {
  min-width: 0;
  width: 100%;
  table-layout: fixed;
}
.lw-admin-user-purchases-table th,
.lw-admin-user-purchases-table td {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.lw-admin-user-purchases-table th:nth-child(1),
.lw-admin-user-purchases-table td:nth-child(1) {
  width: 12%;
}
.lw-admin-user-purchases-table th:nth-child(2),
.lw-admin-user-purchases-table td:nth-child(2) {
  width: 16%;
  white-space: normal;
  line-height: 1.35;
  min-width: 0;
}
.lw-admin-user-purchases-table th:nth-child(3),
.lw-admin-user-purchases-table td:nth-child(3) {
  width: 9%;
}
.lw-admin-user-purchases-table th:nth-child(4),
.lw-admin-user-purchases-table td:nth-child(4) {
  width: 9%;
}
.lw-admin-user-purchases-table th:nth-child(5),
.lw-admin-user-purchases-table td:nth-child(5) {
  width: 14%;
  overflow: visible;
  text-overflow: clip;
}
.lw-admin-user-purchases-table th:nth-child(6),
.lw-admin-user-purchases-table td:nth-child(6) {
  width: 17%;
}
.lw-admin-user-purchases-table th:nth-child(7),
.lw-admin-user-purchases-table td:nth-child(7) {
  width: 16%;
}
.lw-admin-user-purchases-table th:nth-child(8),
.lw-admin-user-purchases-table td:nth-child(8) {
  width: 8%;
  text-align: right;
}
.lw-admin-user-purchases-hwid {
  max-width: none;
}
.lw-admin-user-purchases-hwid__code {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 10px;
  color: #a1a1aa;
}
.lw-admin-user-purchases-key .lw-admin-user-purchases-hwid__code {
  font-size: 11px;
}
.lw-admin-user-purchases-actions {
  text-align: right;
  white-space: nowrap;
}
.lw-account-purchases-toolbar {
  margin: 0 0 14px;
}
.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-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-product-buy-panel .lw-product-purchase {
  margin-top: 0;
}
.lw-product-test {
  margin: 0;
  padding: 0;
}
.lw-product-test__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 10px;
}
.lw-product-test__duration {
  align-self: flex-start;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lw-product-test__limits {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--lw-muted);
}
.lw-product-test__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.lw-product-test__consents {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lw-form label.lw-product-test__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: inherit;
  cursor: pointer;
}
.lw-product-test__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  user-select: none;
}
.lw-product-test__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-product-test__check-ui {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 1px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lw-product-test__check:hover .lw-product-test__check-ui {
  border-color: rgba(255, 255, 255, 0.42);
}
.lw-product-test__check:has(.lw-product-test__check-input:checked) .lw-product-test__check-ui {
  border-color: #a3a3a3;
  background: #e5e5e5;
  box-shadow: none;
}
.lw-product-test__check:has(.lw-product-test__check-input:checked) .lw-product-test__check-ui::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-product-test__check:has(.lw-product-test__check-input:focus-visible) .lw-product-test__check-ui {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}
.lw-product-test__check-text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--lw-muted);
}
.lw-product-test__check-link {
  color: var(--lw-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lw-product-test__check-link:hover {
  color: #fff;
}
.lw-product-test__submit {
  width: 100%;
  min-height: 40px;
  font-size: 13px;
  margin-top: 0;
}
.lw-product-test__submit--secondary {
  margin-top: 10px;
}
.lw-product-test__status {
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--lw-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lw-border);
}
.lw-pm-block--test-sub {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-pm-block--test-sub > .lw-pm-field {
  margin: 0;
}
.lw-pm-block--test-sub .lw-pm-req-grid {
  grid-template-columns: 1fr;
  gap: 8px;
}
.lw-pm-req--full {
  grid-column: 1 / -1;
}
.lw-purchase-warning {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--lw-radius-sm);
  background: rgba(255, 255, 255, 0.12);
}
.lw-purchase-warning__title {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #e4e4e7;
}
.lw-purchase-warning__text {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #fcd34d;
}
.lw-purchase-warning__text + .lw-purchase-warning__text {
  margin-top: 8px;
}
.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: 12px 0 0;
}
.lw-purchase-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  column-gap: 10px;
  margin: 0;
  padding: 8px 10px;
  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: color-mix(in srgb, var(--color-emerald-500) 8%, transparent);
}
.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: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  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 color-mix(in srgb, var(--color-emerald-400) 20%, transparent);
}
.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__refund-hint {
  margin: 10px 0 0;
  padding: 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--lw-subtle);
}
.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: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  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: 28px;
  padding: 5px 11px;
  border: 1px solid color-mix(in srgb, var(--destructive) 55%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--destructive) 22%, transparent);
  color: color-mix(in srgb, var(--destructive) 10%, #fff);
  font: inherit;
  font-size: 12px;
  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: color-mix(in srgb, var(--destructive) 72%, transparent);
  background: color-mix(in srgb, var(--destructive) 38%, transparent);
  color: #fff;
}
.lw-product-purchase-dialog__cancel:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--destructive) 45%, transparent);
  outline-offset: 2px;
}
.lw-product-purchase-dialog__submit {
  flex: 1.1 1 0;
  min-width: 0;
  min-height: 36px;
  padding: 7px 14px;
  font-size: 13px;
  border-radius: 8px;
}
.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: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  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-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--lw-border);
  color: var(--lw-muted);
  white-space: nowrap;
  max-width: none;
  overflow: visible;
  line-height: 1.3;
}
.lw-purchase-status--activated {
  border-color: color-mix(in srgb, var(--color-emerald-400) 45%, transparent);
  color: #bbf7d0;
  background: color-mix(in srgb, var(--color-emerald-600) 14%, transparent);
}
.lw-purchase-status--pending {
  border-color: rgba(255, 255, 255, 0.16);
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.04);
}
.lw-purchase-status--expired {
  border-color: rgba(252, 165, 165, 0.45);
  color: #fecaca;
  background: color-mix(in srgb, var(--destructive) 10%, transparent);
}
.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: #e4e4e7;
  background: rgba(255, 255, 255, 0.12);
}
.lw-purchase-status--removed {
  border-color: color-mix(in srgb, var(--destructive) 45%, transparent);
  color: #fecaca;
  background: color-mix(in srgb, var(--destructive) 12%, transparent);
}
.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);
  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: #a1a1aa;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.15s ease;
}
.lw-purchase-guide-link:hover {
  color: #d4d4d8;
}
.lw-purchase-guide-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.2);
  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(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}
.lw-full-guide__card--warn {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 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: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  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: #d4d4d8;
  background: var(--lw-elevated);
  border-color: var(--lw-border);
}
.lw-profile-card__status.is-pending {
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}
.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 color-mix(in srgb, var(--color-emerald-400) 18%, transparent);
  background: linear-gradient(145deg, color-mix(in srgb, var(--color-emerald-600) 12%, transparent) 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: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  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 {
  flex-shrink: 0;
}
.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-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: var(--lw-surface);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-xl);
  box-shadow: var(--lw-shadow-md);
}
.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%;
}
.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: var(--lw-surface);
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-xl);
  box-shadow: var(--lw-shadow-md);
}
.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-pm--site {
  position: relative;
  width: min(860px, 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);
}
.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__inner {
  position: relative;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-lg);
  background: var(--lw-surface);
  padding: 22px 20px 20px;
  box-shadow: var(--lw-shadow-md);
}
.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: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  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(255, 255, 255, 0.45);
  background: #111114;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 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: #d4d4d8;
}
.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 var(--lw-border);
  border-radius: var(--lw-radius-lg);
  background: var(--lw-elevated);
  box-shadow: var(--lw-shadow-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-sysreq-dl > div:hover {
  border-color: var(--lw-border-hover);
  background: var(--lw-surface-2);
}
.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-shell__body > .lw-account-sidebar,
  .lw-account-shell__body > .lw-account-main {
    grid-column: 1;
    grid-row: auto;
  }
  .lw-account-sidebar {
    position: static;
    margin: 0;
  }
  .lw-account-sidebar__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    overflow: visible;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.46);
    box-shadow:
      0 8px 28px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
  .lw-account-sidebar__nav > .lw-account-sidebar__label:first-child {
    display: block;
    grid-column: 1 / -1;
    margin: 0 0 2px;
    padding: 0 6px;
  }
  .lw-account-sidebar__label--admin {
    grid-column: 1 / -1;
    margin-top: 2px;
  }
  .lw-account-sidebar__link {
    width: 100%;
    flex: none;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 10px 8px 11px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
  }
  .lw-account-sidebar__link.is-active::before {
    display: block;
    left: 0;
    top: 7px;
    bottom: 7px;
    height: auto;
    transform: none;
  }
  .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: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--lw-muted);
  }
  .lw-account-sidebar__link.is-active .lw-account-sidebar__icon {
    background: rgba(255, 255, 255, 0.05);
    color: var(--lw-text);
  }
  .lw-account-sidebar__icon svg {
    width: 16px;
    height: 16px;
  }
  .lw-account-sidebar__text {
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
  }
  .lw-account-sidebar__link--admin:first-of-type {
    margin-left: 0;
    padding-left: 11px;
  }
  .lw-account-sidebar__link--admin:first-of-type::after {
    display: none;
  }
  .lw-account-sidebar__admin {
    display: block;
    grid-column: 1 / -1;
    margin: 2px 0 0;
    padding: 8px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .lw-account-sidebar__admin > summary {
    display: flex;
    margin: 0 0 4px;
    padding: 6px;
    min-height: 36px;
  }
  .lw-account-sidebar__admin-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 0;
  }
  .lw-account-settings-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "overview"
      "side"
      "right"
      "security";
  }
  .lw-account-settings-grid > .lw-account-card--overview,
  .lw-account-settings-tools__stack > .section-card,
  .lw-account-settings-right > .section-card,
  .lw-account-settings-grid > .lw-account-card--security {
    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-account-overview__stat dd {
    overflow-wrap: normal;
    word-break: normal;
  }
  .lw-account-shell__body {
    gap: 10px;
  }
  .lw-account-sidebar__nav {
    padding: 8px;
    gap: 5px;
    border-radius: 12px;
  }
  .lw-account-sidebar__link {
    min-height: 42px;
    padding: 7px 8px 7px 10px;
    font-size: 11px;
    gap: 7px;
  }
  .lw-account-sidebar__icon {
    width: 26px;
    height: 26px;
  }
  .lw-account-sidebar__icon svg {
    width: 15px;
    height: 15px;
  }
  .lw-account-sidebar__label {
    font-size: 9px;
    padding: 0 4px 2px;
  }
  .lw-account-sidebar__admin > summary {
    min-height: 40px;
    padding: 4px 6px;
    font-size: 9px;
  }
  .lw-page--account .lw-account-sidebar__nav {
    padding: 8px;
  }
  .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 {
    padding: 10px 12px;
  }
  .lw-account-ledger__summary-pills {
    width: 100%;
    justify-content: flex-start;
    gap: 6px;
  }
  .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-table {
    margin: 0 -2px;
    --lw-purchase-pad-x: 10px;
    --lw-purchase-grid: minmax(116px, 1.05fr) 92px 76px 60px 96px 84px minmax(228px, 1fr);
  }
  .lw-account-purchase-list {
    min-width: 780px;
  }
  .lw-account-purchase-list__head,
  .lw-account-purchase-row {
    padding-left: var(--lw-purchase-pad-x);
    padding-right: var(--lw-purchase-pad-x);
  }
  .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-account-banned-page {
  min-height: 100dvh;
  background: #000;
}
.lw-account-banned-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 32px 20px;
  box-sizing: border-box;
}
.lw-account-banned-card {
  width: min(100%, 460px);
  margin: 0;
  padding: 0;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
}
.lw-account-banned-title {
  margin: 0 0 28px;
  font-size: clamp(18px, 3.2vw, 22px);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f2f2f2;
}
.lw-account-banned-meta {
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.lw-account-banned-meta__row {
  display: grid;
  gap: 4px;
}
.lw-account-banned-meta dt {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}
.lw-account-banned-meta dd {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.lw-account-banned-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.lw-account-banned-logout {
  margin: 0;
}
.lw-account-banned-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-account-banned-btn:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}
.lw-account-banned-btn--ghost {
  background: transparent;
}
.lw-account-banned-btn--white {
  min-height: 40px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: #ffffff;
  color: #0a0a0a;
  font-weight: 300;
  letter-spacing: 0.08em;
}
.lw-account-banned-btn--white:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.88);
}
.lw-admin-user-ban-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid color-mix(in srgb, var(--destructive) 35%, transparent);
  color: #fca5a5;
  background: color-mix(in srgb, var(--destructive) 8%, transparent);
}
.lw-admin-user-ban-badge--purchase {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fcd34d;
  background: rgba(255, 255, 255, 0.08);
}
.lw-admin-user-action--ban .lw-admin-user-action__fields--ban {
  display: grid;
  gap: 10px;
}
.lw-admin-user-action--ban .lw-admin-user-action__form {
  flex: 1 1 auto;
}
.lw-admin-user-action--ban .lw-admin-user-action__btn {
  align-self: flex-start;
  width: auto;
  margin-top: auto;
  white-space: nowrap;
  text-align: center;
  min-height: 30px;
  height: auto;
  padding: 4px 14px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
}

.lw-admin-user-actions-grid .lw-admin-user-action--ban:nth-of-type(1) .lw-admin-user-action__btn--danger,
.lw-admin-user-actions-grid .lw-admin-user-action--ban:nth-of-type(2) .lw-admin-user-action__btn--danger {
  border: 1px solid color-mix(in srgb, var(--destructive) 55%, transparent);
  background: color-mix(in srgb, var(--destructive) 22%, transparent);
  color: color-mix(in srgb, var(--destructive) 10%, #fff);
}
.lw-admin-user-actions-grid .lw-admin-user-action--ban:nth-of-type(1) .lw-admin-user-action__btn--danger:hover,
.lw-admin-user-actions-grid .lw-admin-user-action--ban:nth-of-type(2) .lw-admin-user-action__btn--danger:hover {
  border-color: color-mix(in srgb, var(--destructive) 72%, transparent);
  background: color-mix(in srgb, var(--destructive) 38%, transparent);
  color: #fff;
}
.lw-admin-user-ban-status {
  margin: 0;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  font-size: 12px;
  line-height: 1.55;
  color: var(--lw-muted);
}
.lw-admin-user-action__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 12px;
  color: var(--lw-muted);
  cursor: pointer;
}
.lw-admin-user-action__checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-admin-user-action__checkbox input[type="checkbox"]:hover {
  border-color: rgba(255, 255, 255, 0.45);
}
.lw-admin-user-action__checkbox input[type="checkbox"]:checked {
  border-color: var(--lw-brand);
  background-color: var(--lw-brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.lw-admin-user-action__checkbox input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}


.lw-catalog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 18px;
}
.lw-catalog-toolbar__search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.lw-catalog-toolbar__input {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 360px;
  height: var(--lw-control-h);
  min-height: var(--lw-control-h);
  padding: 0 var(--lw-control-px);
  box-sizing: border-box;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-border);
  background: var(--lw-surface);
  color: var(--lw-text);
  font-size: var(--lw-control-fs);
  line-height: 1.25;
  transition: border-color 0.15s ease;
}
.lw-catalog-toolbar__input:focus {
  outline: none;
  border-color: var(--lw-brand-border);
}

.home-trust-panel {
  text-align: center;
}
.home-howto-panel {
  text-align: center;
}
.home-howto-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}
.home-howto-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 28px;
  height: 28px;
  color: var(--lw-brand);
  opacity: 0.55;
}
.home-howto-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  padding: 16px 16px 14px;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-lg);
  background: var(--lw-surface);
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-howto-card:hover {
  border-color: var(--lw-border-hover);
  box-shadow: var(--lw-shadow-md);
  transform: translateY(-2px);
}
.home-howto-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.home-howto-card__step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-subtle);
}
.home-howto-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--lw-radius-sm);
  border: 1px solid var(--lw-brand-border);
  background: var(--lw-brand-soft);
  color: var(--lw-brand);
}
.home-howto-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lw-text);
}
.home-howto-card__desc {
  flex: 1 1 auto;
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--lw-muted);
}
.home-howto-card__btn {
  align-self: flex-start;
  margin-top: auto;
  min-width: 0;
  max-width: 100%;
}
.home-howto-card .hero-btn.home-howto-card__btn {
  white-space: normal;
  text-align: center;
}
.home-howto-steps {
  list-style: none;
  margin: 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: var(--lw-surface);
  box-shadow: var(--lw-shadow-sm);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-howto-step:hover {
  border-color: var(--lw-border-hover);
  box-shadow: var(--lw-shadow-md);
  transform: translateY(-2px);
}
.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 var(--lw-border);
  background: var(--lw-elevated);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--lw-text);
}
.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;
}


@keyframes lw-section-orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.55; }
  50% { transform: translate3d(0, -14px, 0) scale(1.06); opacity: 0.85; }
}
@keyframes lw-howto-arrow-nudge {
  0%, 100% { transform: translateX(0); opacity: 0.55; }
  50% { transform: translateX(5px); opacity: 1; }
}
@keyframes lw-howto-icon-glow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    border-color: var(--lw-brand-border);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
  }
}
@keyframes lw-popular-play-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}
@keyframes lw-popular-price-glow {
  0%, 100% { text-shadow: none; }
  50% { text-shadow: 0 0 18px rgba(255, 255, 255, 0.28); }
}
.lw-page--home .landing-section--howto,
.lw-page--home .landing-section--home-popular {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.lw-page--home .landing-section--howto::before,
.lw-page--home .landing-section--howto::after,
.lw-page--home .landing-section--home-popular::after {
  display: none;
}
.lw-page--home .landing-section--howto::before {
  top: 8%;
  left: max(-120px, -8vw);
  width: min(320px, 42vw);
  height: min(320px, 42vw);
}
.lw-page--home .landing-section--howto::after {
  right: max(-100px, -6vw);
  bottom: 6%;
  width: min(260px, 36vw);
  height: min(260px, 36vw);
  animation-delay: -7s;
}
.lw-page--home .landing-section--home-popular::after {
  top: 18%;
  right: max(-80px, -5vw);
  width: min(300px, 40vw);
  height: min(300px, 40vw);
  animation-delay: -4s;
}
.lw-page--home .landing-section--howto .home-section-head,
.lw-page--home .landing-section--howto .home-howto-flow,
.lw-page--home .landing-section--home-popular .home-section-head,
.lw-page--home .landing-section--home-popular .lw-grid--popular {
  position: relative;
  z-index: 1;
}
.home-howto-card {
  position: relative;
  overflow: hidden;
}
.home-howto-card::before {
  display: none;
}
.home-howto-card__icon {
  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-howto-card.lw-reveal.is-visible:nth-child(1) .home-howto-card__icon {
  animation: none;
}
.home-howto-card.lw-reveal.is-visible:nth-child(3) .home-howto-card__icon {
  animation: none;
}
.home-howto-card.lw-reveal.is-visible:nth-child(5) .home-howto-card__icon {
  animation: none;
}
.home-howto-card:hover .home-howto-card__icon {
  border-color: var(--lw-border-hover);
  background: var(--lw-brand-soft-hover);
}
.home-howto-card:hover {
  border-color: var(--lw-border-hover);
  box-shadow: var(--lw-shadow-md);
  transform: translateY(-2px);
}
.home-howto-flow__arrow.lw-reveal.is-visible {
  animation: lw-howto-arrow-nudge 2.4s ease-in-out infinite;
}
.home-howto-flow__arrow.lw-reveal.is-visible:nth-child(4) {
  animation-delay: 0.35s;
}
.lw-page--home .lw-grid--popular .lw-animate-in {
  transform: translateY(22px) scale(0.985);
}
.lw-page--home .lw-grid--popular .lw-animate-in.is-visible {
  transform: translateY(0) scale(1);
}
.lw-page--home .lw-grid--popular .lw-card--list {
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s ease;
}
.lw-page--home .lw-grid--popular .lw-card--list::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 50% at 50% 0%, rgba(255, 255, 255, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.lw-page--home .lw-grid--popular .lw-card--list > * {
  position: relative;
  z-index: 1;
}
.lw-page--home .lw-grid--popular .lw-card--list:hover::before {
  opacity: 1;
}
.lw-page--home .lw-grid--popular .lw-card--list:hover {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.14);
  transform: translateY(-5px);
}
.lw-page--home .lw-grid--popular .lw-card-video-stage {
  overflow: hidden;
  border-radius: 12px;
}
.lw-page--home .lw-grid--popular .lw-yt-facade-thumb,
.lw-page--home .lw-grid--popular .lw-card-video-stage--placeholder {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.lw-page--home .lw-grid--popular .lw-card--list:hover .lw-yt-facade-thumb,
.lw-page--home .lw-grid--popular .lw-card--list:hover .lw-card-video-stage--placeholder {
  transform: scale(1.05);
}
.lw-page--home .lw-grid--popular .lw-yt-facade-play svg {
  animation: lw-popular-play-pulse 2.8s ease-in-out infinite;
}
.lw-page--home .lw-grid--popular .lw-card--list:hover .lw-yt-facade-play svg {
  animation: none;
}
.lw-page--home .lw-grid--popular .lw-card--list.is-visible .lw-card-price-value {
  animation: none;
}
.lw-page--home .lw-grid--popular .lw-card--list.is-visible:nth-child(2) .lw-card-price-value {
  animation-delay: 0.6s;
}
.lw-page--home .lw-grid--popular .lw-card--list:hover .lw-card-price-value {
  animation: none;
}
.lw-page--home .lw-grid--popular .lw-card--list .hero-btn.primary {
  transition:
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}
.lw-page--home .lw-grid--popular .lw-card--list:hover .hero-btn.primary {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(255, 255, 255, 0.32);
}

.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: #d4d4d8;
}
.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-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: var(--lw-brand);
}
.lw-account-social-lead {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.45;
}
.lw-account-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
@media (max-width: 720px) {
  .lw-account-social-grid {
    grid-template-columns: 1fr;
  }
}
.lw-account-social-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  padding: 12px 14px;
  border-radius: var(--lw-radius-md);
  background: var(--lw-bg);
  border: 1px solid var(--lw-border);
}
.lw-account-social-item__actions {
  display: flex;
}
.lw-account-social-item__actions .lw-account-chip-btn {
  width: 100%;
}
.lw-account-chip-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-sizing: border-box;
  margin: 0;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--lw-border);
  background: var(--lw-elevated);
  color: var(--lw-text);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  color-scheme: dark;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
.lw-account-chip-btn:hover {
  background: var(--lw-surface-2);
  border-color: var(--lw-border-hover);
  color: var(--lw-text);
}
.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(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fafafa;
}
.lw-account-chip-btn.lw-account-ledger__topup {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 8px;
}
.lw-account-chip-btn--accent:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.lw-account-chip-btn--warn {
  border-color: color-mix(in srgb, var(--destructive) 38%, transparent);
  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;
  width: auto;
  align-self: flex-start;
}
.lw-form--account button.lw-account-chip-btn,
.lw-account-social-item__unlink-form button.lw-account-chip-btn {
  width: auto;
  max-width: 100%;
}
.lw-account-card--social .lw-account-chip-btn--accent {
  border-color: rgba(87, 242, 135, 0.38);
  background: color-mix(in srgb, var(--color-emerald-500) 14%, transparent);
  color: #9ae6b4;
}
.lw-account-card--social .lw-account-chip-btn--accent:hover {
  background: color-mix(in srgb, var(--color-emerald-500) 24%, transparent);
  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: 0;
  min-height: 24px;
}
.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: 10px;
  min-width: 0;
}
.lw-account-social-item__meta:not(:has(.lw-account-social-item__user)) {
  justify-content: flex-end;
}
.lw-account-social-item__unlink-form {
  margin: 0;
  flex-shrink: 0;
}
.lw-account-social-item__user {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-account-login-history-wrap {
  margin-top: 0;
}
.lw-login-history-card {
  padding: 16px 18px;
  border-radius: var(--lw-radius-lg);
  background: var(--lw-surface);
  border: 1px solid var(--lw-border);
  box-shadow: var(--lw-shadow-sm);
}
.lw-login-history-card--section {
  margin-top: 16px;
}
.lw-login-history-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.lw-login-history-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.lw-account-settings-layout .lw-login-history-card__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.lw-login-history-card__empty {
  margin: 0;
  font-size: 14px;
}
.lw-login-history-scroll {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 320px;
  border-radius: var(--lw-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.22);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}
.lw-login-history-scroll::-webkit-scrollbar {
  width: 6px;
  height: 0;
}
.lw-login-history-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}
.lw-login-history-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.lw-login-history-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  table-layout: fixed;
}
.lw-login-history-table th,
.lw-login-history-table td {
  padding: 8px 6px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-login-history-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lw-muted);
  background: rgba(12, 12, 14, 0.96);
}
.lw-login-history-table tbody tr:last-child td {
  border-bottom: none;
}
.lw-login-history-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.lw-login-history-table th:nth-child(1),
.lw-login-history-table td:nth-child(1) {
  width: 6%;
}
.lw-login-history-table th:nth-child(2),
.lw-login-history-table td:nth-child(2) {
  width: 17%;
}
.lw-login-history-table th:nth-child(3),
.lw-login-history-table td:nth-child(3) {
  width: 12%;
}
.lw-login-history-table th:nth-child(4),
.lw-login-history-table td:nth-child(4) {
  width: 11%;
}
.lw-login-history-table th:nth-child(5),
.lw-login-history-table td:nth-child(5) {
  width: 20%;
}
.lw-login-history-table th:nth-child(6),
.lw-login-history-table td:nth-child(6) {
  width: 16%;
}
.lw-login-history-table th:nth-child(7),
.lw-login-history-table td:nth-child(7) {
  width: 18%;
}
.lw-login-history-table__id {
  font-variant-numeric: tabular-nums;
  color: var(--lw-muted);
}
.lw-login-history-table__date {
  font-variant-numeric: tabular-nums;
}
.lw-login-log-date {
  display: inline;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.lw-login-ip--blur {
  filter: blur(5px);
  transition: filter 0.15s ease;
  cursor: default;
}
.lw-login-ip--blur:hover,
.lw-login-ip--blur:focus-visible {
  filter: none;
}
.lw-login-status {
  font-weight: 600;
  white-space: nowrap;
}
.lw-login-status--ok {
  color: #57f287;
}
.lw-login-status--fail {
  color: var(--destructive);
}
.lw-login-history-pager {
  margin-left: auto;
}
.lw-login-history-pager__inner {
  display: inline-flex;
  align-items: stretch;
  flex-wrap: wrap;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.lw-login-history-pager__btn,
.lw-login-history-pager__sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--lw-text);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  transition: background 0.15s ease;
}
.lw-login-history-pager__btn:last-child {
  border-right: none;
}
.lw-login-history-pager__btn:hover:not(.lw-login-history-pager__btn--disabled):not(.lw-login-history-pager__btn--active) {
  background: rgba(255, 255, 255, 0.07);
}
.lw-login-history-pager__btn--active {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}
.lw-login-history-pager__btn--disabled {
  opacity: 0.38;
  pointer-events: none;
}
.lw-login-history-pager__sep {
  color: var(--lw-muted);
  pointer-events: none;
}
.lw-admin-user-panels .lw-login-history-card--section {
  margin-top: 0;
}
.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;
}

.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: color-mix(in srgb, var(--destructive) 45%, transparent);
  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;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}
.lw-admin-keys-table-wrap::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.lw-admin-keys-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}
.lw-admin-keys-table-wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.32);
}
.lw-admin-keys-table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.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(12px, 2.5vw, 18px);
}
.lw-account-card--categories-admin .lw-admin-dashboard__head {
  margin-bottom: 12px;
}
.lw-admin-categories-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 400px);
  gap: 0;
  align-items: stretch;
}
.lw-admin-categories-panel,
.lw-admin-category-form-panel {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  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: 8px;
  min-height: 44px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  box-sizing: border-box;
}
.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: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
  line-height: 1.3;
}
.lw-admin-categories-empty {
  padding: 16px 8px;
}
.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: 48px minmax(0, 1fr);
  grid-template-areas:
    "media body"
    "media actions";
  column-gap: 12px;
  row-gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: border-color 0.15s ease, background 0.15s ease;
}
@media (min-width: 560px) {
  .lw-admin-category-card {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    grid-template-areas: "media body actions";
    align-items: center;
    row-gap: 0;
  }
  .lw-admin-category-card__actions {
    justify-content: flex-end;
  }
}
.lw-admin-category-card.is-editing {
  border-color: color-mix(in srgb, var(--color-emerald-400) 35%, transparent);
  background: color-mix(in srgb, var(--color-emerald-600) 8%, transparent);
}
.lw-admin-category-card.is-inactive {
  opacity: 0.72;
}
.lw-admin-category-card__media {
  grid-area: media;
  width: 48px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--lw-bg);
}
.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: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #fafafa;
  overflow-wrap: anywhere;
}
.lw-admin-category-card__slug {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  line-height: 1.3;
  color: rgba(248, 250, 252, 0.45);
  overflow-wrap: anywhere;
}
.lw-admin-category-card__badge {
  display: inline-flex;
  margin-top: 4px;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fca5a5;
  background: color-mix(in srgb, var(--destructive) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--destructive) 25%, transparent);
}
.lw-admin-category-card__actions {
  grid-area: actions;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
  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 {
  min-width: 0;
  min-height: 28px;
  padding: 4px 9px;
  font-size: 11px;
  border-radius: 6px;
}
.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: 11px;
  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 {
  flex: 1 1 auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-admin-category-form__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.lw-admin-category-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 8px;
  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: 6px;
}
.lw-admin-category-form .lw-pm-field__label {
  font-size: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.lw-admin-category-form .lw-pm-switch-box {
  width: 100%;
  box-sizing: border-box;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
}
.lw-admin-category-form .lw-admin-site-field__label,
.lw-admin-category-form .lw-admin-site-field > label {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  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: 34px;
  height: 34px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  color: #fafafa;
  font: inherit;
  font-size: 12px;
  line-height: 1.3;
}
.lw-admin-category-form .lw-admin-site-field input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--color-emerald-400) 35%, transparent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-emerald-400) 10%, transparent);
}
.lw-admin-category-file {
  display: flex;
  align-items: center;
  gap: 8px;
  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: 32px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fafafa;
  font-size: 11px;
  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: 11px;
  line-height: 1.3;
  color: var(--lw-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-admin-category-form__preview-wrap {
  margin-top: 8px;
}
.lw-admin-category-form__preview {
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--lw-bg);
}
.lw-admin-category-form__actions {
  display: flex;
  justify-content: flex-start;
  flex: 0 0 auto;
  margin: 0;
  margin-top: auto;
  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 {
  width: auto;
  min-width: 96px;
  min-height: 32px;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 8px;
}
@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%;
  }
}


.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: var(--lw-brand);
  background: rgba(255, 255, 255, 0.08);
}
.lw-pm-tabs__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 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: flex;
  flex-direction: column;
}
.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;
  gap: 0;
}
.lw-pm-tabpanel--keys .lw-pm-block__head,
.lw-pm-tabpanel--keys .lw-pm-keys-toolbar {
  flex: 0 0 auto;
}
.lw-pm-tabpanel--keys .lw-pm-keys-scroll {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  gap: 10px;
}
.lw-pm-tabpanel--keys .lw-pm-table-wrap {
  position: relative;
  flex: 1 1 auto;
  min-height: 120px;
  max-height: min(42vh, 340px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}
.lw-pm-tabpanel--keys .lw-pm-table-wrap::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.lw-pm-tabpanel--keys .lw-pm-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}
.lw-pm-tabpanel--keys .lw-pm-table-wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.32);
}
.lw-pm-tabpanel--keys .lw-pm-table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.lw-pm-tabpanel--keys .lw-pm-keys-state:not([hidden]) {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.35);
}
.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__head--toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.lw-pm-block__head-text {
  flex: 1 1 auto;
  min-width: 0;
}
.lw-pm-block__head--toolbar .lw-pm-btn {
  flex: 0 0 auto;
  margin-top: 1px;
}
.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-tabpanel--status {
  padding: 14px 18px 16px;
}
.lw-pm-block--status {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lw-pm-block--status + .lw-pm-block--weekly-limits {
  margin-top: 14px;
  padding-top: 14px;
}
.lw-pm-status-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  align-items: start;
}
.lw-pm-status-fields .lw-pm-field__label {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 4px;
  min-height: 22px;
}
.lw-pm-status-toggles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.lw-pm-status-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  box-sizing: border-box;
}
.lw-pm-status-toggle__label {
  font-size: 12px;
  font-weight: 600;
  color: #d4d4d8;
  line-height: 1.25;
}
.lw-pm-block--status .lw-pm-field--compact {
  gap: 5px;
}
.lw-pm-block--status .lw-pm-input,
.lw-pm-block--status .lw-pm-custom-select__trigger {
  min-height: 36px;
  padding: 7px 34px 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  color: #fafafa;
  box-sizing: border-box;
}
.lw-pm-block--status .lw-pm-custom-select__trigger {
  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-block--status .lw-pm-custom-select {
  width: 100%;
}
.lw-pm-grid--status {
  gap: 14px 16px;
  align-items: stretch;
}
.lw-pm-field--switch-row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}
.lw-pm-field--switch-row .lw-pm-field__label {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}
.lw-pm-field--switch-row .lw-pm-switch {
  flex-shrink: 0;
}
.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--full {
  grid-column: 1 / -1;
}
.lw-pm-field--segment {
  border: 0;
  padding: 0;
  min-width: 0;
}
.lw-pm-field--segment .lw-pm-field__label {
  padding: 0;
  margin: 0 0 8px;
}
.lw-pm-segment {
  display: flex;
  align-items: stretch;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}
.lw-pm-segment__item {
  position: relative;
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.lw-pm-segment__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.lw-pm-segment__text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 7px;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: #a1a1aa;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.lw-pm-segment__item:hover .lw-pm-segment__text {
  color: #e4e4e7;
  background: rgba(255, 255, 255, 0.04);
}
.lw-pm-segment__input:checked + .lw-pm-segment__text {
  color: #fafafa;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.lw-pm-segment__input:focus-visible + .lw-pm-segment__text {
  outline: 2px solid color-mix(in srgb, var(--color-emerald-400) 45%, transparent);
  outline-offset: 1px;
}
.lw-pm-field--inline {
  flex: 0 0 auto;
  min-width: 0;
}
.lw-form label.lw-pm-field__label {
  display: block;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #a1a1aa;
  line-height: 1.3;
}
.lw-pm-field__label {
  font-size: 12px;
  font-weight: 600;
  color: #a1a1aa;
  line-height: 1.3;
}
.lw-pm-field--static .lw-pm-field__link {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  color: #93c5fd;
  word-break: break-all;
  text-decoration: none;
}
.lw-pm-field--static .lw-pm-field__link:hover {
  text-decoration: underline;
}
.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-select option {
  background: #141414;
  color: #fafafa;
}
.lw-pm-custom-select {
  position: relative;
  display: block;
  width: 100%;
}
.lw-pm-custom-select__native {
  position: absolute;
  inset: auto;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.lw-pm-custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
}
.lw-pm-custom-select.is-disabled .lw-pm-custom-select__trigger {
  opacity: 0.55;
  cursor: not-allowed;
}
.lw-pm-custom-select__trigger-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lw-pm-custom-select__menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 4px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #121214;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
  max-height: min(240px, 42vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.04);
}
.lw-pm-custom-select__menu::-webkit-scrollbar {
  width: 7px;
}
.lw-pm-custom-select__menu::-webkit-scrollbar-track {
  margin: 4px 0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}
.lw-pm-custom-select__menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.24);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 999px;
}
.lw-pm-custom-select__menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.36);
  background-clip: padding-box;
}
.lw-pm-custom-select__group-label {
  padding: 8px 10px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #71717a;
  pointer-events: none;
  user-select: none;
  list-style: none;
}
.lw-pm-custom-select__group-label--divider {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-pm-custom-select__menu[hidden] {
  display: none;
}
.lw-pm-custom-select__option {
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.35;
  color: #fafafa;
  cursor: pointer;
  user-select: none;
  transition: background 0.12s ease, color 0.12s ease;
}
.lw-pm-custom-select__option:hover,
.lw-pm-custom-select__option.is-highlighted {
  background: rgba(255, 255, 255, 0.08);
}
.lw-pm-custom-select__option.is-selected {
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  font-weight: 600;
}
.lw-pm-custom-select__option.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.lw-pm-custom-select.is-open .lw-pm-custom-select__trigger {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: #141414;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.lw-pm-custom-select.is-open {
  z-index: 20;
  position: relative;
}
.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--mono {
  font-family: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.lw-pm-block--discord-role .lw-pm-field {
  max-width: 360px;
}
.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: color-mix(in srgb, var(--color-emerald-400) 40%, transparent);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-emerald-400) 12%, transparent);
}
.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(255, 255, 255, 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: color-mix(in srgb, var(--color-emerald-600) 55%, transparent);
}
.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--danger {
  border-color: color-mix(in srgb, var(--destructive) 45%, transparent);
  background: rgba(127, 29, 29, 0.42);
  color: #fecaca;
  font-weight: 600;
}
.lw-pm-btn--danger:hover {
  border-color: rgba(252, 165, 165, 0.65);
  background: rgba(185, 28, 28, 0.52);
  color: #fff;
}
.lw-pm-btn--success {
  border-color: color-mix(in srgb, var(--color-emerald-400) 45%, transparent);
  background: color-mix(in srgb, var(--color-emerald-600) 72%, transparent);
  color: #ecfdf5;
  font-weight: 600;
}
.lw-pm-btn--success:hover {
  border-color: rgba(134, 239, 172, 0.55);
  background: color-mix(in srgb, var(--color-emerald-500) 82%, transparent);
  color: #fff;
}
.lw-pm-btn--sm {
  min-height: 32px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
}
.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--tiers {
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  gap: 8px;
  max-width: 100%;
}
.lw-pm-block--weekly-limits .lw-pm-limits--tiers {
  width: fit-content;
  max-width: 100%;
  min-width: min(100%, 360px);
}
.lw-pm-limits__cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  min-width: 0;
}
.lw-pm-limits--tiers .lw-pm-limits__cell {
  align-items: stretch;
  gap: 4px;
  text-align: left;
}
.lw-pm-limits__label {
  font-size: 11px;
  font-weight: 600;
  color: #a1a1aa;
  line-height: 1.3;
  text-align: left;
}
.lw-pm-limits--tiers .lw-pm-limits__label {
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lw-pm-limits--tiers .lw-pm-limits__cell .lw-pm-input {
  width: 100%;
  max-width: none;
  min-height: 34px;
  padding: 6px 8px;
}
.lw-pm-block--weekly-limits .lw-pm-block__head {
  margin-bottom: 10px;
}
.lw-pm-block--weekly-limits .lw-pm-block__head--toolbar {
  align-items: center;
  gap: 12px 16px;
}
.lw-pm-block--weekly-limits .lw-pm-limits-clear-form {
  margin: 0;
  flex-shrink: 0;
}
.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) 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__stage > .lw-pm__foot[data-lw-pm-save-foot] {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-top: auto;
  padding: 10px 16px max(12px, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}
.lw-pm__stage:has(.lw-pm-tabpanel--keys.is-active) .lw-pm-site-form {
  display: none !important;
}
.lw-pm__stage > .lw-pm-tabpanel--keys {
  flex: 1 1 auto;
  min-height: 0;
}
.lw-pm__stage > .lw-pm__foot[data-lw-pm-save-foot] [data-lw-pm-limits-clear][hidden] {
  display: none;
}
.lw-pm--site .lw-pm-btn--sm {
  min-height: 30px;
  padding: 4px 11px;
}
.lw-pm--site .lw-pm-tier__remove {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.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-tabpanel--keys .lw-pm-table th:first-child,
.lw-pm-tabpanel--keys .lw-pm-table td:first-child {
  min-width: 132px;
  width: 36%;
}
.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: color-mix(in srgb, var(--destructive) 45%, transparent);
  background: color-mix(in srgb, var(--destructive) 12%, transparent);
  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: color-mix(in srgb, var(--color-emerald-400) 45%, transparent);
  background: color-mix(in srgb, var(--color-emerald-600) 10%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-emerald-400) 18%, transparent);
}
.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-tabpanel--keys .lw-pm-table code {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  word-break: normal;
}
.lw-pm-keys-toolbar {
  margin-bottom: 12px;
  flex-shrink: 0;
}
.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;
  min-height: 88px;
  padding: 18px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: var(--lw-muted);
}
.lw-pm-keys-state[hidden] {
  display: none !important;
}
.lw-pm-tabpanel--keys .lw-pm-table[hidden] {
  display: none !important;
}
.lw-pm-keys-state--loading {
  color: var(--lw-muted);
}
.lw-pm-keys-state--empty {
  color: var(--lw-muted);
}
.lw-pm-keys-state--error {
  color: #fca5a5;
}
.lw-pm-keys-pager {
  flex: 0 0 auto;
  margin: 0;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.lw-pm-keys-pager[hidden] {
  display: none !important;
}
.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(255, 255, 255, 0.45);
  outline-offset: 2px;
}
.lw-pm-keys-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  flex: 0 0 auto;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.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 {
  margin-left: auto;
}
.lw-pm-keys-extend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.lw-pm-keys-extend__lead {
  font-size: 12px;
  font-weight: 600;
  color: #a1a1aa;
  white-space: nowrap;
}
.lw-pm-keys-extend__amount,
.lw-pm-keys-extend__unit {
  display: flex;
  margin: 0;
}
.lw-pm-keys-extend .lw-pm-input--narrow {
  width: 68px;
  min-width: 68px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.lw-pm-keys-extend .lw-pm-select--unit {
  min-width: 108px;
}
.lw-pm-keys-bar__extend .lw-pm-select {
  min-width: 120px;
}


.lw-email-dialog.lw-pm--site .lw-pm__shell {
  max-height: min(92vh, 860px);
}
.lw-email-dialog.lw-pm--site .lw-pm__close {
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 18px;
}
.lw-email-dialog.lw-pm--site .lw-pm__head {
  padding: 12px 40px 8px 14px;
}
.lw-email-dialog.lw-pm--site .lw-pm__title {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 800;
}
.lw-email-dialog.lw-pm--site .lw-pm__subtitle {
  font-size: 11px;
}
.lw-email-dialog.lw-pm--site .lw-pm-tabs {
  gap: 2px;
  padding: 0 10px;
}
.lw-email-dialog.lw-pm--site .lw-pm-tabs__btn {
  padding: 9px 11px;
  font-size: 12px;
  border-bottom-width: 2px;
}
.lw-email-dialog.lw-pm--site .lw-pm-tabpanel {
  padding: 12px 14px 14px;
}
.lw-email-dialog.lw-pm--site .lw-pm-tabpanel--status {
  padding: 12px 14px 14px;
}
.lw-email-dialog.lw-pm--site .lw-pm-block + .lw-pm-block {
  margin-top: 12px;
  padding-top: 12px;
}
.lw-email-dialog.lw-pm--site .lw-pm-block__head {
  margin-bottom: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-block__title {
  font-size: 12px;
}
.lw-email-dialog.lw-pm--site .lw-pm-block__hint {
  margin-top: 4px;
  font-size: 11px;
}
.lw-email-dialog.lw-pm--site .lw-pm-stack {
  gap: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-field {
  gap: 4px;
}
.lw-email-dialog.lw-pm--site .lw-pm-field__label,
.lw-email-dialog.lw-pm--site .lw-form label.lw-pm-field__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #a1a1aa;
}
.lw-email-dialog.lw-pm--site .lw-pm-input,
.lw-email-dialog.lw-pm--site .lw-pm-select,
.lw-email-dialog.lw-pm--site .lw-pm-textarea,
.lw-email-dialog.lw-pm--site .lw-pm-custom-select__trigger {
  min-height: 38px;
  padding: 7px 11px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
}
.lw-email-dialog.lw-pm--site .lw-pm-textarea {
  min-height: 64px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-textarea--tall {
  min-height: 136px;
}
.lw-email-dialog.lw-pm--site .lw-pm-select,
.lw-email-dialog.lw-pm--site .lw-pm-block--status .lw-pm-custom-select__trigger {
  padding-right: 28px;
  background-size: 12px;
  background-position: right 8px center;
}
.lw-email-dialog.lw-pm--site .lw-pm-input--price {
  padding-left: 22px;
}
.lw-email-dialog.lw-pm--site .lw-pm-price__prefix {
  left: 9px;
  font-size: 12px;
}
.lw-email-dialog.lw-pm--site .lw-pm-switch-box {
  min-height: 38px;
  padding: 0 11px;
  border-radius: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-field--switch-row {
  min-height: 38px;
  padding: 7px 11px;
  border-radius: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-req {
  min-height: 38px;
  padding: 7px 11px;
  gap: 8px;
  border-radius: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-req__text {
  font-size: 13px;
  line-height: 1.35;
}
.lw-email-dialog.lw-pm--site .lw-pm-req-grid {
  gap: 6px;
}
.lw-email-dialog.lw-pm--site .lw-pm-block--test-sub {
  margin-top: 10px;
  gap: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-block--test-sub .lw-pm-req-grid {
  gap: 6px;
}
.lw-email-dialog.lw-pm--site .lw-pm-status-fields {
  gap: 8px 10px;
}
.lw-email-dialog.lw-pm--site .lw-pm-status-fields .lw-pm-field__label {
  min-height: 0;
  margin-bottom: 0;
}
.lw-email-dialog.lw-pm--site .lw-pm-status-toggles {
  gap: 6px;
}
.lw-email-dialog.lw-pm--site .lw-pm-status-toggle {
  min-height: 36px;
  padding: 6px 10px;
  border-radius: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-status-toggle__label {
  font-size: 12px;
}
.lw-email-dialog.lw-pm--site .lw-pm-block--status {
  gap: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-block--status .lw-pm-input,
.lw-email-dialog.lw-pm--site .lw-pm-block--status .lw-pm-custom-select__trigger {
  min-height: 38px;
  padding: 7px 28px 7px 11px;
  border-radius: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-block--status + .lw-pm-block--weekly-limits {
  margin-top: 10px;
  padding-top: 10px;
}
.lw-email-dialog.lw-pm--site .lw-pm-block--discord-role .lw-pm-field {
  max-width: 100%;
}
.lw-email-dialog.lw-pm--site .lw-pm-tiers {
  gap: 6px;
}
.lw-email-dialog.lw-pm--site .lw-pm-tiers__head,
.lw-email-dialog.lw-pm--site .lw-pm-tier {
  grid-template-columns: 58px minmax(78px, 0.75fr) minmax(104px, 1.35fr) 30px;
  gap: 9px;
  align-items: center;
}
.lw-email-dialog.lw-pm--site .lw-pm-tiers__head {
  padding: 0 9px;
  font-size: 10px;
}
.lw-email-dialog.lw-pm--site .lw-pm-tiers__head span:last-child {
  width: 30px;
}
.lw-email-dialog.lw-pm--site .lw-pm-tiers__list {
  gap: 7px;
}
.lw-email-dialog.lw-pm--site .lw-pm-tier {
  padding: 9px;
  border-radius: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-tier__remove {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}
.lw-email-dialog.lw-pm--site .lw-pm-cats {
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-cat {
  min-height: 84px;
  gap: 6px;
  padding: 8px 8px;
  border-radius: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-cat__thumb {
  width: 48px;
  height: 36px;
  border-radius: 6px;
}
.lw-email-dialog.lw-pm--site .lw-pm-cat__name {
  font-size: 11px;
}
.lw-email-dialog.lw-pm--site .lw-pm-input--search {
  min-height: 34px;
  padding: 5px 10px;
}
.lw-email-dialog.lw-pm--site .lw-pm-tabpanel--keys .lw-pm-table-wrap {
  max-height: min(38vh, 280px);
  border-radius: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-table {
  font-size: 12px;
}
.lw-email-dialog.lw-pm--site .lw-pm-table th,
.lw-email-dialog.lw-pm--site .lw-pm-table td {
  padding: 6px 10px;
}
.lw-email-dialog.lw-pm--site .lw-pm-table th {
  font-size: 10px;
}
.lw-email-dialog.lw-pm--site .lw-pm-table code {
  font-size: 11px;
}
.lw-email-dialog.lw-pm--site .lw-pm-keys-toolbar {
  margin-bottom: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-keys-bar {
  gap: 8px 10px;
  margin-top: 10px;
  padding-top: 10px;
}
.lw-email-dialog.lw-pm--site .lw-pm-keys-extend__lead {
  font-size: 11px;
}
.lw-email-dialog.lw-pm--site .lw-pm-keys-extend .lw-pm-input--narrow {
  width: 56px;
  min-width: 56px;
}
.lw-email-dialog.lw-pm--site .lw-pm-keys-extend .lw-pm-select--unit,
.lw-email-dialog.lw-pm--site .lw-pm-keys-bar__extend .lw-pm-select {
  min-width: 96px;
}
.lw-email-dialog.lw-pm--site .lw-pm-btn {
  min-height: 32px;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 8px;
}
.lw-email-dialog.lw-pm--site .lw-pm-btn--sm {
  min-height: 28px;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 6px;
}
.lw-email-dialog.lw-pm--site .lw-pm__stage > .lw-pm__foot[data-lw-pm-save-foot] {
  padding: 8px 12px max(10px, env(safe-area-inset-bottom, 0px));
  gap: 6px;
}
.lw-email-dialog.lw-pm--site .lw-pm-block--weekly-limits .lw-pm-limits--tiers {
  min-width: min(100%, 320px);
  gap: 6px;
}
.lw-email-dialog.lw-pm--site .lw-pm-limits--tiers .lw-pm-limits__cell {
  gap: 3px;
}
.lw-email-dialog.lw-pm--site .lw-pm-limits--tiers .lw-pm-limits__label {
  font-size: 11px;
}
.lw-email-dialog.lw-pm--site .lw-pm-limits--tiers .lw-pm-limits__cell .lw-pm-input {
  min-height: 36px;
  padding: 6px 8px;
  font-size: 13px;
}
.lw-email-dialog.lw-pm--site .lw-pm-field--static .lw-pm-field__link {
  font-size: 12px;
}

@media (max-width: 720px) {
  .lw-mp-form__row--2,
  .lw-mp-form__params {
    grid-template-columns: 1fr;
  }
  .lw-mp-form__head {
    align-items: stretch;
  }
  .lw-mp-form__back {
    width: 100%;
    justify-content: center;
  }
  .lw-account-card--mp-admin .lw-mp-form__segment.lw-pm-segment--mp {
    grid-template-columns: 1fr;
  }
  .lw-mp-form__delete {
    margin-left: 0;
  }
  .lw-mp-admin-table-wrap .lw-admin-promo-table.lw-mp-admin-table {
    min-width: 1080px;
  }
  .lw-mp-admin-stats {
    grid-template-columns: 1fr;
  }
  .lw-mp-form__delete {
    width: 100%;
  }
  .lw-pm-grid--2,
  .lw-pm-req-grid,
  .lw-pm-status-fields,
  .lw-pm-status-toggles {
    grid-template-columns: 1fr;
  }
  .lw-pm-block--weekly-limits .lw-pm-limits--tiers {
    width: 100%;
    min-width: 0;
  }
  .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 label"
      "remove remove";
    align-items: stretch;
    gap: 8px;
  }
  .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__remove {
    grid-area: remove;
    width: 32px;
    height: 32px;
    justify-self: end;
  }
  .lw-pm-block__head--toolbar {
    flex-wrap: wrap;
    align-items: center;
  }
  .lw-pm-block__head--toolbar .lw-pm-btn {
    margin-top: 0;
    margin-left: auto;
  }
  .lw-pm-limits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lw-pm-limits--tiers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lw-pm-block--weekly-limits .lw-pm-block__head--toolbar {
    flex-wrap: wrap;
  }
  .lw-pm-block--weekly-limits .lw-pm-limits-clear-form {
    margin-left: auto;
  }
  .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%;
    margin-left: 0;
  }
  .lw-pm-keys-extend {
    width: 100%;
    justify-content: flex-end;
  }
  .lw-pm-keys-extend .lw-pm-input--narrow,
  .lw-pm-keys-extend .lw-pm-select--unit {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }
  .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;
  }
  .lw-email-dialog.lw-pm--site {
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
  }
  .lw-pm__shell {
    max-height: min(92dvh, calc(100dvh - 12px - var(--lw-safe-top, 0px) - var(--lw-safe-bottom, 0px)));
  }
  .lw-pm-tabs {
    padding: 0 10px;
    gap: 2px;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 10px;
  }
  .lw-pm-tabs__btn {
    padding: 10px 11px;
    font-size: 13px;
  }
  .lw-pm-tabpanel {
    padding: 14px 16px 16px;
  }
  .lw-pm__stage > .lw-pm__foot[data-lw-pm-save-foot] {
    flex-wrap: wrap;
    justify-content: stretch;
    gap: 8px;
    padding: 10px 12px max(12px, env(safe-area-inset-bottom, 0px));
  }
  .lw-pm__stage > .lw-pm__foot[data-lw-pm-save-foot] .lw-pm-btn {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    min-height: 40px;
    justify-content: center;
  }
  .lw-pm__stage > .lw-pm__foot[data-lw-pm-save-foot]:not(:has([data-lw-pm-limits-clear]:not([hidden]))) .lw-pm-btn {
    flex-basis: 100%;
  }
  .lw-pm-tabpanel--keys .lw-pm-table-wrap {
    max-height: min(36vh, 280px);
  }
}
@media (max-width: 520px) {
  .lw-pm__head {
    padding: 16px 48px 14px 16px;
  }
  .lw-pm__body {
    padding: 14px 16px 18px;
  }
  .lw-pm__foot {
    padding: 10px 16px max(12px, env(safe-area-inset-bottom, 0px));
  }
  .lw-pm-block__head--toolbar .lw-pm-btn {
    width: auto;
  }
  .lw-pm-cats {
    grid-template-columns: 1fr 1fr;
  }
}


.lw-page--account .lw-account-page--dash {
  position: relative;
}

.lw-page--account .lw-account-sidebar__nav {
  gap: 1px;
  padding: 8px 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(17, 16, 15, 0.6);
  box-shadow: 0 12px 34px -18px rgba(0, 0, 0, 0.7);
}
.lw-page--account .lw-account-sidebar__label {
  color: rgba(168, 164, 156, 0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 10px 12px 8px;
  margin: 0;
}
.lw-page--account .lw-account-sidebar__admin {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.lw-page--account .lw-account-sidebar__link {
  gap: 12px;
  padding: 9px 12px;
  border-radius: 9px;
  border: 0;
  color: rgba(198, 194, 187, 0.74);
  font-weight: 500;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.lw-page--account .lw-account-sidebar__link:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #efece5;
  transform: translateX(2px);
}
.lw-page--account .lw-account-sidebar__link:active {
  transform: translateX(1px);
}
.lw-page--account .lw-account-sidebar__link.is-active {
  background: var(--lw-surface-2);
  border: 0;
  color: var(--lw-text);
  box-shadow: none;
}
.lw-page--account .lw-account-sidebar__link.is-active::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  height: auto;
  transform: none;
  border-radius: 0 3px 3px 0;
  background: var(--lw-brand);
}
.lw-page--account .lw-account-sidebar__icon {
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  border-radius: 0;
  color: rgba(176, 171, 162, 0.6);
  transition: color 0.18s ease;
}
.lw-page--account .lw-account-sidebar__link:hover .lw-account-sidebar__icon {
  color: rgba(226, 222, 214, 0.85);
}
.lw-page--account .lw-account-sidebar__link.is-active .lw-account-sidebar__icon {
  background: transparent;
  border: 0;
  color: var(--lw-brand);
}
.lw-page--account .lw-account-main__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.lw-page--account .lw-account-main .section-card {
  border: none;
  background: transparent;
  box-shadow: none;
}

.lw-page--account .lw-account-pane[data-account-tab="settings"] .section-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
.lw-page--account .lw-account-card__heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(161, 161, 170, 0.95);
}
.lw-page--account .lw-account-card--overview {
  position: relative;
  overflow: hidden;
}
.lw-page--account .lw-account-card--overview::before {
  display: none;
}
.lw-page--account .lw-account-overview__name-row .lw-profile-card__username {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lw-page--account .lw-profile-card__status.is-verified {
  color: var(--lw-brand);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
}
.lw-page--account .lw-account-overview__balance {
  border-color: var(--lw-border);
  background: var(--lw-surface-2);
  box-shadow: none;
}
.lw-page--account .lw-account-overview__balance-value {
  font-size: 1.35rem;
  color: var(--lw-brand);
}
.lw-page--account .lw-account-overview__balance .lw-account-btn-topup,
.lw-page--account .lw-account-overview__balance .lw-profile-card__topup {
  min-height: 34px;
  padding: 0 14px;
  border: none;
  border-radius: 999px;
  background: var(--lw-btn-primary-bg);
  color: #0a0a0a;
  font-weight: 700;
  box-shadow: none;
}
.lw-page--account .lw-account-overview__balance .lw-account-btn-topup:hover,
.lw-page--account .lw-account-overview__balance .lw-profile-card__topup:hover {
  filter: brightness(1.06);
  box-shadow: none;
}
.lw-page--account .lw-account-overview__stat {
  border-color: rgba(255, 255, 255, 0.06);
  background: #0a0a0a;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-page--account .lw-account-overview__stat:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.lw-page--account .lw-account-overview__stat dd {
  font-size: 14px;
  font-weight: 700;
}
.lw-page--account .lw-account-card--ledger {
  border-color: rgba(255, 255, 255, 0.06);
  background: #121212;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}


.lw-page--account .lw-account-card--topups.lw-account-card--ledger,
.lw-page--account .lw-account-card--purchases.lw-account-card--ledger {
  position: relative;
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-lg);
  overflow: hidden;
  background: var(--lw-surface);
  box-shadow: var(--lw-shadow-sm);
}
.lw-page--account .lw-account-card--topups.lw-account-card--ledger::before,
.lw-page--account .lw-account-card--purchases.lw-account-card--ledger::before {
  display: none;
}
.lw-page--account .lw-account-ledger__summary--purchases {
  padding: 16px 18px;
  border-bottom-color: var(--lw-border);
  background: var(--lw-surface-2);
}
.lw-page--account .lw-account-ledger--purchases > .lw-admin-pager,
.lw-page--account .lw-account-ledger--topups > .lw-admin-pager {
  padding: 12px 16px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.22);
}

.lw-page--account .lw-account-ledger--purchases .lw-account-ledger__empty,
.lw-page--account .lw-account-ledger--topups .lw-account-ledger__empty {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.lw-page--account .lw-account-purchase-table {
  background: transparent;
}
.lw-page--account .lw-account-purchase-list {
  padding-bottom: 4px;
}
.lw-page--account .lw-account-purchase-list__head {
  top: 0;
}
.lw-page--account .lw-account-purchase-row__key {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.38);
  border-radius: 8px;
}
.lw-page--account .lw-account-purchase-row__key-label {
  color: rgba(255, 255, 255, 0.72);
}
.lw-page--account .lw-purchase-action-btn {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.lw-page--account .lw-purchase-action-btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}
.lw-page--account .lw-account-ledger__summary {
  padding: 20px 22px;
  border-bottom-color: var(--lw-border);
  background: var(--lw-surface-2);
}
.lw-page--account .lw-account-ledger__stat-value {
  color: var(--lw-brand);
}
.lw-page--account .lw-account-ledger__pill {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}
.lw-page--account .lw-account-ledger__pill-value {
  color: #fff;
}
.lw-page--account .lw-account-ledger__row {
  border-color: rgba(255, 255, 255, 0.06);
  background: #0a0a0a;
  border-radius: 14px;
}
.lw-page--account .lw-account-ledger__row:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.lw-page--account .lw-account-ledger__icon--payment,
.lw-page--account .lw-account-ledger__icon--promo,
.lw-page--account .lw-account-ledger__icon--link,
.lw-page--account .lw-account-ledger__icon--review,
.lw-page--account .lw-account-ledger__icon--bonus {
  color: var(--lw-brand);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}
.lw-page--account .lw-account-ledger__icon--admin,
.lw-page--account .lw-account-ledger__icon--admin-debit {
  color: var(--destructive);
  background: color-mix(in srgb, var(--destructive) 12%, transparent);
  border-color: color-mix(in srgb, var(--destructive) 32%, transparent);
}
.lw-page--account .lw-account-ledger__amount {
  color: #86efac;
}
.lw-page--account .lw-account-ledger__amount--promo-disc {
  color: var(--lw-brand);
}
.lw-page--account .lw-account-purchase-list__head {
  padding: 11px var(--lw-purchase-pad-x);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.42);
}
.lw-page--account .lw-account-purchase-list__col {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
}
.lw-page--account .lw-account-purchase-list__col--actions {
  text-align: right;
}
.lw-page--account .lw-account-purchase-row {
  padding: 12px var(--lw-purchase-pad-x);
  border-bottom-color: rgba(255, 255, 255, 0.05);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.lw-page--account .lw-account-purchase-row:last-child {
  padding-bottom: 14px;
}
.lw-page--account .lw-account-purchase-row:hover {
  background: rgba(255, 255, 255, 0.04);
}
.lw-page--account .lw-account-purchase-row__title {
  font-weight: 700;
}
.lw-page--account .lw-account-purchase-row__status--activated {
  color: #86efac;
  background: color-mix(in srgb, var(--color-emerald-500) 12%, transparent);
  border-color: color-mix(in srgb, var(--color-emerald-400) 28%, transparent);
}
.lw-page--account .lw-account-purchase-row__status--frozen {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.28);
}
.lw-page--account .lw-account-card--security {
  border-color: rgba(255, 255, 255, 0.06);
}
.lw-page--account .lw-account-card--security .lw-form--account input[type="password"]:focus,
.lw-page--account .lw-account-card--security .lw-form--account input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}


.lw-page--account .lw-account-chip-btn--accent,
.lw-page--account .lw-account-chip-btn--success {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #eae7e0;
  font-weight: 600;
  box-shadow: none;
}
.lw-page--account .lw-account-chip-btn--accent:hover,
.lw-page--account .lw-account-chip-btn--success:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  color: #f6f2e8;
  filter: none;
}

.lw-page--account .lw-password-dialog__submit.lw-account-chip-btn {
  background: #ececec;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #0a0a0a;
  font-weight: 700;
}
.lw-page--account .lw-password-dialog__submit.lw-account-chip-btn:hover {
  background: #ffffff;
  color: #000;
  filter: none;
}
.lw-page--account .lw-login-history-card {
  border: none;
  background: transparent;
  box-shadow: none;
}
.lw-page--account .lw-login-history-scroll {
  border-color: rgba(255, 255, 255, 0.06);
  background: #0a0a0a;
}
.lw-page--account .lw-login-history-table th {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.55);
}
.lw-page--account .lw-login-history-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}
.lw-page--account .lw-login-history-pager__btn--active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--lw-brand);
}
.lw-page--account .lw-account-social-item__badge.is-linked {
  color: var(--lw-brand);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}
.lw-page--account .lw-promo-redeem-inline__input:focus {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.lw-page--account .lw-promo-redeem-inline__submit {
  background: #ececec;
  color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
}
.lw-page--account .lw-account-ledger__pill--expired {
  border-color: color-mix(in srgb, var(--destructive) 28%, transparent);
  background: color-mix(in srgb, var(--destructive) 8%, transparent);
}
.lw-page--account .lw-account-ledger__pill--expired .lw-account-ledger__pill-value {
  color: #fca5a5;
}
.lw-page--account .lw-account-avatar--upload {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.lw-page--account .lw-account-avatar--upload:hover,
.lw-page--account .lw-account-avatar--upload:focus-within {
  box-shadow: 0 0 0 2px var(--lw-brand), 0 0 20px rgba(255, 255, 255, 0.25);
}
.lw-page--account .lw-account-card--media-partner-linked {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
}
.lw-page--account .lw-account-main__lead {
  color: rgba(161, 161, 170, 0.95);
  max-width: 52ch;
}


.lw-page--account .lw-account-page--admin .lw-account-sidebar__link--admin.is-active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.lw-page--account .lw-account-page--admin .lw-account-sidebar__link--admin.is-active::before {
  display: block;
}
.lw-page--account .lw-account-page--admin .lw-account-sidebar__link--admin.is-active .lw-account-sidebar__icon {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--lw-brand);
}
.lw-page--account .lw-admin-panel-eyebrow {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.lw-page--account .lw-admin-panel-meta {
  margin: 0;
  font-size: 12px;
}
.lw-page--account .lw-account-main .section-card.lw-account-card--admin,
.lw-page--account .lw-account-main .section-card.lw-account-card--promo-admin,
.lw-page--account .lw-account-main .section-card.lw-account-card--admin-users,
.lw-page--account .lw-account-main .section-card.lw-account-card--products-admin,
.lw-page--account .lw-account-main .section-card.lw-admin-categories-shell,
.lw-page--account .lw-account-card--admin,
.lw-page--account .lw-account-card--promo-admin,
.lw-page--account .lw-account-card--admin-users,
.lw-page--account .lw-account-card--products-admin,
.lw-page--account .lw-admin-categories-shell {
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.lw-page--account .lw-admin-dashboard--stats {
  position: relative;
}
.lw-page--account .lw-admin-dashboard--stats::before {
  display: none;
}
.lw-page--account .lw-admin-revenue-stat {
  border-color: rgba(255, 255, 255, 0.06);
  background: #0a0a0a;
}
.lw-page--account .lw-admin-revenue-stat:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.lw-page--account .lw-admin-revenue-stat__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(161, 161, 170, 0.95);
}
.lw-page--account .lw-admin-revenue-stat__value {
  font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.45rem);
  font-weight: 800;
}
.lw-page--account .lw-admin-revenue-stat__value--deposit {
  color: #86efac;
}
.lw-page--account .lw-admin-revenue-stat__value--deposit-all,
.lw-page--account .lw-admin-revenue-stat__value--deposit-all .lw-money,
.lw-page--account .lw-admin-revenue-stat__value--deposit-all .lw-money__amount,
.lw-page--account .lw-admin-revenue-stat__value--deposit-all .lw-money__currency {
  color: var(--lw-brand);
}
.lw-page--account .lw-admin-revenue-panel {
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.lw-page--account .lw-admin-revenue-panel__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.lw-page--account .lw-admin-revenue-panel__title::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--lw-border-hover);
}
.lw-page--account .lw-account-card--admin .lw-topups-table-wrap,
.lw-page--account .lw-account-card--admin .lw-admin-user-table-wrap,
.lw-page--account .lw-admin-users-table-wrap,
.lw-page--account .lw-admin-promo-table-wrap {
  border-color: rgba(255, 255, 255, 0.06);
  background: #0a0a0a;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.lw-page--account .lw-topups-table thead th,
.lw-page--account .lw-admin-users-table thead th,
.lw-page--account .lw-admin-promo-table thead th {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-page--account .lw-topups-table tbody tr:hover td,
.lw-page--account .lw-admin-users-table tbody tr:hover td,
.lw-page--account .lw-admin-promo-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}
.lw-page--account .lw-admin-tier-cell--popular {
  color: var(--lw-brand);
  font-weight: 700;
}
.lw-page--account .lw-admin-money.lw-admin-heat--3,
.lw-page--account .lw-admin-money.lw-admin-heat--4,
.lw-page--account .lw-admin-money.lw-admin-heat--5 {
  color: #86efac;
  font-weight: 700;
}
.lw-page--account .lw-admin-provider--rollypay {
  color: #86efac;
  background: color-mix(in srgb, var(--color-emerald-500) 12%, transparent);
  border-color: color-mix(in srgb, var(--color-emerald-400) 28%, transparent);
}
.lw-page--account .lw-admin-provider--anypay {
  color: var(--lw-brand);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}
.lw-page--account .lw-admin-pager__page--active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--lw-brand);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.12);
}
.lw-page--account .lw-admin-pager__page:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}
.lw-page--account .lw-admin-users-toolbar--premium {
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.lw-page--account .lw-admin-users-toolbar__input {
  border-color: rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  border-radius: 10px;
  min-height: 40px;
}
.lw-page--account .lw-admin-users-toolbar__input:focus {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}
.lw-page--account .lw-admin-users-toolbar__btn {
  min-height: 40px;
  padding: 0 18px;
  border: none;
  border-radius: 10px;
  background: var(--lw-btn-primary-bg);
  color: #0a0a0a;
  font-weight: 700;
  box-shadow: none;
}
.lw-page--account .lw-admin-users-toolbar__btn:hover {
  filter: brightness(1.06);
}
.lw-page--account .lw-admin-users-page-hint {
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  display: inline-block;
}
.lw-page--account .lw-admin-users-open {
  color: var(--lw-brand);
  font-weight: 600;
  transition: color 0.15s ease, filter 0.15s ease;
}
.lw-page--account .lw-admin-users-open:hover {
  color: #e4e4e7;
  filter: brightness(1.08);
}
.lw-page--account .lw-admin-users-table .lw-admin-sort-th.is-active .lw-admin-sort-th__link {
  color: var(--lw-brand);
}
.lw-page--account .lw-admin-promo-toolbar--premium {
  padding: 16px 18px;
  margin: -4px -4px 18px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.15) 100%);
}
.lw-page--account .lw-admin-cta-btn,
.lw-page--account .lw-pm-btn--primary {
  background: var(--lw-btn-primary-bg);
  color: #0a0a0a;
  border: none;
  font-weight: 700;
  box-shadow: none;
}
.lw-page--account .lw-admin-cta-btn:hover,
.lw-page--account .lw-pm-btn--primary:hover {
  filter: brightness(1.06);
}
.lw-page--account .lw-admin-promo-cell--code {
  font-family: "Montserrat", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lw-brand);
}
.lw-page--account .lw-admin-promo-status--active {
  color: #86efac;
  background: color-mix(in srgb, var(--color-emerald-500) 12%, transparent);
  border-color: color-mix(in srgb, var(--color-emerald-400) 28%, transparent);
}
.lw-page--account .lw-admin-promo-status--exhausted {
  color: #fca5a5;
  background: color-mix(in srgb, var(--destructive) 10%, transparent);
  border-color: color-mix(in srgb, var(--destructive) 28%, transparent);
}
.lw-page--account .lw-admin-categories-shell {
  padding: 0;
}
.lw-page--account .lw-admin-categories-grid {
  gap: 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 400px);
  align-items: stretch;
}
.lw-page--account .lw-admin-categories-panel,
.lw-page--account .lw-admin-category-form-panel {
  border: none;
  border-radius: 0;
  background: transparent;
  min-height: 100%;
}
.lw-page--account .lw-admin-categories-panel {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-page--account .lw-admin-categories-panel__head,
.lw-page--account .lw-admin-category-form-panel__head {
  min-height: 48px;
  padding: 16px 18px;
  border-bottom-color: rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.35);
}
.lw-page--account .lw-admin-categories-panel__body {
  padding: 16px 18px 18px;
}
.lw-page--account .lw-admin-category-form__scroll {
  padding: 16px 18px;
  gap: 12px;
}
.lw-page--account .lw-admin-category-form__actions {
  padding: 16px 18px 18px;
}
.lw-page--account .lw-admin-categories-panel__title,
.lw-page--account .lw-admin-category-form-panel__title {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
}
.lw-page--account .lw-admin-category-card {
  border-color: rgba(255, 255, 255, 0.06);
  background: #0a0a0a;
  border-radius: 12px;
}
.lw-page--account .lw-admin-category-card:hover,
.lw-page--account .lw-admin-category-card.is-editing {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}
.lw-page--account .lw-admin-category-card__media {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.lw-page--account .lw-admin-category-card__name {
  font-weight: 700;
}
.lw-page--account .lw-admin-category-card__slug {
  color: rgba(255, 255, 255, 0.65);
}
.lw-page--account .lw-admin-action-btn--primary {
  background: var(--lw-btn-primary-bg);
  color: #0a0a0a;
  border: none;
  font-weight: 700;
}
.lw-page--account .lw-admin-action-btn--secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.lw-page--account .lw-admin-action-btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.lw-page--account .lw-admin-site-form input:focus,
.lw-page--account .lw-admin-site-form select:focus,
.lw-page--account .lw-admin-site-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.lw-page--account .lw-admin-user-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: transparent;
  box-shadow: none;
}
.lw-page--account .lw-admin-user-card--hero {
  position: relative;
  overflow: visible;
}
.lw-page--account .lw-admin-user-card--hero::before {
  display: none;
}
.lw-page--account .lw-admin-user-hero__avatar-img {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.lw-page--account .lw-admin-user-stat {
  border: none;
  background: transparent;
}
.lw-page--account .lw-admin-user-stat:hover {
  border-color: transparent;
}
.lw-page--account .lw-admin-user-card.lw-login-history-card {
  background: transparent;
  box-shadow: none;
}
.lw-page--account .lw-admin-user-card.lw-login-history-card .lw-login-history-scroll {
  background: transparent;
}
.lw-page--account .lw-admin-user-card--history {
  background: transparent;
  box-shadow: none;
}


.lw-page--account .lw-admin-user-card--actions {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.lw-page--account .lw-admin-user-table-scroll,
.lw-page--account .lw-admin-user-table-wrap,
.lw-page--account .lw-admin-user-purchases-wrap {
  background: transparent;
}
.lw-page--account .lw-admin-clear-stats {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.lw-page--account .lw-admin-clear-stats__panel {
  border-color: color-mix(in srgb, var(--destructive) 20%, transparent);
  background: color-mix(in srgb, var(--destructive) 4%, transparent);
  border-radius: 14px;
}
.lw-page--account .lw-admin-clear-stats__btn {
  background: color-mix(in srgb, var(--destructive) 15%, transparent);
  border-color: color-mix(in srgb, var(--destructive) 35%, transparent);
  color: #fca5a5;
  font-weight: 700;
}
.lw-page--account .lw-admin-clear-stats__btn:hover {
  background: color-mix(in srgb, var(--destructive) 22%, transparent);
  border-color: color-mix(in srgb, var(--destructive) 45%, transparent);
}
.lw-page--account .lw-account-card--admin-deposits .lw-admin-dashboard__head--compact {
  padding: 18px 20px 0;
  margin-bottom: 12px;
}
.lw-page--account .lw-admin-seg {
  border-color: rgba(255, 255, 255, 0.06);
  background: #0a0a0a;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 16px;
}
.lw-page--account .lw-admin-seg__btn.is-active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--lw-brand);
}
.lw-page--account .lw-admin-reviews-item {
  border-color: rgba(255, 255, 255, 0.06);
  background: #0a0a0a;
  border-radius: 14px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lw-page--account .lw-admin-reviews-item:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.lw-page--account .lw-admin-reviews-item__product {
  color: var(--lw-brand);
  font-weight: 700;
}
.lw-page--account .lw-admin-promo-status--active,
.lw-page--account .lw-admin-promo-status--exhausted {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lw-page--account .lw-account-card--mp-admin {
  border-color: rgba(255, 255, 255, 0.06);
  background: #121212;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.42);
}
.lw-page--account .lw-mp-admin-stat {
  border-color: rgba(255, 255, 255, 0.06);
  background: #0a0a0a;
}
.lw-page--account .lw-mp-admin-stat:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.lw-page--account .lw-mp-admin-stat__value {
  font-weight: 800;
  color: #fff;
}
.lw-page--account .lw-mp-admin-money--profit {
  color: var(--lw-brand);
}
.lw-page--account .lw-mp-admin-money--payout {
  color: #86efac;
}
.lw-page--account .lw-table-hscroll__viewport {
  scrollbar-color: rgba(255, 255, 255, 0.45) rgba(255, 255, 255, 0.06);
}
.lw-page--account .lw-table-hscroll__viewport::-webkit-scrollbar {
  height: 8px;
}
.lw-page--account .lw-table-hscroll__viewport::-webkit-scrollbar-track {
  margin: 0 4px 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}
.lw-page--account .lw-table-hscroll__viewport::-webkit-scrollbar-thumb {
  background: var(--lw-brand-border);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}
.lw-page--account .lw-table-hscroll__viewport::-webkit-scrollbar-thumb:hover {
  background: var(--lw-brand);
}
@media (max-width: 900px) {
  .lw-page--account .lw-admin-categories-grid {
    grid-template-columns: 1fr;
  }
  .lw-page--account .lw-admin-categories-panel {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}








.lw-page--account .lw-account-card--overview::before,
.lw-page--account .lw-account-card--topups.lw-account-card--ledger::before,
.lw-page--account .lw-account-card--purchases.lw-account-card--ledger::before,
.lw-page--account .lw-admin-dashboard--stats::before {
  display: none;
}


.lw-page--account .lw-account-sidebar__link.is-active {
  background: rgba(255, 255, 255, 0.1);
}
.lw-page--account .lw-account-overview__balance {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
.lw-page--account .lw-account-ledger__summary,
.lw-page--account .lw-account-ledger__summary--purchases,
.lw-page--account .lw-admin-promo-toolbar--premium {
  background: rgba(255, 255, 255, 0.02);
}
.lw-page--account .lw-account-purchase-table {
  background: transparent;
}


.lw-page--account .lw-account-overview__balance .lw-account-btn-topup,
.lw-page--account .lw-account-overview__balance .lw-profile-card__topup,
.lw-page--account .lw-account-btn-topup,
.lw-page--account .lw-profile-card__topup,
.lw-page--account .lw-password-dialog__submit.lw-account-chip-btn,
.lw-page--account .lw-promo-redeem-inline__submit,
.lw-page--account .lw-promo-redeem-submit,
.lw-page--account .lw-admin-users-toolbar__btn,
.lw-page--account .lw-admin-cta-btn,
.lw-page--account .lw-pm-btn--primary,
.lw-page--account .lw-admin-action-btn--primary {
  background: #ececec;
  color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
  filter: none;
}
.lw-page--account .lw-account-overview__balance .lw-account-btn-topup:hover,
.lw-page--account .lw-account-overview__balance .lw-profile-card__topup:hover,
.lw-page--account .lw-account-btn-topup:hover,
.lw-page--account .lw-profile-card__topup:hover,
.lw-page--account .lw-password-dialog__submit.lw-account-chip-btn:hover,
.lw-page--account .lw-promo-redeem-inline__submit:hover,
.lw-page--account .lw-promo-redeem-submit:hover,
.lw-page--account .lw-admin-users-toolbar__btn:hover,
.lw-page--account .lw-admin-cta-btn:hover,
.lw-page--account .lw-pm-btn--primary:hover,
.lw-page--account .lw-admin-action-btn--primary:hover {
  background: #ffffff;
  color: #000;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
  filter: none;
}


.lw-page--account .lw-account-avatar--upload,
.lw-page--account .lw-account-avatar--upload:hover,
.lw-page--account .lw-account-avatar--upload:focus-within {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.lw-page--account .lw-admin-pager__page--active {
  box-shadow: none;
}
