* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Migrate light — calm teal (default) */
  --bg: #eef3f1;
  --bg-elev: #ffffff;
  --ink: #10221f;
  --mute: #5a6f6a;
  --line: rgba(16, 34, 31, 0.1);
  --accent: #1a6b5c;
  --accent-ink: #f7fbfa;
  --ok: #2f9e6b;
  --warn: #c9952e;
  --danger: #c45c4a;
  --header: rgba(238, 243, 241, 0.9);
  --nav: rgba(238, 243, 241, 0.96);
  --brand-ink: #0f3d38;
  --brand-mist: #d5e4df;
  --radius: 14px;
  --ease: 0.22s ease;
  --font-body: "Source Sans 3", Manrope, "Segoe UI", sans-serif;
  --font-display: Manrope, "Source Sans 3", sans-serif;
}

[data-theme="light"] {
  --bg: #eef3f1;
  --bg-elev: #ffffff;
  --ink: #10221f;
  --mute: #5a6f6a;
  --line: rgba(16, 34, 31, 0.1);
  --accent: #1a6b5c;
  --accent-ink: #f7fbfa;
  --danger: #c45c4a;
  --header: rgba(238, 243, 241, 0.9);
  --nav: rgba(238, 243, 241, 0.96);
  --brand-ink: #0f3d38;
  --brand-mist: #d5e4df;
}

[data-theme="dark"] {
  --bg: #0c1a18;
  --bg-elev: #152825;
  --ink: #e6f0ed;
  --mute: #8aa39c;
  --line: rgba(230, 240, 237, 0.1);
  --accent: #2a8f7a;
  --accent-ink: #f7fbfa;
  --ok: #5ec4ae;
  --warn: #e0b35a;
  --danger: #e07a6a;
  --header: rgba(12, 26, 24, 0.9);
  --nav: rgba(12, 26, 24, 0.96);
  --brand-ink: #d5e4df;
  --brand-mist: #1a3330;
}

html, body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  min-height: 100%;
  min-height: 100dvh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-x: none;
}

body {
  display: flex;
  justify-content: center;
  padding-bottom: 88px;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  background:
    radial-gradient(ellipse 120% 80% at 10% -10%, rgba(26, 107, 92, 0.14), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(15, 61, 56, 0.08), transparent 50%),
    var(--bg);
  background-attachment: fixed;
  position: relative;
}

[data-theme="dark"] body {
  background:
    radial-gradient(ellipse 120% 80% at 10% -10%, rgba(94, 196, 174, 0.12), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(42, 143, 122, 0.08), transparent 50%),
    var(--bg);
  background-attachment: fixed;
}

.app {
  width: 100%;
  max-width: 420px;
  min-width: 0;
  min-height: 100%;
  min-height: 100dvh;
  position: relative;
  padding-bottom: 72px;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  overflow-x: clip;
}

/* Desktop layout: give more room for key/tariffs UI */
@media (min-width: 900px) {
  .app {
    max-width: 1100px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px 10px;
  background: var(--header);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--brand-ink);
}
.brand span { color: var(--accent); }

.header-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  min-width: 0;
  max-width: 68%;
  overflow: hidden;
}

.balance {
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auth-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--mute);
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  max-width: 88px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.auth-chip.is-ok {
  color: var(--ok);
  border-color: color-mix(in srgb, var(--ok) 40%, var(--line));
}
.auth-chip.is-warn {
  color: var(--warn);
  border-color: color-mix(in srgb, var(--warn) 40%, var(--line));
}
.auth-chip-icon { width: 12px; height: 12px; flex-shrink: 0; }

.auth-banner {
  margin: 12px 16px 0;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 8%, var(--bg-elev));
  display: grid;
  gap: 12px;
}
.auth-banner[hidden] { display: none !important; }
.auth-banner-copy strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.auth-banner-copy p {
  color: var(--mute);
  font-size: 13px;
  line-height: 1.4;
}
.auth-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.auth-banner-actions--secondary {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  opacity: 0.95;
}
.tg-login-mount {
  min-height: 28px;
  max-width: 100%;
  overflow: hidden;
}
.tg-login-mount iframe {
  max-width: 100% !important;
}
.tg-login-fallback {
  color: var(--mute);
  font-size: 13px;
  margin: 0;
  max-width: 280px;
  line-height: 1.4;
}
.auth-card {
  text-align: center;
  padding: 18px 12px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-elev);
}
.auth-card[hidden] { display: none !important; }
.auth-card-ico {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--accent);
}
.auth-card-ico svg { width: 40px; height: 40px; }
.auth-card strong { display: block; margin-bottom: 6px; }
.auth-card p {
  color: var(--mute);
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.verified-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ok);
}
.verified-line svg { width: 14px; height: 14px; }
.verified-line[hidden] { display: none !important; }

.icon-btn, .lang-btn {
  border: none;
  background: transparent;
  color: var(--mute);
  cursor: pointer;
  font-family: inherit;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 14px;
}

.lang { display: flex; gap: 2px; }
.lang-btn {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 6px;
  border-radius: 6px;
}
.lang-btn.active { color: var(--accent); }

.page {
  display: none;
  padding: 16px 14px 28px;
  animation: in 0.28s ease;
  min-width: 0;
  overflow-x: clip;
}
.page.active { display: block; }

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

.page-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.page-lead {
  color: var(--mute);
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.hero {
  position: relative;
  margin: 8px 0 16px;
  padding: 1.75rem 1.15rem 1.85rem;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 1rem;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(15, 61, 56, 0.92) 0%, rgba(26, 107, 92, 0.88) 48%, rgba(20, 80, 72, 0.9) 100%);
  color: #f7fbfa;
  box-shadow: 0 1px 0 rgba(16, 34, 31, 0.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at 15% 90%, rgba(0, 0, 0, 0.18), transparent 45%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

.brand-kicker {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.03em;
  color: #f7fbfa;
  margin-bottom: 10px;
  opacity: 0.95;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 6.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 12px;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: #f7fbfa;
}

.hero > p:not(.brand-kicker) {
  color: rgba(247, 251, 250, 0.82);
  font-size: 15px;
  line-height: 1.45;
  max-width: 34ch;
  margin-bottom: 22px;
}

.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(247, 251, 250, 0.18);
}
.trust-row li {
  font-size: 12px;
  font-weight: 600;
  color: rgba(247, 251, 250, 0.78);
}
.trust-row li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
  background: rgba(247, 251, 250, 0.7);
  vertical-align: middle;
}

.hero-actions, .row-actions, .promo-actions, .key-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--ease), opacity var(--ease), background var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.45; cursor: default; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-sm { padding: 10px 16px; font-size: 13px; }
.hero-actions .btn { flex: 1 1 auto; min-width: 0; }
.hero .btn-primary {
  background: #f7fbfa;
  color: #0f3d38;
}
.hero .btn-ghost {
  color: #f7fbfa;
  border-color: rgba(247, 251, 250, 0.35);
  background: rgba(247, 251, 250, 0.08);
}
.hero .store-link {
  color: #f7fbfa;
  border-color: rgba(247, 251, 250, 0.28);
  background: rgba(247, 251, 250, 0.08);
}

.flow {
  list-style: none;
  margin-top: 36px;
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.flow li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.flow span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
}
.flow strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.flow em {
  display: block;
  font-style: normal;
  color: var(--mute);
  font-size: 13px;
  margin-top: 2px;
}

.howto--home { margin-top: 28px; }
.howto--home h2,
.howto h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 14px;
}
.howto-cards {
  list-style: none;
  display: grid;
  gap: 12px;
}
.howto-cards > li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.howto-cards > li:last-child { border-bottom: none; }
.howto-ico, .howto-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  flex-shrink: 0;
}
.howto-ico svg { width: 20px; height: 20px; }
.howto-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
}
.howto-cards strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.howto-cards em {
  display: block;
  font-style: normal;
  color: var(--mute);
  font-size: 13px;
  line-height: 1.4;
  margin-top: 3px;
}

.trial-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.trial-strip strong {
  font-family: var(--font-display);
  font-size: 16px;
}
.trial-strip p {
  color: var(--mute);
  font-size: 13px;
  margin-top: 2px;
}

#tariffGrid { display: grid; gap: 14px; }

.tariff-card {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.tariff-card.featured .tariff-name::after {
  content: " · hit";
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
}
.tariff-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.tariff-desc {
  color: var(--mute);
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tariff-bullets {
  list-style: none;
  margin-top: 8px;
  display: grid;
  gap: 4px;
}
.tariff-bullets li {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.35;
}
.tariff-bullets li::before {
  content: "· ";
  color: var(--accent);
  font-weight: 700;
}
.balance-hint {
  margin-top: 8px;
  font-size: 12px;
  color: var(--warn);
}
.tariff-selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0 10px;
}
.tariff-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tariff-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: var(--bg-elev);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.tariff-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.tariff-price-big {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.price-old {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--mute);
  text-decoration: line-through;
  margin-right: 6px;
}
.badge-sale {
  color: #c4473a !important;
}
.sale-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(196, 71, 58, 0.12), rgba(232, 168, 56, 0.14));
  border: 1px solid rgba(196, 71, 58, 0.28);
}
.sale-banner[hidden] { display: none !important; }
.sale-banner--compact { margin: 0 0 14px; padding: 12px 14px; }
.sale-banner-badge {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  background: #c4473a;
  border-radius: 12px;
  padding: 8px 10px;
  letter-spacing: -0.02em;
}
.sale-banner-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sale-banner-body strong {
  font-size: 15px;
  font-weight: 700;
}
.sale-banner-body span {
  font-size: 12px;
  color: var(--mute);
}
.sale-banner-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}
.btn-tg-proxy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 12px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, #2aabee, #229ed9);
  border: none;
  box-sizing: border-box;
}
.btn-tg-proxy[hidden] { display: none !important; }
.btn-tg-proxy:active { opacity: 0.92; }
@media (max-width: 520px) {
  .sale-banner { flex-wrap: wrap; }
  .sale-banner-cta { width: 100%; }
}
.tariff-price-note { font-size: 12px; color: var(--mute); }
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-left: 6px;
}
.support-line {
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--mute);
}
.support-line a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-left: 6px;
}

.key-box { padding: 4px 0 8px; }
.key-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.badge-ok { background: rgba(46, 160, 110, 0.18); color: #2ea06e; }
.badge-soon { background: rgba(230, 160, 40, 0.2); color: #d4920a; }
.badge-expired { background: rgba(220, 70, 70, 0.18); color: #d64545; }
.expired-banner {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.expired-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  color: #d64545;
}
.renew-box {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.renew-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-bottom: 10px;
}
.renew-main { margin-bottom: 10px; }
.renew-other {
  padding: 12px;
  border-radius: 12px;
  background: rgba(127, 127, 127, 0.08);
  margin-bottom: 12px;
}
.auto-renew-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
  font-size: 14px;
  cursor: pointer;
}
.auto-renew-row input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.key-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.key-url {
  font-size: 13px;
  word-break: break-all;
  overflow-wrap: anywhere;
  line-height: 1.5;
  color: var(--ink);
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
  max-width: 100%;
}
.key-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 14px;
}
.key-servers {
  list-style: none;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.6;
  margin: 0 0 16px;
}
.key-actions .btn { flex: 1 1 auto; min-width: 0; }

.howto {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.howto h3 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 10px;
}
.howto-steps {
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: howto;
}
.howto-steps > li {
  color: var(--mute);
  font-size: 14px;
  line-height: 1.45;
  padding-left: 28px;
  position: relative;
  counter-increment: howto;
}
.howto-steps > li::before {
  content: counter(howto);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
}
.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.store-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.store-link:hover { border-color: var(--accent); color: var(--accent); }

.menu button {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-ico {
  width: 20px;
  height: 20px;
  color: var(--accent);
  display: inline-grid;
  place-items: center;
}
.menu-ico svg { width: 18px; height: 18px; }

.invite-bar {
  margin-top: 24px;
  padding: 16px 0 4px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}
.invite-bar > div:first-child {
  min-width: 0;
  flex: 1 1 140px;
}
.invite-bar--top {
  margin-top: 0;
  margin-bottom: 8px;
  padding-top: 0;
  border-top: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.invite-bar strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.invite-bar p {
  color: var(--mute);
  font-size: 13px;
  margin-top: 2px;
}
.invite-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.family-offer {
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34, 120, 90, 0.08), transparent);
}
.family-offer strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.family-offer p {
  margin: 0;
  color: var(--mute);
  font-size: 13px;
  line-height: 1.4;
}
.tariff-card.family-highlight {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.promo-row {
  margin: 0 0 12px;
}
.guarantee-line {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.4;
}
.gift-box {
  padding-top: 4px;
}
.share-preview {
  color: var(--mute);
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 12px;
  padding: 10px 12px;
  background: var(--bg-elev);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.guest-hint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.4;
}
.key-ready {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ok);
}

.lead {
  color: var(--mute);
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 16px;
}
.perk-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}
.perk-list li::before {
  content: "— ";
  color: var(--accent);
}
.ref-box {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ref-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ref-link {
  margin: 8px 0 14px;
  font-size: 13px;
  word-break: break-all;
  overflow-wrap: anywhere;
  color: var(--ink);
  line-height: 1.45;
  max-width: 100%;
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}
.stat-row > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.stat-row b {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.stat-row span {
  color: var(--mute);
  font-size: 12px;
}
.ref-list { display: grid; gap: 8px; }
.ref-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.empty-hint {
  color: var(--mute);
  font-size: 14px;
  padding: 12px 0;
}

.profile-top { text-align: center; padding: 12px 0 8px; }
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  overflow: hidden;
}
.avatar.avatar--photo {
  background: transparent;
  padding: 0;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.profile-id { color: var(--mute); font-size: 13px; margin-top: 2px; }
.menu {
  display: grid;
  gap: 0;
  margin-top: 8px;
}
.menu button {
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 0;
  cursor: pointer;
}
.version {
  margin-top: 18px;
  text-align: center;
  color: var(--mute);
  font-size: 12px;
}

.legal-back-btn {
  background: none;
  border: none;
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 0 0 8px;
  cursor: pointer;
}
.legal-meta {
  color: var(--mute);
  font-size: 13px;
  margin: -4px 0 16px;
}
.legal-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 18px 0 6px;
}
.legal-body p {
  color: var(--mute);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 8px;
}
.legal-ext {
  margin-top: 20px;
  padding-bottom: 24px;
}
.legal-ext a {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

.backup-login {
  width: 100%;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.backup-login strong { display: block; font-size: 14px; margin-bottom: 4px; }
.backup-login p { color: var(--mute); font-size: 13px; margin: 0 0 10px; }
.backup-login-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.backup-login-row input,
.backup-card input {
  flex: 1 1 160px;
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
}
.backup-card {
  margin: 18px 0 8px;
  padding: 16px 0 4px;
  border-top: 1px solid var(--line);
}
.backup-card > strong { display: block; font-size: 16px; margin-bottom: 6px; }
.backup-card > p { color: var(--mute); font-size: 13px; line-height: 1.45; margin: 0 0 10px; }
.backup-status { font-weight: 600; font-size: 13px; color: var(--accent); margin: 0 0 10px !important; }
.backup-code-box {
  margin: 0 0 12px;
  padding: 12px;
  border: 1px dashed var(--accent);
  border-radius: 12px;
}
.backup-code-box code {
  display: block;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin: 8px 0 10px;
  word-break: break-all;
}
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 14px 0 6px;
}
.field-hint { color: var(--mute); font-size: 12px; margin: 6px 0 10px; }
#webLogoutBtn { margin-top: 8px; }

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 2px;
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom, 0px));
  background: var(--nav);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  z-index: 50;
  box-sizing: border-box;
}
.nav-item {
  flex: 1 1 0;
  min-width: 0;
  border: none;
  background: none;
  color: var(--mute);
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  padding: 6px 1px;
  cursor: pointer;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.nav-item span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-ico {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}
.nav-item.active { color: var(--accent); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-elev);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 99;
  max-width: min(90vw, 360px);
  width: max-content;
  box-sizing: border-box;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.paid-status {
  margin-bottom: 14px;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.paid-pending { color: var(--accent); }
.paid-ok { color: var(--ok); }
.paid-timeout { color: var(--warn); }

.hidden { display: none !important; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.fs-12 { font-size: 12px; }
.text-muted { color: var(--mute); }
.mb-8 { margin-bottom: 8px; }

@media (max-width: 380px) {
  .auth-chip span { display: none; }
  .auth-chip { padding: 5px; max-width: none; }
  .lang-btn { padding: 4px 4px; }
  .header { padding: 10px 12px 8px; }
  .page { padding: 14px 12px 24px; }
  .auth-banner { margin: 10px 12px 0; }
}

@media (max-width: 420px) {
  .tariff-selects { grid-template-columns: 1fr; }
  .hero-actions, .key-actions, .row-actions, .promo-actions, .invite-actions { flex-direction: column; }
  .hero-actions .btn, .key-actions .btn, .invite-actions .btn, .row-actions .btn { width: 100%; min-width: 0; }
}

@media (min-width: 640px) {
  .app, .bottom-nav { max-width: 560px; }
  .page { padding: 24px 28px 32px; }
  .hero h1 { max-width: 18ch; }
  #tariffGrid { gap: 18px; }
  .header { padding: 16px 20px 12px; }
  .header-meta { gap: 8px; max-width: none; }
}

@media (min-width: 1024px) {
  body {
    background:
      radial-gradient(1200px 640px at 50% -8%, rgba(61, 207, 176, 0.14), transparent 50%),
      radial-gradient(800px 400px at 90% 40%, rgba(61, 207, 176, 0.05), transparent 55%),
      var(--bg);
  }
  .app, .bottom-nav { max-width: 720px; }
  .header { padding: 18px 28px 14px; }
  .nav-item { font-size: 12px; padding: 10px 6px; }
  .tariff-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--bg-elev) 70%, transparent);
  }
  #tariffGrid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .tariff-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

.devices-box { margin-top: 16px; }
.devices-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--card) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
}
.devices-title { margin: 0; font-size: 15px; font-weight: 700; }
.devices-hint { margin: 6px 0 12px; font-size: 12px; color: var(--mute); }
.device-list { display: flex; flex-direction: column; gap: 8px; }
.device-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 8px 0;
  border-top: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}
.device-row:first-child { border-top: 0; }
.device-name { font-size: 13px; font-weight: 600; }
.device-meta { font-size: 11px; color: var(--mute); }
.btn-xs { padding: 4px 10px; font-size: 12px; border-radius: 999px; }

/* Support page — in-app chat */
.support-guest {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.support-guest > p {
  margin: 0;
  color: var(--mute);
  font-size: 14px;
  line-height: 1.45;
}
.support-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--ease), transform var(--ease);
}
.support-channel:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}
.support-channel:active { transform: scale(0.99); }
.support-channel-ico {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
}
.support-channel-ico svg { width: 20px; height: 20px; }
.support-channel-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.support-channel-copy strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}
.support-channel-copy em {
  font-style: normal;
  font-size: 13px;
  color: var(--mute);
}
.support-channel-go { color: var(--mute); font-size: 18px; line-height: 1; }

.support-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 12px;
}
.support-toolbar strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

.support-ticket-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.support-ticket-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color var(--ease);
}
.support-ticket-item:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}
.support-ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.support-ticket-top strong { font-size: 14px; font-weight: 700; }
.support-ticket-status {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ok);
}
.support-ticket-status.is-closed { color: var(--mute); }
.support-ticket-sub {
  font-size: 13px;
  color: var(--ink);
  opacity: 0.9;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.support-ticket-time {
  font-size: 12px;
  color: var(--mute);
}

.support-chat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
}
.support-chat-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.support-chat-meta strong {
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.support-chat-meta em {
  font-style: normal;
  font-size: 12px;
  color: var(--mute);
}

.support-chat-log {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
  max-height: min(52vh, 420px);
  overflow-y: auto;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-elev) 70%, var(--bg));
  -webkit-overflow-scrolling: touch;
}
.support-chat-empty {
  margin: auto;
  padding: 24px 12px;
  text-align: center;
  color: var(--mute);
  font-size: 13px;
  line-height: 1.4;
}

.support-bubble {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}
.support-bubble.is-me {
  align-self: flex-end;
  background: color-mix(in srgb, var(--accent) 18%, var(--bg-elev));
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  border-bottom-right-radius: 6px;
}
.support-bubble.is-them {
  align-self: flex-start;
  border-bottom-left-radius: 6px;
}
.support-bubble-meta {
  font-size: 11px;
  color: var(--mute);
  margin-bottom: 4px;
}
.support-bubble-text {
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.support-composer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 10px;
  align-items: end;
}
.support-composer textarea {
  width: 100%;
  resize: none;
  min-height: 46px;
  max-height: 120px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  font-size: 14px;
  line-height: 1.35;
}
.support-composer textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.support-composer .btn {
  height: 46px;
  padding: 0 16px;
  white-space: nowrap;
}

.support-panel {
  padding: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.support-panel--new {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.support-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.support-field > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mute);
}
.support-control {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  line-height: 1.35;
}
.support-control:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
select.support-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238aa39c' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.support-control--area {
  min-height: 120px;
  resize: vertical;
  line-height: 1.45;
}
.support-submit {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 700;
}

.auth-tg-optional {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.auth-tg-optional > summary {
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  color: var(--mute);
  font-weight: 600;
  user-select: none;
}
.auth-tg-optional > summary::-webkit-details-marker { display: none; }
.auth-tg-optional > summary::after {
  content: " ▾";
  opacity: 0.7;
}
.auth-tg-optional[open] > summary::after { content: " ▴"; }
.auth-tg-optional .auth-banner-actions,
.auth-tg-optional .tg-login-mount,
.auth-tg-optional .btn {
  margin-top: 10px;
}
.support-line .linkish,
button.linkish {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* —— Tap mini-game —— */
.tap-section-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 18px 0 10px;
  color: var(--ink);
}
.tap-energy-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
  margin: 8px 0 16px;
}
.tap-energy-bar i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #2f9e6b);
  border-radius: 999px;
  transition: width 0.2s ease;
}
.tap-mascot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 200px;
  border: none;
  border-radius: 24px;
  background: radial-gradient(circle at 40% 30%, #d5e4df, var(--bg-elev) 70%);
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  touch-action: manipulation;
}
[data-theme="dark"] .tap-mascot {
  background: radial-gradient(circle at 40% 30%, #1a3d38, var(--bg-elev) 70%);
}
.tap-mascot:active .tap-mascot-orb,
.tap-mascot.is-hit .tap-mascot-orb {
  transform: scale(0.92);
}
.tap-mascot-orb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 48px;
  background: linear-gradient(145deg, var(--accent), #0f3d38);
  color: #fff;
  box-shadow: 0 12px 28px rgba(26, 107, 92, 0.35);
  transition: transform 0.12s ease;
}
.tap-mascot-hint {
  font-weight: 700;
  color: var(--mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.tap-shop {
  display: grid;
  gap: 8px;
}
.tap-shop-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--bg-elev);
  border: 1px solid var(--line);
}
.tap-shop-item strong { font-size: 0.95rem; }
.tap-shop-item span { color: var(--mute); font-size: 0.85rem; }
.tap-float {
  position: absolute;
  pointer-events: none;
  font-weight: 800;
  color: var(--accent);
  animation: tapFloat 0.7s ease forwards;
  z-index: 5;
}
@keyframes tapFloat {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(-40px) scale(1.15); }
}

.tap-howto {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}
.tap-howto p { margin: 0; }
.tap-progress-line {
  margin-top: 8px !important;
  font-weight: 700;
  color: var(--accent);
}
.tap-claim-grid {
  display: grid;
  gap: 10px;
}
.tap-claim-card {
  display: grid;
  gap: 4px;
  text-align: left;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}
.tap-claim-card.is-ready {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}
.tap-claim-card.is-locked {
  opacity: 0.72;
  cursor: not-allowed;
}
.tap-claim-card strong { font-size: 1.05rem; }
.tap-claim-price { font-weight: 700; color: var(--accent); }
.tap-claim-sub { font-size: 0.85rem; color: var(--mute); }

.tap-bank {
  margin: 0 0 16px;
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(26,107,92,.16), var(--bg-elev) 55%);
  border: 1px solid var(--line);
  text-align: center;
}
[data-theme="dark"] .tap-bank {
  background: linear-gradient(160deg, rgba(26,107,92,.28), var(--bg-elev) 55%);
}
.tap-bank-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
  font-weight: 700;
}
.tap-bank-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin: 6px 0;
}
.tap-bank-sub { color: var(--mute); font-size: 0.9rem; }
.tap-bank-rate {
  margin: 10px 0 14px;
  font-weight: 700;
  color: var(--ink);
}
.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 14, 12, 0.55);
  display: grid;
  place-items: end center;
  padding: 16px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}
.confirm-overlay[hidden] { display: none !important; }
.confirm-sheet {
  width: min(440px, 100%);
  background: var(--bg-elev);
  color: var(--ink);
  border-radius: 18px 18px 14px 14px;
  border: 1px solid var(--line);
  padding: 18px 16px 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.confirm-sheet h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 8px;
}
.confirm-sheet p {
  margin: 0 0 16px;
  color: var(--mute);
  line-height: 1.45;
  white-space: pre-line;
}
.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
