:root {
  --bg: #070b14;
  --paper: transparent;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --yellow: #67e8f9;
  --yellow-deep: #000a5c;
  --accent-grad: linear-gradient(to bottom, #7dd3fc 0%, #3591f3 42%, #000a5c 100%);
  --card: #10151f;
  --card-2: #141a26;
  --line: rgba(56, 189, 248, 0.16);
  --glow: rgba(53, 145, 243, 0.46);
  --nav-h: 76px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --radius: 20px;
}

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

html,
body {
  min-height: 100%;
  background: var(--bg);
  color: #fff;
  font-family: Onest, Manrope, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  overflow: hidden;
  user-select: none;
}

.app {
  position: relative;
  height: var(--vh, 100dvh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #070b14;
}

.app::before,
.app::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(70px);
}

.app::before {
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: rgba(125, 211, 252, 0.28);
}

.app::after {
  top: 38%;
  left: -90px;
  width: 240px;
  height: 240px;
  background: rgba(0, 10, 92, 0.7);
}

.page,
.nav {
  position: relative;
  z-index: 1;
}

.page {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 calc(var(--nav-h) + var(--safe-bottom));
}

.pad {
  padding: 18px 16px 8px;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

.kicker {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-wave {
  position: relative;
  background: transparent;
  padding: 22px 18px 0;
}

.hero-wave h1,
.hero-wave h2 {
  max-width: 280px;
  margin: 8px 0 14px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-wave p {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.hero-consult-row {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 176px;
}

.hero-consult-copy {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.hero-consult-copy h1,
.hero-consult-copy h2 {
  max-width: 220px;
  margin: 8px 0 10px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-consult-copy p {
  max-width: 220px;
  margin-bottom: 14px;
}

.hero-logo {
  width: 158px;
  height: 158px;
  flex-shrink: 0;
  margin: -8px -12px -8px 0;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(53, 145, 243, 0.45));
  pointer-events: none;
}

.hero-logo.sm {
  width: 92px;
  height: 92px;
  margin: 0 -6px 0 0;
  align-self: flex-start;
}

.hero-compact .hero-consult-row {
  min-height: 0;
  align-items: flex-start;
}

.hero-compact .hero-consult-copy h1 {
  font-size: 26px;
  max-width: 240px;
}

.wave {
  display: block;
  width: calc(100% + 36px);
  height: 28px;
  margin: 10px -18px 4px;
  overflow: visible;
  filter: drop-shadow(0 0 10px rgba(53, 145, 243, 0.55));
}

.sheet {
  min-height: 100%;
  background: transparent;
  color: var(--ink);
}

.sheet-body {
  min-height: calc(var(--vh, 100dvh) - 220px);
  padding: 8px 16px 28px;
  background: transparent;
  color: var(--ink);
}

.sheet-body .section-title {
  color: rgba(255, 255, 255, 0.45);
}

.hero-wave + .sheet-body {
  margin-top: 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title:first-child {
  margin-top: 6px;
}

.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(53, 145, 243, 0.45), transparent);
}

.sheet .section-title {
  color: rgba(255, 255, 255, 0.45);
}

.dark-title {
  margin: 8px 16px 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 18px;
  background: var(--accent-grad);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 24px var(--glow);
}

.btn-main {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--accent-grad);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 28px var(--glow);
}

.btn-main:disabled {
  opacity: 0.5;
}

.token {
  width: var(--size, 64px);
  height: var(--size, 64px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #111;
  box-shadow: 0 0 0 2px rgba(53, 145, 243, 0.35), 0 8px 20px rgba(0, 0, 0, 0.28);
}

.user-review {
  background: transparent !important;
  border: 1px solid var(--line) !important;
}

.token img,
.chip {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
  color: var(--yellow);
  font-size: 16px;
  font-weight: 800;
}

.token.lg {
  --size: 132px;
  margin: 0 auto 14px;
  border: 4px solid var(--yellow);
}

.photo {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 24px;
  flex-shrink: 0;
  background: #111;
}

.photo.wide {
  width: 100%;
  height: 210px;
  border-radius: 32px;
}

.pills {
  display: flex;
  gap: 8px;
  margin: 18px 0 6px;
}

.pill {
  flex: 1;
  padding: 12px 8px;
  border-radius: 18px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.pill b {
  display: block;
  color: var(--yellow);
  font-size: 13px;
}

.popular {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0 18px;
}

.popular button {
  border: 0;
  background: transparent;
  color: #fff;
  text-align: center;
  font: inherit;
}

.popular .token {
  --size: 62px;
  margin: 0 auto 8px;
  border: 3px solid #111;
}

.popular span {
  font-size: 12px;
  font-weight: 700;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px;
  border: 0;
  border-radius: 24px;
  background: #111;
  box-shadow: none;
  color: #fff;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.offer .token {
  --size: 56px;
  border: 2px solid var(--yellow);
  box-shadow: none;
}

.offer-main {
  flex: 1;
  min-width: 0;
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.offer-top b {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 108px;
  padding: 10px 18px;
  border-radius: 16px;
  background: var(--accent-grad);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 8px 20px var(--glow);
}

.offer-cta i {
  font-size: 12px;
}

.offer-specs {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.offer-specs span {
  padding: 4px 9px;
  border-radius: 999px;
  background: #1d1d1d;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
}

.offer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.offer-badge i {
  color: var(--yellow);
}

.offer-body {
  flex: 1;
  min-width: 0;
}

.offer-meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.price {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.cart {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
}

.empty {
  margin: 80px 24px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.sheet .empty {
  color: rgba(255, 255, 255, 0.5);
}

.empty b {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
}

.sheet .empty b {
  color: #fff;
}

.product-hero {
  padding: 16px 16px 0;
}

.product-hero h1 {
  margin-top: 14px;
  color: #fff;
  font-size: 32px;
}

.rating {
  margin-top: 6px;
  color: var(--yellow);
  font-weight: 800;
}

.rating span {
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.sheet .rating span {
  color: rgba(255, 255, 255, 0.55);
}

.plans {
  display: flex;
  gap: 8px;
}

.plan {
  flex: 1;
  padding: 14px 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  color: #fff;
  font: inherit;
  text-align: center;
}

.plan b {
  display: block;
  font-size: 15px;
}

.plan small {
  color: var(--muted);
}

.plan.active {
  border-color: #000a5c;
  background: var(--accent-grad);
  color: #fff;
}

.plan.active small {
  color: rgba(255, 255, 255, 0.78);
}

.instruction {
  padding: 16px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-line;
}

.review {
  padding: 16px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: none;
}

.review-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 13px;
}

.review p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.45;
}

.methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  color: #fff;
  font: inherit;
  text-align: left;
}

.method.active {
  border-color: #000a5c;
  background: var(--accent-grad);
  color: #fff;
}

.method.active small {
  color: rgba(255, 255, 255, 0.78);
}

.method b {
  display: block;
}

.method small {
  color: rgba(255, 255, 255, 0.5);
}

.ico {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 16px var(--glow);
}

.method.active .ico {
  background: #fff;
  color: #000a5c;
  box-shadow: none;
}

.qr {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
  border-radius: 24px;
  background: #fff;
}

.paybox {
  margin: 16px;
  padding: 22px 18px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  color: #fff;
}

.paybox .amount {
  margin: 8px 0 16px;
  font-size: 34px;
  font-weight: 800;
}

.addr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  background: #0a1220;
  border: 1px solid var(--line);
  word-break: break-all;
  font-size: 12px;
  user-select: text;
}

.timer {
  margin-top: 16px;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px;
  padding: 16px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--line);
}

.avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--yellow);
  box-shadow: 0 0 16px var(--glow);
}

.nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(10px + var(--safe-bottom));
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 64px;
  padding: 6px;
  border-radius: 28px;
  background: rgba(10, 18, 36, 0.86);
  border: 1px solid var(--line);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.nav button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font: inherit;
  font-size: 9px;
  font-weight: 700;
}

.nav button i {
  display: block;
  margin: 0 auto 4px;
  font-size: 16px;
}

.nav button svg {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto 3px;
}

.nav button.active {
  color: #070b14;
  background: #fff;
  border-radius: 20px;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: rgba(4, 10, 24, 0.82);
  padding: 24px;
}

.overlay.locked {
  pointer-events: auto;
}

.pay-go {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(var(--nav-h) + var(--safe-bottom) + 10px);
  z-index: 45;
}

.pay-go.hidden {
  display: none;
}

.pay-go button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 18px;
  border: 0;
  border-radius: 18px;
  background: var(--accent-grad);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 28px var(--glow);
}

.pay-go button i {
  font-size: 18px;
}

.modal .btn-main i {
  margin-right: 8px;
}

.modal {
  width: min(100%, 340px);
  padding: 28px 20px;
  border-radius: 24px;
  background: #10182a;
  border: 1px solid var(--line);
  color: #fff;
  text-align: center;
  box-shadow: 0 0 40px rgba(53, 145, 243, 0.18);
}

.spinner {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--yellow);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--nav-h) + 18px);
  z-index: 50;
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-grad);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.hidden {
  display: none !important;
}

.checkout-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.checkout-head b {
  font-size: 22px;
}

.big-price {
  margin: 8px 0 18px;
  font-size: 34px;
  font-weight: 800;
}

.kicker i,
.section-title i {
  margin-right: 0;
  color: var(--yellow);
  font-size: 11px;
}

.btn i {
  margin-right: 6px;
}

.muted-line {
  margin: 0 0 12px;
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 600;
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.45);
}

.search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  outline: none;
}

.feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 20px;
}

.feat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
}

.feat i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 16px var(--glow);
}

.feat b {
  display: block;
  color: #fff;
  font-size: 14px;
}

.feat p {
  margin-top: 2px;
  color: #888;
  font-size: 12px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}

.step b {
  display: block;
  font-size: 14px;
}

.step p {
  margin-top: 2px;
  color: #888;
  font-size: 12px;
}

.empty-state {
  margin: 4px 0 22px;
  padding: 28px 16px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state.compact {
  padding: 20px 14px;
}

.empty-state > i {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 40px;
}

.empty-state b {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 16px;
}

.empty-state p {
  margin-bottom: 16px;
  color: #9a9a9a;
  font-size: 13px;
  line-height: 1.45;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.info-row {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  color: #fff;
  text-align: left;
  font: inherit;
  cursor: default;
}

.info-row > i:not(.row-arrow) {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 14px var(--glow);
}

.info-row > div:not(.ico):not(.token) {
  flex: 1;
  min-width: 0;
}

.row-arrow {
  margin-left: auto;
  background: none;
  color: #c4c4c4;
  font-size: 14px;
  flex-shrink: 0;
}

.info-row b {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.info-row p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.35;
}

.info-row.active {
  background: var(--accent-grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px var(--glow);
}

.info-row.active b,
.info-row.active p,
.info-row.active .fa-circle-check {
  color: #fff;
}

.offer-row .token {
  --size: 48px;
  border: 2px solid var(--yellow);
  box-shadow: none;
}

.offer-row .offer-cta {
  margin-left: auto;
}

.offer-bypass {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 11px !important;
}

.offer-bypass i {
  color: var(--yellow);
}

.country-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.country-grid .info-row {
  cursor: pointer;
}

.country-grid .row-arrow {
  color: #c4c4c4;
}

.timer-card {
  margin-top: 16px;
  padding: 18px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  text-align: center;
}

.timer-card .timer {
  margin: 0;
  color: var(--yellow);
}

.timer-card p {
  margin-top: 6px;
  color: #9a9a9a;
  font-size: 12px;
}

.usdt-qr {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.hero-wave .token.lg {
  margin: 0;
}

.review-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.review-stat {
  flex: 1;
  padding: 14px 8px;
  border-radius: 18px;
  background: #111;
  color: #fff;
  text-align: center;
}

.review-stat b {
  display: block;
  color: var(--yellow);
  font-size: 20px;
}

.review-stat span {
  color: #aaa;
  font-size: 11px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-user .token {
  --size: 36px;
}

.review-user small {
  display: block;
  color: #888;
  font-size: 11px;
}

.settings {
  display: flex;
  flex-direction: column;
}

.setting {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 2px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #fff;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.setting.static {
  cursor: default;
}

.setting .ico-left {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--glow);
}

.setting .grow {
  flex: 1;
  min-width: 0;
}

.setting b {
  display: block;
  font-size: 14px;
}

.setting small {
  display: block;
  margin-top: 2px;
  color: #8a8a8a;
  font-size: 12px;
}

.setting .fa-chevron-right {
  color: #d0d0d0;
}

.lang-switch {
  display: flex;
  padding: 3px;
  border-radius: 999px;
  background: #0a1220;
  border: 1px solid var(--line);
}

.lang-switch button {
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #888;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.lang-switch button.active {
  background: #fff;
  color: #070b14;
}

.switch {
  position: relative;
  width: 44px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #0c1a4a;
}

.switch.on {
  background: var(--accent-grad);
}

.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
}

.switch.on::after {
  left: 21px;
  background: var(--accent-grad);
}

.avatar-fallback {
  display: grid;
  place-items: center;
  background: var(--accent-grad);
  color: #fff;
}

.modal-text {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.45;
}

.offer-specs i {
  margin-right: 4px;
}

.mine-tag {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #111;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
}

.review-form textarea {
  width: 100%;
  min-height: 88px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0a1220;
  color: #fff;
  font: inherit;
  font-size: 13px;
  resize: none;
  outline: none;
}

.stars-pick {
  display: flex;
  gap: 8px;
  color: #ddd;
  font-size: 22px;
}

.stars-pick i {
  cursor: pointer;
}

.stars-pick i.on {
  color: var(--yellow);
}

.catalog-foot {
  margin-top: 18px;
}

.pay-sum {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.pay-sum .offer-cta {
  min-width: 88px;
  padding: 12px 14px;
  font-size: 16px;
}

.method {
  width: 100%;
}

.buy-bar {
  margin-top: 8px;
}

.admin-link {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.admin-input {
  flex: 1;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0a1220;
  color: #fff;
  font: inherit;
  font-size: 13px;
  outline: none;
}

select.admin-input {
  color-scheme: dark;
}

.badge {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge.wait {
  background: #111;
  color: var(--yellow);
}

.badge.ok {
  background: var(--accent-grad);
  color: #fff;
}

.badge.crypto {
  background: #111;
  color: #fff;
}

.admin-url {
  word-break: break-all;
}

.admin-card {
  align-items: flex-start;
}

.cycle-name {
  display: inline-block;
  min-height: 1.15em;
}

.cycle-name.is-out {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.12s ease, transform 0.12s ease;
}

.cycle-name.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.channel-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 4px 0 16px;
  padding: 14px;
  border: 0;
  border-radius: 18px;
  background: var(--accent-grad);
  color: #fff;
  text-align: left;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 10px 28px var(--glow);
}

.channel-banner .ico {
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
}

.channel-banner b {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.channel-banner p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.35;
}

.channel-banner .row-arrow {
  color: rgba(255, 255, 255, 0.7);
}
