:root {
  color-scheme: dark;
  --bg: #06010f;
  --panel: #11101a;
  --panel-2: #191622;
  --graphite: #232329;
  --lavender: #b8a7f0;
  --violet: #6c2bd9;
  --acid: #d9ff3f;
  --text: #f6f3ff;
  --muted: #a79fb9;
  --line: rgba(184, 167, 240, .18);
  --shadow: 0 24px 80px rgba(108, 43, 217, .25);
}

.game-server-strip {
  width: min(360px, calc(100% - 32px));
  margin: 0;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(25,22,34,.98), rgba(12,8,20,.98));
  box-shadow: 0 18px 50px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.025);
}
.game-server-strip__copy { display: flex; align-items: center; gap: 11px; min-width: 0; }
.game-server-strip__copy .eyebrow { margin: 0 0 3px; font-size: 9px; letter-spacing: .16em; }
.game-server-strip__copy h2 { margin: 0; font-size: 1rem; letter-spacing: -.01em; }
.game-server-strip__dot { width: 9px; height: 9px; flex: 0 0 9px; border-radius: 50%; background: #ff5d6c; box-shadow: 0 0 16px rgba(255,93,108,.7); }
.game-server-strip__dot.online { background: var(--acid); box-shadow: 0 0 20px rgba(217,255,63,.55); }
.game-server-strip__state { display: grid; justify-items: end; gap: 2px; text-align: right; }
.game-server-strip__state strong { color: var(--acid); font-size: .9rem; }
.game-server-strip__state small { color: var(--muted); font-size: .68rem; white-space: nowrap; }
@media (max-width: 620px) {
  .game-server-strip { width: min(360px, 100%); padding: 15px; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(184, 167, 240, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 167, 240, .035) 1px, transparent 1px),
    radial-gradient(circle at 75% 10%, rgba(108, 43, 217, .38), transparent 32rem),
    var(--bg);
  background-size: 96px 96px, 96px 96px, auto, auto;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 36;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(16px, 5vw, 72px);
  background: rgba(6, 1, 15, .76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.version-badge {
  position: fixed;
  z-index: 35;
  top: 90px;
  right: clamp(16px, 5vw, 72px);
  width: min(360px, calc(100% - 32px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 13px 13px 15px;
  border: 1px solid rgba(217, 255, 63, .28);
  border-radius: 12px;
  background: rgba(17, 16, 26, .96);
  box-shadow: 0 18px 58px rgba(0, 0, 0, .44);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease;
}
.version-badge.is-visible { opacity: 1; transform: translateY(0); }
.version-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(217, 255, 63, .58);
}
.version-badge-copy { display: grid; gap: 2px; }
.version-badge-copy strong { font-size: .92rem; }
.version-badge-copy small { color: var(--muted); font-size: .72rem; line-height: 1.35; }
.version-badge button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 1.2rem;
}
.version-badge button:hover { background: rgba(255, 255, 255, .06); color: var(--text); }

.brand {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: 0;
}
.brand span { color: var(--acid); }
.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}
.nav a:hover { color: var(--text); }

.cart-pill, .btn, .filter, .icon-btn {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, .04);
}
.cart-pill {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
}
.cart-pill strong {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--lavender);
  color: #161022;
}

main { overflow: hidden; }
.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 72px clamp(16px, 5vw, 72px) 46px;
}
.hero-copy { max-width: 860px; }
.hero-copy h1 {
  margin: 0;
  font-size: clamp(64px, 13vw, 180px);
  line-height: .78;
  letter-spacing: 0;
  font-weight: 1000;
}
.lead {
  max-width: 650px;
  margin: 30px 0;
  color: #d8d1ea;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}
.eyebrow, .panel-kicker {
  margin: 0 0 14px;
  color: var(--lavender);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}
.btn.primary {
  background: linear-gradient(135deg, var(--lavender), #f4eeff);
  color: #191022;
  border-color: transparent;
  box-shadow: 0 18px 50px rgba(184, 167, 240, .22);
}
.btn.ghost { background: transparent; }
.btn.wide { width: 100%; }

.hero-panel {
  position: relative;
  min-height: 430px;
  padding: 34px;
  border: 1px solid rgba(184, 167, 240, .22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(11, 2, 33, .92), rgba(108, 43, 217, .42)),
    linear-gradient(160deg, transparent 45%, rgba(184, 167, 240, .36));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-panel h2 {
  margin: 80px 0 22px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .9;
  color: var(--lavender);
}
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.chips span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #d9d0ff;
  font-family: ui-monospace, Consolas, monospace;
}
.hero-panel ul, .promise ol { margin: 0; padding-left: 20px; color: #ded7f4; line-height: 1.9; }
.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(255,255,255,.07), transparent);
  transform: translateY(-100%);
  animation: scan 5s linear infinite;
}
@keyframes scan { to { transform: translateY(100%); } }

.section {
  padding: 70px clamp(16px, 5vw, 72px);
}
section[id] { scroll-margin-top: 92px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
h2 { margin: 0; font-size: clamp(34px, 6vw, 74px); line-height: .95; }
.muted { color: var(--muted); }

.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
}
.filter.active {
  background: var(--lavender);
  color: #191022;
  border-color: transparent;
}

.product-grid {
  display: grid;
  gap: 36px;
}
.catalog-group {
  display: grid;
  gap: 16px;
}
.catalog-group + .catalog-group {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.catalog-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.catalog-group-head h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}
.catalog-group-head p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
.crystal-info {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(184, 167, 240, .22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(108, 43, 217, .18), rgba(35, 35, 41, .72));
}
.crystal-info img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}
.crystal-info strong {
  display: block;
  margin-bottom: 10px;
  color: var(--acid);
}
.crystal-info p {
  margin: 0 0 10px;
  color: #ded7f4;
  line-height: 1.55;
}
.crypt-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(184, 167, 240, .18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(35, 35, 41, .8), rgba(11, 4, 23, .64));
}
.crypt-info strong {
  display: block;
  margin-bottom: 8px;
  color: var(--acid);
}
.crypt-info p {
  margin: 0;
  color: #ded7f4;
  line-height: 1.55;
}
.crypt-token-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.crypt-token {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 82px;
  padding: 10px 12px;
  border: 1px solid rgba(184, 167, 240, .16);
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
}
.crypt-token img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .36));
}
.crypt-token small {
  color: var(--muted);
  font-weight: 800;
}
.official-donate-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(184, 167, 240, .18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(35, 35, 41, .82), rgba(11, 4, 23, .66)),
    radial-gradient(circle at 12% 20%, rgba(217, 255, 63, .12), transparent 18rem);
}
.official-donate-icon {
  display: grid;
  place-items: center;
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
}
.official-donate-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .36));
}
.official-donate-info strong {
  display: block;
  margin-bottom: 8px;
  color: var(--acid);
}
.official-donate-info p {
  margin: 0;
  color: #ded7f4;
  line-height: 1.55;
}
.product-grid-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.product-card, .review-card, .contact-block, .promise, .account, .admin-login, .admin-dashboard {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(35, 35, 41, .86), rgba(17, 16, 26, .9));
}
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 286px;
  padding: 18px;
  transition: transform .18s ease, border-color .18s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 167, 240, .5);
}
.product-top { display: flex; justify-content: space-between; gap: 10px; }
.lot-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
}
.lot-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .38));
}
.paid-mod-card .product-top {
  align-items: start;
}
.paid-mod-card .lot-icon {
  width: min(170px, 46vw);
  height: 124px;
  border: 1px solid rgba(184, 167, 240, .2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 70% 20%, rgba(217, 255, 63, .14), transparent 34%),
    linear-gradient(135deg, rgba(108, 43, 217, .32), rgba(6, 1, 15, .62));
}
.paid-mod-card .lot-icon img {
  width: 108px;
  height: 108px;
}
.paid-mod-card h3 {
  margin-top: 18px;
}
.paid-mod-details {
  margin-top: 12px;
  border: 1px solid rgba(184, 167, 240, .16);
  border-radius: 8px;
  background: rgba(6, 1, 15, .36);
}
.paid-mod-details summary {
  padding: 10px 12px;
  color: var(--lavender);
  font-weight: 900;
  cursor: pointer;
}
.paid-mod-info {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(217, 255, 63, .24);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(217, 255, 63, .1), rgba(17, 16, 26, .78));
  color: #f4f1ff;
}
.paid-mod-info > strong {
  color: var(--acid);
  font-size: 15px;
}
.paid-mod-info p {
  margin: 0;
  color: #d9d2ef;
}
.paid-mod-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 12px 12px;
}
.paid-mod-info .paid-mod-feature-grid {
  padding: 0;
}
.paid-mod-feature-group {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(184, 167, 240, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}
.paid-mod-feature-group strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: .04em;
}
.paid-mod-feature-group ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.paid-mod-feature-group li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}
.paid-mod-feature-group li::before {
  content: "↳";
  color: var(--lavender);
  margin-right: 4px;
}
.badge {
  align-self: start;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--acid);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 12px;
}
.product-card h3 { margin: 24px 0 8px; font-size: 25px; }
.bonus { color: var(--lavender); font-weight: 800; }
.crypt-bonus {
  display: grid;
  gap: 8px;
  margin: 2px 0 8px;
}
.crypt-bonus span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #efeaff;
  font-weight: 850;
}
.crypt-bonus img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .32));
}
.product-card p { color: var(--muted); line-height: 1.45; }
.mini-note, .line-note, .cart-alert, .ready-text {
  border: 1px solid rgba(217, 255, 63, .24);
  border-radius: 8px;
  background: rgba(217, 255, 63, .08);
  color: #efff9a;
}
.mini-note {
  margin: 0 0 16px;
  padding: 10px;
  font-size: 13px;
  line-height: 1.35;
}
.line-note {
  margin-top: 8px;
  padding: 8px;
  font-size: 12px;
  line-height: 1.35;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.price { font-size: 26px; font-weight: 950; }

.seo-intro {
  display: grid;
  gap: 14px;
  max-width: 1040px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.seo-intro h2 {
  margin: 0;
  max-width: 860px;
}
.seo-intro p {
  max-width: 900px;
  margin: 0;
  color: #d9d2ef;
  line-height: 1.65;
}
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(184, 167, 240, .2);
  border-radius: 999px;
  background: rgba(184, 167, 240, .08);
  color: var(--lavender);
  font-size: 13px;
  font-weight: 800;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.faq-grid article {
  padding: 18px;
  border: 1px solid rgba(184, 167, 240, .14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(35,35,41,.66), rgba(17,16,26,.72));
}
.faq-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.contact-block, .promise, .account { padding: clamp(20px, 4vw, 34px); }
.feedback-form, .account-form, .checkout, .boost-fields, .admin-login form {
  display: grid;
  gap: 12px;
}
.checkout-section {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(184, 167, 240, .18);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(184, 167, 240, .08), rgba(255,255,255,.025));
}
.checkout-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.checkout-section-title span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(184, 167, 240, .18);
  color: var(--lavender);
  font-size: 13px;
  font-weight: 900;
}
.checkout-section-title strong {
  font-size: 15px;
}
.telegram-help {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 16px;
  padding: 15px;
  border: 1px solid rgba(217, 255, 63, .24);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(217, 255, 63, .07), rgba(184, 167, 240, .05));
}
.telegram-help > div:first-child { display: grid; gap: 5px; }
.telegram-help strong { color: var(--text); font-size: 13px; }
.telegram-help p { margin: 0; color: #c7c0d8; font-size: 12px; line-height: 1.5; }
.telegram-help > .btn { align-self: center; min-height: 38px; padding: 8px 12px; font-size: 11px; }
.oura-help {
  grid-column: 1 / -1;
  padding-top: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}
.oura-help a { flex: 0 0 auto; color: var(--acid); font-weight: 800; text-underline-offset: 3px; }
.promo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.promo-row .btn {
  min-height: 46px;
  white-space: nowrap;
}
.promo-categories {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 1, 15, .32);
}
.promo-categories legend {
  padding: 0 6px;
  color: #d7cfee;
  font-size: 14px;
}
.promo-categories label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.promo-categories input {
  width: auto;
  min-height: auto;
}
.promo-categories p {
  margin: 4px 0 0;
  font-size: 12px;
}
label { display: grid; gap: 8px; color: #d7cfee; font-size: 14px; }
input, textarea, select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(6, 1, 15, .62);
  color: var(--text);
  outline: none;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--lavender); }
.form-note { min-height: 20px; margin: 0; color: var(--lavender); }
.security-note {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(184, 167, 240, .22);
  border-radius: 8px;
  background: rgba(184, 167, 240, .08);
  color: #d9d0ff;
  font-size: 13px;
  line-height: 1.45;
}

.text-link {
  color: var(--lavender);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.reviews-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: reviews-scroll 80s linear infinite;
}
.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}
.review-card { padding: 22px; }
.review-card {
  width: min(420px, 84vw);
  flex: 0 0 auto;
  min-height: 190px;
}
.stars { color: var(--acid); margin-bottom: 14px; }
.review-card p { color: #d9d2ef; line-height: 1.55; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.account {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 24px;
  align-items: start;
}
.account-form .field-label {
  color: #ded7f4;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.account-form input[name="orderId"] {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.orders-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
}
.order-row {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}
.status {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(217, 255, 63, .13);
  color: var(--acid);
}

.dialog-open { overflow: hidden; }
.checkout-success {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 0, 9, .78);
  backdrop-filter: blur(12px);
}
.checkout-success-card {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid rgba(184, 167, 240, .42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 0, rgba(108, 43, 217, .28), transparent 45%),
    #11101a;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .62), inset 0 1px 0 rgba(255, 255, 255, .05);
  animation: checkout-dialog-in .2s ease-out both;
}
.checkout-success-card h2 {
  margin: 8px 42px 12px 0;
  font-size: clamp(1.75rem, 5vw, 2.45rem);
  line-height: 1.05;
}
.checkout-success-copy {
  margin: 0;
  color: #ded7f4;
  line-height: 1.6;
}
.checkout-success-order {
  display: block;
  margin-top: 20px;
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .04em;
}
.checkout-success-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-size: 1.4rem;
}
.checkout-success-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.checkout-success-actions .btn { text-align: center; }
.checkout-success-actions .text-link {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 9px;
  color: var(--lavender);
}
.checkout-success-actions .text-link:hover { color: var(--text); }
.checkout-oura-help { margin-top: 18px; }
@keyframes checkout-dialog-in {
  from { opacity: 0; transform: translateY(12px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.cart-drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  background: #100b18;
  border-left: 1px solid var(--line);
  transform: translateX(105%);
  transition: transform .22s ease;
  overflow-y: auto;
}
.site-footer {
  display: grid;
  grid-template-columns: minmax(190px, .8fr) minmax(320px, 1.35fr) minmax(230px, .8fr);
  align-items: stretch;
  gap: 18px;
  padding: 34px clamp(16px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(184, 167, 240, .08), transparent 36%),
    rgba(6, 1, 15, .72);
}
.site-footer p {
  margin: 8px 0 0;
}
.footer-brand,
.footer-legal,
.footer-links a {
  border: 1px solid rgba(184, 167, 240, .16);
  border-radius: 10px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
}
.footer-brand {
  display: grid;
  align-content: center;
  padding: 18px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.footer-links a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  min-height: 74px;
  align-content: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.footer-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 167, 240, .44);
  background: rgba(184, 167, 240, .08);
}
.footer-links strong {
  color: var(--text);
}
.footer-links span {
  color: var(--lavender);
  font-size: 13px;
}
.footer-legal {
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 18px;
}
.footer-legal span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-legal a {
  color: var(--lavender);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover {
  color: var(--text);
}
.trust-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto;
  padding: clamp(22px, 4vw, 42px);
  display: grid;
  gap: 24px;
  border: 1px solid rgba(184, 167, 240, .2);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(184, 167, 240, .09), rgba(255, 255, 255, .025));
}
.trust-panel h2 { font-size: clamp(30px, 4vw, 48px); }
.trust-signals,
.official-channels { display: grid; gap: 12px; }
.trust-signals { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-signals article,
.official-channels a {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(184, 167, 240, .16);
  border-radius: 12px;
  background: rgba(7, 2, 17, .52);
}
.trust-signals span,
.official-channels span { color: var(--muted); line-height: 1.5; }
.official-channels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.official-channels a {
  min-height: 72px;
  color: var(--text);
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease;
}
.official-channels a:hover { border-color: var(--lavender); transform: translateY(-2px); }
.official-channels a:focus-visible { outline: 2px solid var(--lavender); outline-offset: 3px; }
.cart-drawer.open { transform: translateX(0); }
.scrim {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.scrim.open { opacity: 1; pointer-events: auto; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-head h2 { font-size: 34px; }
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 28px;
}
.cart-lines { display: grid; gap: 10px; }
.cart-alert {
  padding: 12px;
  line-height: 1.45;
}
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
}
.qty { display: flex; align-items: center; gap: 8px; }
.qty button {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  font-size: 20px;
}
.os-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.os-toggle legend {
  grid-column: 1 / -1;
  padding: 0 6px;
  color: #d7cfee;
}
.os-toggle label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}
.os-toggle label:has(input:checked) {
  border-color: rgba(184, 167, 240, .72);
  background: rgba(184, 167, 240, .22);
  color: #fff;
}
.os-toggle input {
  width: auto;
  min-height: auto;
}
.ready-text {
  width: fit-content;
  margin: 0;
  padding: 9px 12px;
}
.mod-access-box {
  display: grid;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  padding: 12px;
  border: 1px solid rgba(184, 167, 240, .22);
  border-radius: 8px;
  background: rgba(184, 167, 240, .08);
}

.admin-shell {
  min-height: 100vh;
  padding: clamp(16px, 5vw, 72px);
}
.admin-login {
  max-width: 460px;
  margin: 8vh auto;
  padding: 28px;
}
.admin-dashboard {
  border: 0;
  background: transparent;
}
.admin-mod-overview {
  margin: 24px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
}
.admin-mod-overview .section-head { margin-bottom: 18px; }
.admin-mod-stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hidden { display: none !important; }
.admin-tabs {
  position: sticky;
  top: 82px;
  z-index: 5;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0;
  padding: 8px;
  border: 1px solid rgba(184, 167, 240, .12);
  border-radius: 999px;
  background: rgba(6, 1, 15, .72);
  backdrop-filter: blur(16px);
}
.admin-tab {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
}
.admin-tab.active {
  background: linear-gradient(135deg, var(--lavender), #f4eeff);
  color: #191022;
}
.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: end;
}
.admin-pane {
  display: none;
}
.admin-pane.active {
  display: block;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.metric {
  padding: 18px;
  border: 1px solid rgba(184, 167, 240, .12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(35,35,41,.62), rgba(17,16,26,.58));
}
.metric strong { display: block; font-size: 30px; }
.admin-danger-zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 107, 122, .28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 107, 122, .1), rgba(17,16,26,.58));
}
.admin-danger-zone p {
  margin: 6px 0 0;
}
.btn.danger {
  border-color: rgba(255, 107, 122, .45);
  background: rgba(255, 107, 122, .13);
  color: #ffb4bd;
}
.btn.danger:hover {
  border-color: rgba(255, 107, 122, .72);
  background: rgba(255, 107, 122, .2);
}
.admin-orders { display: grid; gap: 12px; }
.admin-order {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(184, 167, 240, .12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(35,35,41,.62), rgba(17,16,26,.58));
}
.admin-order select { width: 190px; }
.admin-order.archived {
  opacity: .76;
}
.order-admin-actions {
  display: grid;
  gap: 10px;
  align-content: start;
}
.panel-zone {
  margin-top: 34px;
}
.admin-card {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(184, 167, 240, .12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(35,35,41,.66), rgba(17,16,26,.62)),
    radial-gradient(circle at 100% 0, rgba(108,43,217,.18), transparent 22rem);
}
.admin-card h2 {
  font-size: 26px;
  line-height: 1.1;
}
.paid-mod-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 26px;
}
.paid-mod-stats .metric {
  min-height: 120px;
}
.paid-mod-stats .metric span {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-size: 12px;
}
.paid-mod-stats .metric small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}
.mod-tool-card {
  min-height: 260px;
}
.compact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.admin-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.admin-two.wide {
  grid-template-columns: minmax(280px, .72fr) minmax(460px, 1.28fr);
  align-items: start;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.product-admin-form textarea,
.product-editor textarea {
  min-height: 86px;
}
.product-admin-list {
  max-height: none;
}
.product-editor-list {
  gap: 12px;
}
.product-editor {
  align-items: stretch;
}
.product-editor-main {
  display: grid;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.product-editor-main strong,
.product-editor-main small {
  display: block;
}
.product-editor-actions {
  min-width: 132px;
}
.check-line {
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-line input {
  width: auto;
  min-height: auto;
}
.feature-admin-group {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(184, 167, 240, .12);
  border-radius: 8px;
}
.feature-admin-group h3 {
  margin: 0;
}
.feature-admin-row {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) 1fr;
  gap: 10px;
  align-items: center;
}
.admin-list {
  display: grid;
  gap: 8px;
}
.admin-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(184, 167, 240, .12);
  border-radius: 8px;
  background: rgba(0, 0, 0, .14);
}
.admin-list-row span {
  display: grid;
  gap: 4px;
}
.admin-list-row small {
  color: var(--muted);
}
.paid-account-row {
  align-items: stretch;
}
.inline-hwid-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 8px;
  align-items: center;
}
.inline-hwid-form input {
  min-height: 42px;
}
.admin-list.compact .admin-list-row {
  padding: 8px 0;
  border: 0;
  border-top: 1px solid rgba(184,167,240,.1);
  border-radius: 0;
  background: transparent;
}
.row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: end;
}
.mod-user-table {
  display: grid;
  gap: 0;
  overflow-x: auto;
}
.mod-user-head,
.mod-user-row {
  display: grid;
  grid-template-columns: 70px 1.3fr 1.2fr .7fr .8fr;
  gap: 12px;
  align-items: center;
  min-width: 820px;
  padding: 14px;
}
.mod-user-head {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid rgba(184,167,240,.16);
}
.mod-user-row {
  border-bottom: 1px solid rgba(184,167,240,.1);
}
.mod-user-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}
.mono {
  font-family: ui-monospace, Consolas, monospace;
  color: var(--lavender);
}
.expired,
.banned {
  color: #ff6b7a;
}
.active {
  color: #21e6a0;
}
.mod-user-row mark {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(184,167,240,.12);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}
.link-danger,
.link-muted {
  border: 0;
  background: transparent;
  font-weight: 900;
}
.link-danger {
  color: #ff6b7a;
}
.link-muted {
  color: var(--muted);
}
.mods-page {
  min-height: 100vh;
}
.mods-hero {
  display: grid;
  grid-template-columns: 170px minmax(0, 820px);
  gap: 30px;
  align-items: center;
  padding: 80px clamp(16px, 5vw, 72px) 42px;
}
.mod-icon {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.stats-bar {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.stat-item {
  min-width: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
}
.stat-value {
  font-size: 32px;
  font-weight: 950;
}
.stat-label {
  color: var(--muted);
}
.mod-feature-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.mod-feature-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(35, 35, 41, .86), rgba(17, 16, 26, .9));
}
.mod-feature-card h2 {
  margin-bottom: 14px;
  font-size: 30px;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.feature-row small {
  grid-column: 1 / -1;
  color: var(--lavender);
}
.feature-row.disabled {
  opacity: .5;
}

[hidden] { display: none !important; }

.nav .event-nav {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(217, 255, 63, .34);
  border-radius: 999px;
  color: #eaff91;
  background: rgba(217, 255, 63, .08);
  line-height: 1;
  white-space: nowrap;
  transition: color .16s ease, background .16s ease, border-color .16s ease;
}

.nav .event-nav:hover {
  border-color: #d9ff3f;
  color: #06010f;
  background: #d9ff3f;
}

.nav .event-nav:focus-visible {
  outline: 2px solid #d9ff3f;
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .product-grid-inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .topbar { align-items: stretch; flex-wrap: wrap; }
  .nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero, .split, .account {
    grid-template-columns: 1fr;
  }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-signals { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { min-height: auto; padding-top: 46px; }
  .hero-panel { min-height: 330px; }
  .product-grid-inner, .metric-grid { grid-template-columns: 1fr 1fr; }
  .admin-two, .admin-two.wide, .mod-feature-groups, .form-grid-2 { grid-template-columns: 1fr; }
  .mods-hero { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .catalog-group-head { align-items: start; flex-direction: column; }
  .crystal-info { grid-template-columns: 1fr; }
  .crypt-info { align-items: stretch; flex-direction: column; }
  .crypt-token-row { justify-content: flex-start; }
  .official-donate-info { align-items: flex-start; flex-direction: column; }
  .section-head { align-items: start; flex-direction: column; }
  .version-badge { top: 132px; }
  section[id] { scroll-margin-top: 132px; }
}

@media (max-width: 600px) {
  .trust-signals, .official-channels { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .topbar { padding: 14px; }
  .brand { font-size: 24px; }
  .hero, .section { padding-left: 14px; padding-right: 14px; }
  .product-grid-inner, .metric-grid { grid-template-columns: 1fr; }
  .feature-admin-row, .admin-list-row { grid-template-columns: 1fr; }
  .admin-list-row { align-items: stretch; flex-direction: column; }
  .mods-hero { padding-top: 38px; }
  .mod-icon { width: 120px; height: 120px; border-radius: 24px; }
  .hero-copy h1 { font-size: 64px; }
  .hero-actions .btn { width: 100%; }
  .footer-links { grid-template-columns: 1fr; }
  .promo-row { grid-template-columns: 1fr; }
  .telegram-help { grid-template-columns: 1fr; }
  .telegram-help > .btn { width: 100%; }
  .oura-help { align-items: flex-start; flex-direction: column; }
  .paid-mod-feature-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 250px; }
  .admin-order { grid-template-columns: 1fr; }
  .admin-order select { width: 100%; }
  .admin-danger-zone { align-items: stretch; flex-direction: column; }
  .soul-boost-info { align-items: flex-start; }
  .checkout-success-actions { grid-template-columns: 1fr; }
  .checkout-success-actions .text-link { grid-column: auto; }
  .checkout-success-actions .btn,
  .checkout-success-actions .text-link { width: 100%; }
  .version-badge { left: 14px; right: 14px; width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-success-card { animation: none; }
  .version-badge { transition: none; }
}

.boost-warning {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fca5a5;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.dragon-crystal-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 126, 35, 0.28);
  border-radius: 14px;
  background: rgba(255, 102, 24, 0.07);
}

.dragon-crystal-info img { width: 58px; height: 58px; object-fit: contain; }
.dragon-crystal-info strong { color: #fff; }
.dragon-crystal-info p { margin: 5px 0 0; color: var(--muted); line-height: 1.5; }

.soul-boost-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0 22px;
  padding: 18px 20px;
  border: 1px solid rgba(168, 133, 255, 0.3);
  border-radius: 14px;
  background: rgba(130, 83, 255, 0.08);
}

.soul-boost-info img { width: 58px; height: 58px; object-fit: contain; }
.soul-boost-info strong { color: #fff; }
.soul-boost-info p { margin: 5px 0 0; color: var(--muted); line-height: 1.5; }

.mod-recovery-status {
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 196, 61, 0.28);
  border-radius: 16px;
  background: rgba(255, 196, 61, 0.07);
}
.mod-recovery-status h2 { margin: 4px 0 8px; }
.mod-recovery-status p:last-child { margin: 0; color: var(--muted); }

.boost-fields select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  margin-top: 4px;
}

.language-switcher { position: relative; z-index: 30; }
.language-switcher summary {
  min-height: 44px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(17, 16, 26, .9);
  color: var(--muted);
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
  transition: border-color .18s ease, background-color .18s ease;
}
.language-switcher summary::-webkit-details-marker { display: none; }
.language-switcher summary:hover,
.language-switcher[open] summary { border-color: rgba(184, 167, 240, .42); background: rgba(25, 22, 34, .96); }
.language-switcher summary:focus-visible { outline: 3px solid #8d73ff; outline-offset: 2px; }
.language-switcher summary span { color: var(--muted); font-size: 12px; font-weight: 600; }
.language-switcher summary strong { color: var(--text); font-size: 12px; font-weight: 850; letter-spacing: .05em; }
.language-switcher summary i {
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
}
.language-switcher[open] summary i { transform: rotate(225deg) translate(-1px, -1px); }
.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  padding: 6px;
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #11101a;
  box-shadow: 0 18px 42px rgba(4, 3, 10, .34);
}
.language-menu a {
  min-height: 40px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 9px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease, transform .18s ease;
}
.language-menu a:hover { color: var(--text); background: rgba(255, 255, 255, .055); }
.language-menu a:active { transform: translateY(1px); }
.language-menu a:focus-visible { outline: 2px solid #8d73ff; outline-offset: -2px; }
.language-menu a.active { color: var(--text); background: rgba(184, 167, 240, .1); }
.language-menu a b { width: 6px; height: 6px; border-radius: 50%; background: transparent; }
.language-menu a.active b { background: var(--lavender); box-shadow: 0 0 12px rgba(184, 167, 240, .48); }
.language-menu em { color: var(--lavender); font-style: normal; font-weight: 900; }

.payment-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 18px 0; padding: 0; border: 0; }
.payment-options legend { grid-column: 1 / -1; margin-bottom: 10px; font-weight: 800; }
.payment-option {
  position: relative;
  min-width: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(17, 16, 26, .76);
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.payment-option:hover { border-color: rgba(184, 167, 240, .48); transform: translateY(-1px); }
.payment-option:active { transform: translateY(1px); }
.payment-option:has(input:checked) {
  border-color: var(--lavender);
  background: rgba(108, 43, 217, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 12px 34px rgba(108, 43, 217, .14);
}
.payment-option:has(input:focus-visible) { outline: 3px solid #8d73ff; outline-offset: 3px; }
.payment-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.payment-option-copy { min-width: 0; display: grid; gap: 7px; }
.payment-option-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.payment-option-head strong { font-size: 15px; }
.payment-option-currency {
  padding: 3px 7px;
  border: 1px solid rgba(184, 167, 240, .2);
  border-radius: 999px;
  color: var(--lavender);
  background: rgba(184, 167, 240, .06);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
}
.payment-option small { color: var(--muted); line-height: 1.35; }
.payment-option-check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 167, 240, .38);
  border-radius: 50%;
  color: #10071f;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
}
.payment-option:has(input:checked) .payment-option-check { border-color: var(--lavender); background: var(--lavender); }
.payment-option:has(input:checked) .payment-option-check::after { content: "✓"; }

@media (max-width: 560px) {
  .payment-options { grid-template-columns: 1fr; }
  .payment-option { min-height: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  .language-switcher summary, .language-switcher summary i, .language-menu a, .payment-option { transition: none; }
}
