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

:root {
  --lp-bg: #121214;
  --lp-bg-deep: #0a0a0c;
  --lp-text: #fff;
  --lp-muted: #ffffffd1;
  --lp-dim: #8e8e8f;
  --lp-line: rgba(255, 255, 255, 0.12);
  --lp-coral: #fd7f66;
  --lp-gold: #f4d35e;
  --lp-green: #6db866;
  --lp-grad: linear-gradient(225deg, #fd7f66 2.29%, color-mix(in srgb, #fd7f66, #f4d35e) 49.7%, #f4d35e 68.56%);
  --lp-glass: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  --lp-radius: 16px;
  --lp-max: 1240px;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body.lp {
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #f4d35e;
  color: #121214;
}

body.lp._lock {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.lp-wrap {
  position: relative;
  overflow: hidden;
}

.lp-wrap::before {
  content: "";
  position: fixed;
  inset: -20% auto auto 40%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(253, 127, 102, 0.16), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.lp-wrap::after {
  content: "";
  position: fixed;
  inset: auto 8% -10% auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(244, 211, 94, 0.12), transparent 64%);
  pointer-events: none;
  z-index: 0;
}

.lp-container {
  width: min(var(--lp-max), calc(100% - 32px));
  margin: 0 auto;
}

.lp-glass {
  background-color: #ffffff0a;
  background-image: var(--lp-glass);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  backdrop-filter: blur(42px);
  -webkit-backdrop-filter: blur(42px);
}

.lp-grad-text {
  background: var(--lp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: var(--lp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-btn {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 1000px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 15px;
  overflow: hidden;
  isolation: isolate;
}

.lp-btn span {
  position: relative;
  z-index: 1;
}

.lp-btn--fill {
  color: #000;
  transition: color 0.2s ease;
}

.lp-btn--fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--lp-grad);
  z-index: 0;
}

.lp-btn--ghost {
  color: transparent;
  border: 1.5px solid transparent;
  background:
    linear-gradient(transparent, transparent) padding-box,
    var(--lp-grad) border-box;
}

.lp-btn--ghost::before {
  content: none;
}

.lp-btn--ghost span {
  background: var(--lp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (hover: hover) {
  .lp-btn--fill:hover {
    filter: brightness(1.05);
    color: #fff;
  }

  .lp-btn--fill:hover::after {
    background: #121214;
  }

  .lp-btn--ghost:hover {
    background: var(--lp-grad);
  }

  .lp-btn--ghost:hover span {
    -webkit-text-fill-color: #000;
    background: none;
  }

  .lp-tg__key--fill:hover,
  .lp-task__btn.is-claim:hover,
  .lp-plinko__drop:hover,
  .lp-games-xchg__btn:hover {
    background: #121214;
    color: #fff;
    border: 1.5px solid #fd7f66;
  }
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 0 8px;
  background: transparent;
  border-bottom: 0;
}

.lp-header__bar {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 8px 10px 8px 14px;
  border-radius: 28px;
  background-color: rgba(18, 18, 20, 0.52);
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(42px);
  backdrop-filter: blur(42px);
}

.lp-header__bar::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -28px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(36px);
  background: radial-gradient(circle, #fd7f66 0%, rgba(244, 211, 94, 0.38) 42%, transparent 72%);
  opacity: 0.42;
}

.lp-header.is-scrolled .lp-header__bar {
  background-color: rgba(18, 18, 20, 0.66);
  border-color: rgba(255, 255, 255, 0.16);
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lp-logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1.1vw, 10px);
}

.lp-nav .lp-btn {
  display: none;
}

.lp-nav a:not(.lp-btn) {
  color: var(--lp-muted);
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (hover: hover) {
  .lp-nav a:not(.lp-btn):hover {
    color: #fff;
    background-color: #ffffff0a;
    background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  }
}

.lp-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-burger,
.lp-nav__close {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  background-color: #ffffff0a;
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-hero {
  position: relative;
  z-index: 1;
  padding: 36px 0 28px;
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
}

.lp-kicker {
  color: #fff;
  font-size: clamp(22px, 2.8vw, 35px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: clamp(16px, 2.4vw, 32px);
}

.lp-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.lp-hero h1 .lp-green {
  display: block;
  margin-top: 6px;
  color: var(--lp-green);
  -webkit-text-fill-color: var(--lp-green);
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-visual {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
}

.lp-visual img,
.lp-visual picture {
  width: 100%;
  display: block;
}

.lp-hero__visual {
  max-width: 638px;
  margin-left: auto;
  transform: translateX(37px);
}

.lp-app {
  position: relative;
  width: min(640px, 100%);
  margin-left: auto;
  z-index: 1;
}

.lp-app__frame {
  --lp-bot-width: 360px;
  position: relative;
  z-index: 1;
  width: min(540px, calc(100% - 24px));
  max-height: min(50.7vh, 416px);
  margin: 48px auto;
  padding: 0;
  border-radius: 28px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 211, 94, 0.45) transparent;
  background: rgba(18, 18, 20, 0.52);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.lp-app__sizer {
  width: 100%;
}

.lp-app__screen {
  width: var(--lp-bot-width);
  padding: 16px 16px 20px;
  box-sizing: border-box;
  transform-origin: top left;
}

.lp-hero .lp-app,
.lp-botfeat.lp-app,
.lp-start.lp-app,
.lp-gamesdemo.lp-app,
.lp-feat.lp-app,
.lp-appsdemo.lp-app,
.lp-botdemo.lp-app {
  width: min(448px, 100%);
  margin-left: auto;
  margin-right: auto;
  justify-self: center;
}

.lp-hero .lp-app__frame,
.lp-botfeat .lp-app__frame,
.lp-start .lp-app__frame,
.lp-feat .lp-app__frame,
.lp-appsdemo .lp-app__frame {
  width: min(378px, calc(100% - 24px));
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  max-height: var(--lp-demo-h, none);
  margin: 24px auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.lp-botdemo .lp-app__frame,
.lp-gamesdemo .lp-app__frame {
  width: min(378px, calc(100% - 24px));
  margin: 24px auto;
  overflow: hidden;
}

.lp-gamesdemo .lp-app__frame {
  width: min(460px, calc(100% - 16px));
}

.lp-gamesdemo .lp-app__frame {
  height: calc(var(--lp-demo-h, 0px) * 1.48);
  max-height: calc(var(--lp-demo-h, 0px) * 1.48);
}

.lp-botdemo .lp-app__frame {
  height: calc(var(--lp-demo-h, 0px) * 1.265);
  max-height: calc(var(--lp-demo-h, 0px) * 1.265);
}

.lp-hero .vue-balans-card {
  padding-bottom: 13px;
}

.lp-hero .vue-balans-card__chart-wrap {
  min-height: 55px;
  padding-bottom: 5px;
}

.lp-hero .vue-balans-card__chart {
  height: 55px;
}

.lp-app__frame::-webkit-scrollbar {
  width: 4px;
}

.lp-app__frame::-webkit-scrollbar-thumb {
  background: rgba(244, 211, 94, 0.4);
  border-radius: 99px;
}

.lp-app .app__header {
  padding: 0;
  margin: 0 0 16px;
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
}

.lp-app .app__header-left {
  width: 30%;
  min-height: 70px;
  background: url("../img/bot/border-left.svg") no-repeat center / 100% 100%;
  display: flex;
  padding: 4px 0 4px 12px;
}

.lp-app .app__header-avatar {
  margin: auto 0;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: #ffffff14;
}

.lp-app .app__header-center {
  background: url("../img/bot/border-center.svg") no-repeat center / 100% 100%;
  width: 49%;
  padding: 0 12px;
  margin: 0 -4.5%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 70px;
  z-index: 1;
}

.lp-app .app__header-center p {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.lp-app .app__header-trapeze {
  transform: perspective(195px) rotateX(45deg);
  border: 1px solid #ffffff4d;
  width: 78%;
  max-width: 144px;
  height: 18px;
  border-radius: 5px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.lp-app .app__header-range {
  position: absolute;
  left: -1px;
  top: 0;
  height: 100%;
  border: 1px solid #ffffff4d;
  box-sizing: content-box;
  background: linear-gradient(to right, #fd7f66, #f4d35e, #6db866);
}

.lp-app .app__header-right {
  background: url("../img/bot/border-right.svg") no-repeat center / 100% 100%;
  width: 30%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 12px 0 0;
}

.lp-app .app__header-star {
  margin-right: 7px;
  width: 25px;
  height: 24px;
  flex-shrink: 0;
}

.lp-app .app__header-right p,
.lp-app .app__header-value {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.lp-app .text-gradient {
  background: linear-gradient(225deg, #fd7f66, #f4d35e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-app ._container,
.lp-app .balans__container,
.lp-app .progress__container,
.lp-app .combo__container {
  width: 100%;
  box-sizing: border-box;
}

.lp-app .vue-balans-period-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.lp-app .balans__chart-time {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  white-space: nowrap;
}

.lp-app .balans__chart-time-label {
  line-height: 1.2;
  color: #ffffff80;
  font-size: 12px;
}

.lp-app .balans__chart-period {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  color: #ffffffa6;
  font: inherit;
  font-size: 12px;
  line-height: 1.1;
  min-width: 1.75rem;
  padding: 0.12rem 0.4rem;
  cursor: pointer;
}

.lp-app .balans__chart-period--active {
  color: #f4d35e;
  border-color: #f4d35e8c;
  background: #f4d35e14;
}

.lp-app .vue-balans-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.lp-app .vue-balans-card {
  position: relative;
  border-radius: 18px;
  padding: 12px 10px 8px;
  background: #ffffff0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: visible;
  min-width: 0;
}

.lp-app .vue-balans-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.lp-app .vue-balans-card--rpr::after {
  background: radial-gradient(ellipse at 0% 0%, rgba(109, 184, 102, 0.12) 0%, transparent 65%);
}

.lp-app .vue-balans-card--gram::after {
  background: radial-gradient(ellipse at 100% 0%, rgba(253, 127, 102, 0.12) 0%, transparent 65%);
}

.lp-app .vue-balans-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2px 6px;
  margin-bottom: 6px;
  min-width: 0;
}

.lp-app .vue-balans-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  flex: 0 0 auto;
  max-width: 100%;
}

.lp-app .vue-balans-card__icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.lp-app .vue-balans-card__pnl {
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 2px;
  flex: 1 1 4.75rem;
  min-width: 0;
  max-width: 100%;
  line-height: 1.25;
  text-align: right;
  overflow-wrap: anywhere;
}

.lp-app .vue-balans-card__pnl--up {
  color: #6db866;
}

.lp-app .vue-balans-card__pnl--down {
  color: #ff8b8b;
}

.lp-app .vue-balans-card__pnl-pct {
  opacity: 0.75;
  flex-shrink: 0;
}

.lp-app .vue-balans-card__value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 6px;
  word-break: break-all;
}

.lp-app .vue-balans-card__chart-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 50px;
  overflow: visible;
  cursor: pointer;
}

.lp-app .vue-balans-card__chart {
  display: block;
  width: 100%;
  height: 50px;
  overflow: visible;
  margin: 0 -4px;
}

.lp-app .vue-balans-card__dot {
  pointer-events: none;
}

.lp-app .vue-balans-card__dot[hidden] {
  display: none;
}

.lp-app .vue-balans-legend {
  position: absolute;
  left: 50%;
  top: 2px;
  transform: translate(-50%);
  z-index: 20;
  width: min(100%, 168px);
  padding: 8px 10px;
  border-radius: 12px;
  background: #12141c;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px #00000059;
  pointer-events: none;
  box-sizing: border-box;
}

.lp-app .vue-balans-legend[hidden] {
  display: none;
}

.lp-app .vue-balans-legend__day {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff8c;
}

.lp-app .vue-balans-legend__row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.lp-app .vue-balans-legend__swatch {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.lp-app .vue-balans-legend__swatch--rpr {
  background: linear-gradient(180deg, #7ed67a, #6db866);
}

.lp-app .vue-balans-legend__swatch--gram {
  background: linear-gradient(180deg, #68c5ec, #3d89bf);
}

.lp-app .vue-balans-legend__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 11px;
  color: #ffffffb3;
}

.lp-app .vue-balans-legend__amt {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.lp-app .vue-balans-legend__amt--rpr {
  background: linear-gradient(90deg, #fd7f66, #f4d35e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-app .vue-balans-legend__amt--gram {
  color: #68c5ec;
}

.lp-app .vue-balans-legend__pnl {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.lp-app .vue-balans-legend__pnl-pct {
  margin-left: 4px;
  font-weight: 500;
  opacity: 0.85;
}

.lp-app .vue-balans-legend__pnl--up {
  color: #6db866;
}

.lp-app .vue-balans-legend__pnl--down {
  color: #fd7f66;
}

.lp-app .title-section {
  margin: 0;
  text-transform: uppercase;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  background: linear-gradient(225deg, #fd7f66, #f4d35e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-app .dashboard-progress-bets {
  margin: 4px 0 16px;
}

.lp-app .progress__container {
  position: relative;
  border-radius: 20px;
  padding: 14px 12px 16px;
  background: #ffffff0a;
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: visible;
}

.lp-app .progress__body {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.lp-app .progress__left {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  gap: 8px;
}

.lp-app .vue-dash-progress__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lp-app .vue-dash-progress__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(244, 211, 94, 0.45);
  background: #f4d35e1f;
  color: #f4d35e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.lp-app .progress__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #ffffff85;
}

.lp-app .progress__bar {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  gap: 6px;
  padding-top: 23px;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.lp-app .progress__bar-step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  height: 16px;
  border-radius: 10px;
  background: #292929;
  box-sizing: border-box;
}

.lp-app .progress__bar-step.is-on {
  background: #fa9f63;
}

.lp-app .progress__bar-step-11 {
  position: relative;
}

.lp-app .progress__value {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  padding: 1px 4px;
  border-radius: 100px;
  background: #6db866;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  white-space: nowrap;
  text-shadow: 0 0 4px #000;
}

.lp-app .progress__value::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #6db866;
}

.lp-app .progress__bar-step--label-end .progress__value {
  left: auto;
  right: 0;
  transform: none;
}

.lp-app .progress__bar-step--label-end .progress__value::after {
  left: auto;
  right: 6px;
  transform: none;
}

.lp-app .progress__bar-step--label-start .progress__value {
  left: 0;
  transform: none;
}

.lp-app .progress__bar-step--label-start .progress__value::after {
  left: 6px;
  transform: none;
}

.lp-app .progress__count {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: auto;
  max-width: 120px;
  border-radius: 16px;
  overflow: hidden;
}

.lp-app .progress__count::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(225deg, #fd7f66 0%, #f4d35e 100%);
  filter: blur(50px);
  transform: translateX(-50%);
}

.lp-app .progress__count-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  min-width: 86px;
  gap: 4px;
  padding: 16px 14px;
  border-radius: 16px;
  border: 1px solid #66564a;
  background: radial-gradient(250.58% 143.44% at 0.9% 2.98%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

.lp-app .progress__count-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 41px;
}

.lp-app .progress__count-value [data-lp-streak] {
  background: linear-gradient(225deg, #fd7f66, #f4d35e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-app .progress__count-value--digits-3 {
  font-size: 26px;
}

.lp-app .progress__count-value--digits-4 {
  font-size: 22px;
}

.lp-app .lp-fire {
  width: 0.69em;
  height: 0.84em;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.lp-app .progress__count-text {
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.25;
  color: #fff;
}

.lp-app .vue-combo-glass {
  margin-top: 0;
}

.lp-app .combo__container {
  position: relative;
  border-radius: 20px;
  background: #ffffff0a;
  border: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 16px 12px;
  overflow: hidden;
}

.lp-app .combo__container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(244, 211, 94, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.lp-app .vue-combo-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.lp-app .vue-combo-top__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.lp-app .vue-combo-top__hint {
  font-size: 12px;
  color: #ffffff85;
  line-height: 1.4;
  margin: 0;
}

.lp-app .vue-combo-countdown {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(244, 211, 94, 0.3);
  background: #f4d35e14;
}

.lp-app .vue-combo-countdown__value {
  font-size: 13px;
  font-weight: 700;
  color: #f4d35e;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.lp-app .vue-combo-prizes {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.lp-app .vue-combo-prize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  gap: 4px;
  padding: 5px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #ffffff0d;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffffbf;
  white-space: nowrap;
}

.lp-app .vue-combo-prize img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  flex-shrink: 0;
}

.lp-app .vue-combo-prize [data-lp-prize-stars],
.lp-app .vue-combo-prize [data-lp-prize-gram],
.lp-app .vue-combo-prize [data-lp-prize-rpr] {
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-app .vue-combo-prize--rpr {
  border-color: #fd7f6640;
  color: #ffc8aae6;
}

.lp-app .vue-combo-kit {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lp-app .vue-combo-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lp-app .vue-combo-card:not(.combo__card--locked):not(.vue-combo-card--revealed) {
  cursor: pointer;
}

.lp-app .vue-combo-card:not(.combo__card--locked):not(.vue-combo-card--revealed):active {
  transform: scale(0.95);
}

.lp-app .vue-combo-card--revealed {
  border-color: #f4d35e59;
  box-shadow: 0 0 18px #f4d35e2e;
}

.lp-app .combo__card--locked .vue-combo-cover {
  cursor: not-allowed;
  opacity: 0.65;
}

.lp-app .vue-combo-card .combo__card-body {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lp-app .combo__card-reveal {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 6px;
  pointer-events: none;
}

.lp-app .combo__card-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.lp-app .combo__card-icon[hidden] {
  display: none;
}

.lp-app .combo__card-value {
  max-width: 100%;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}

.lp-app .vue-combo-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: top left;
}

.lp-app .vue-combo-cover picture {
  display: block;
  width: 100%;
  height: 100%;
}

.lp-app .vue-combo-cover img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.lp-app .vue-combo-cover--hidden {
  opacity: 0;
  transform: rotate(-30deg) translate(-40%, -50%) scale(0.6);
  pointer-events: none;
}

.lp-app .vue-combo-cover__tap {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f4d35e2e;
  border: 1px solid rgba(244, 211, 94, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  animation: lp-combo-pulse 2s ease-in-out infinite;
}

.lp-app .vue-combo-cover__tap img {
  width: 10px;
  height: 12px;
  max-width: none;
  object-fit: contain;
}

@keyframes lp-combo-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }
}

.lp-daily[hidden] {
  display: none;
}

.lp-daily {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lp-daily__backdrop {
  position: absolute;
  inset: 0;
  background: #000000b8;
}

.lp-daily__sheet {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100% - 16px));
  max-height: min(92vh, 820px);
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 12px auto 16px;
  padding: 20px 20px 24px;
  border-radius: 24px 24px 20px 20px;
  background: #121214f5;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.45);
}

.lp-daily__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #ffffffb3;
}

.lp-daily__title {
  margin: 0;
  padding-top: 8px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 25.5px;
  background: linear-gradient(225deg, #fd7f66, #f4d35e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-daily__img {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  line-height: 0;
}

.lp-daily__img img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-daily__desc {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}

.lp-daily__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 86px));
  justify-content: center;
  justify-items: stretch;
  gap: 12px;
  width: 100%;
}

.lp-daily__card {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(250.58% 143.44% at 0.9% 2.98%, #ffffff0d, #fff0);
}

.lp-daily__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  min-height: 118px;
  padding: 20px 12px;
  border-radius: 16px;
  border: 1px solid #5a5a5c;
}

.lp-daily__card-title {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
}

.lp-daily__card-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 4px;
  object-fit: contain;
}

.lp-daily__card-value {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
}

.lp-daily__card.is-today {
  overflow: visible;
}

.lp-daily__card.is-today .lp-daily__card-body {
  border: 2px solid #f4d35e;
  background: #131313eb;
}

.lp-daily__card.is-today::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #6db866, #6db86673 42%, #6db86600 72%);
  filter: blur(18px);
  pointer-events: none;
}

.lp-daily__card.is-today .lp-daily__card-title,
.lp-daily__card.is-today .lp-daily__card-value {
  background: linear-gradient(225deg, #fd7f66, #f4d35e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-daily__card.is-final {
  grid-column: 3 / 5;
  isolation: isolate;
}

.lp-daily__card.is-final .lp-daily__card-body {
  min-height: 118px;
}

.lp-daily__card.is-final::before,
.lp-daily__card.is-final::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.72;
  pointer-events: none;
}

.lp-daily__card.is-final::before {
  left: 12px;
  bottom: 12px;
  background: radial-gradient(circle, #fd7f66, #f4d35e 38%, #f4d35e00 72%);
}

.lp-daily__card.is-final::after {
  right: 12px;
  top: 12px;
  background: radial-gradient(circle, #6db866, #6db8666b 40%, #6db86600 72%);
}

.lp-daily__card-body {
  position: relative;
  z-index: 1;
}

.lp-daily__claim {
  display: flex;
  align-self: center;
  width: auto;
  min-width: 180px;
  justify-content: center;
  min-height: 48px;
  padding-left: 16px;
  padding-right: 16px;
}

@media (max-width: 430px) {
  .lp-daily__sheet {
    gap: 18px;
    padding: 15px 15px 20px;
  }

  .lp-daily__grid {
    grid-template-columns: repeat(4, minmax(64px, 1fr));
    gap: 9px;
  }

  .lp-daily__card-body {
    min-height: 104px;
    padding: 15px 8px;
  }

  .lp-daily__card-title {
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 16px;
  }

  .lp-daily__card-value {
    font-size: 12px;
    line-height: 16px;
  }

  .lp-daily__desc {
    font-size: 12px;
    line-height: 16px;
  }
}

.lp-stats {
  position: relative;
  z-index: 1;
  padding: 8px 0 56px;
}

.lp-stats__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.lp-stat {
  position: relative;
  overflow: hidden;
  padding: 20px 16px 18px;
  text-align: center;
  border-radius: 20px;
  background: #ffffff0a;
  border: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.lp-stat::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(244, 211, 94, 0.1) 0%, transparent 62%);
}

.lp-stat--gram::after {
  background: radial-gradient(ellipse at 0% 0%, rgba(104, 197, 236, 0.14) 0%, transparent 65%);
}

.lp-stat--rpr::after,
.lp-stat--bonus::after {
  background: radial-gradient(ellipse at 0% 0%, rgba(109, 184, 102, 0.14) 0%, transparent 65%);
}

.lp-stat--bonus::after {
  background: radial-gradient(ellipse at 50% 0%, rgba(253, 127, 102, 0.12) 0%, transparent 65%);
}

.lp-stat strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  margin-bottom: 6px;
}

.lp-token-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 4px;
}

.lp-tokname {
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
  white-space: nowrap;
  vertical-align: middle;
}

.lp-tokname img {
  width: 1em;
  height: 1em;
  object-fit: contain;
  flex-shrink: 0;
}

.lp-botfeat__item h3 .lp-tokname img,
.lp-faq__q .lp-tokname img {
  width: 18px;
  height: 18px;
}

.lp-stat span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #ffffff85;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-section {
  position: relative;
  z-index: 1;
  padding: 28px 0 72px;
}

.lp-apps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.lp-about.lp-section {
  padding-left: 0;
  padding-right: 0;
}

.lp-about__layout {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding-left: max(16px, calc((100% - var(--lp-max)) / 2));
}

.lp-about__copy {
  display: grid;
  gap: 16px;
  padding-top: 4px;
}

.lp-about__copy .lp-botfeat__item {
  cursor: default;
}

.lp-about__chart {
  position: relative;
  display: grid;
  gap: 12px;
  min-width: 0;
  width: 92%;
  max-width: 92%;
  justify-self: start;
}

.lp-about .lp-trade-chart__head {
  position: static;
  z-index: 2;
  padding: 0;
}

.lp-about .lp-trade-chart__pair {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 600;
  gap: 10px;
}

.lp-about .lp-trade-chart__pair img {
  width: 32px;
  height: 32px;
}

.lp-about .lp-trade-chart__plot {
  overflow: hidden;
}

.lp-trade .lp-app__screen {
  display: grid;
  gap: 12px;
}

.lp-trade__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 16px 12px 18px;
  display: grid;
  gap: 12px;
  box-sizing: border-box;
}

.lp-trade .vue-trade-glass {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  border-radius: 16px;
  box-sizing: border-box;
  background-color: #ffffff0a;
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(42px);
  backdrop-filter: blur(42px);
}

.lp-trade .vue-trade-glass::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 9px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(35px);
  background: radial-gradient(circle, #6db866 0%, rgba(109, 184, 102, 0.42) 40%, rgba(109, 184, 102, 0) 72%);
}

.lp-trade .vue-trade-glass--switch {
  padding: 3px;
}

.lp-trade .vue-trade-glass--switch::after {
  width: 56px;
  height: 56px;
  opacity: 0.7;
}

.lp-trade .vue-trade-glass--chart {
  padding: 12px 10px 8px;
}

.lp-trade .vue-trade-glass--chart::after {
  width: 100px;
  height: 100px;
  opacity: 0.55;
}

.lp-trade-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.lp-trade-switch__pill {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: #ffffff1a;
  border: 1px solid rgba(244, 211, 94, 0.28);
  transition: transform 0.22s ease;
  pointer-events: none;
}

.lp-trade-switch.is-gram .lp-trade-switch__pill {
  transform: translateX(100%);
}

.lp-trade-switch__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 10px 8px;
  border-radius: 999px;
  color: #ffdca0b8;
  font-weight: 600;
  font-size: 14px;
}

.lp-trade-switch__btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.lp-trade-switch__btn.is-active {
  color: #fff;
  background: linear-gradient(64deg, #f4d35e 0%, #fd7f66 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-trade-switch__btn.is-active img {
  -webkit-text-fill-color: unset;
}

.lp-trade-chart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 4px 8px;
}

.lp-trade-chart__pair {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

.lp-trade-chart__pair img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: contain;
}

.lp-trade-chart__quote {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.lp-trade-chart__quote strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.lp-trade-chart__pnl {
  font-size: 12px;
  font-weight: 600;
}

.lp-trade-chart__pnl.is-up {
  color: #6db866;
}

.lp-trade-chart__pnl.is-down {
  color: #fd7f66;
}

.lp-trade-chart__plot {
  position: relative;
  height: 470px;
  background: #0a0e14;
  overflow: hidden;
}

.lp-trade-chart__iframe {
  display: block;
  width: 100%;
  height: 470px;
  border: 0;
  background: #0a0e14;
}

.lp-trade-chart__wait {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #0a0e14;
  color: #ffffff85;
  font-size: 13px;
  pointer-events: none;
}

.lp-trade-chart__wait[hidden] {
  display: none;
}

.lp-trade-community {
  padding: 12px 12px 14px;
}

.lp-trade-community__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.lp-trade-community__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
}

.lp-trade-community__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: contain;
}

.lp-trade-community__votes {
  margin-top: 4px;
  color: #ffffff85;
  font-size: 12px;
}

.lp-trade-community__nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.lp-trade-community__arrow {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #ffffff14;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-trade-community__dots {
  display: inline-flex;
  gap: 4px;
}

.lp-trade-community__dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff3d;
  font-style: normal;
  cursor: pointer;
}

.lp-trade-community__dots i.is-on {
  background: #f4d35e;
}

.lp-trade-community__slides {
  min-height: 248px;
}

.lp-trade-community__slide[hidden] {
  display: none;
}

.lp-trade-range {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.lp-trade-range__side {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.lp-trade-range__side.is-up {
  color: #6db866;
}

.lp-trade-range__side.is-down {
  color: #fd7f66;
}

.lp-trade-range__track {
  display: flex;
  height: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #ffffff12;
}

.lp-trade-range__inc,
.lp-trade-range__dec {
  display: block;
  height: 100%;
}

.lp-trade-range__inc {
  border-radius: 10px 0 0 10px;
  background: radial-gradient(188.65% 275.93% at 0.9% 2.98%, rgba(109, 184, 102, 0.7) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.lp-trade-range__dec {
  border-radius: 0 10px 10px 0;
  background: radial-gradient(380.4% 305.12% at 0.9% 2.98%, rgba(253, 127, 102, 0.6) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.lp-trade-table {
  display: grid;
  gap: 8px;
}

.lp-trade-table__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 0.8fr;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #ffffffd1;
}

.lp-trade-table__row.is-head {
  color: #8e8e8f;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lp-trade-table__row span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-width: 0;
}

.lp-trade-table__row .is-up {
  color: #6db866;
}

.lp-trade-table__row .is-down {
  color: #fd7f66;
}

.lp-trade-tri {
  width: 10px;
  height: 8px;
  flex-shrink: 0;
}

.lp-trade-donut {
  width: 180px;
  height: 180px;
  margin: 0 auto 10px;
}

.lp-trade-donut svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lp-copy {
  color: var(--lp-muted);
  font-size: 16px;
  max-width: 52ch;
}

.lp-card--row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 0;
}

.lp-card__icon-img {
  flex: 0 0 95px;
  width: 95px;
}

.lp-card__shot {
  margin-top: auto;
}

.lp-apps__visual {
  position: relative;
  max-width: 487px;
  margin-left: auto;
}

.lp-apps__bg {
  width: 100%;
  display: block;
}

.lp-apps__phones {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 24px;
}

.lp-apps__phones img {
  width: auto;
  max-width: 212px;
  object-fit: contain;
}

.lp-apps__phones img:first-child {
  align-self: flex-end;
}

.lp-apps__phones img:last-child {
  align-self: flex-start;
}

.lp-botfeat__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
}

.lp-botfeat__grid.lp-games__grid {
  grid-template-columns: minmax(320px, 1.15fr) minmax(260px, 0.95fr);
  align-items: stretch;
}

.lp-botfeat__copy {
  display: grid;
  gap: 16px;
}

.lp-botfeat__copy .lp-hero__actions {
  margin-top: 4px;
}

.lp-botfeat__list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.lp-botfeat__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  width: 100%;
  text-align: left;
  padding: 16px 16px 16px 14px;
  border-radius: 16px;
  background: #ffffff0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lp-botfeat__item h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.lp-botfeat__item p {
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.45;
}

.lp-botfeat__item p a {
  color: var(--lp-gold);
}

.lp-botfeat__num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #f4d35e;
  padding-top: 2px;
}

.lp-botfeat__item.is-on {
  background: #ffffff12;
  border-color: rgba(244, 211, 94, 0.35);
}

.lp-botfeat.lp-app {
  width: min(448px, 100%);
}

.lp-botfeat .lp-app__frame {
  margin: 24px auto 8px;
}

.lp-botfeat__loader {
  width: min(322px, calc(100% - 80px));
  height: 3px;
  margin: 0 auto 12px;
  border-radius: 99px;
  background: #ffffff14;
  overflow: hidden;
}

.lp-botfeat__loader-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--lp-grad);
  transform-origin: left center;
}

.lp-botfeat__loader-bar.is-run {
  animation: lp-botfeat-load 10s linear forwards;
}

@keyframes lp-botfeat-load {
  from { width: 0; }
  to { width: 100%; }
}

.lp-botfeat__panel[hidden] {
  display: none;
}

.lp-start.lp-app {
  width: min(448px, 100%);
}

.lp-start .lp-app__frame {
  margin: 24px auto;
}

.lp-start__panel[hidden] {
  display: none;
}

.lp-start .vue-balans-cards {
  margin-top: 8px;
}

.lp-start-call {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.lp-start-call__pair {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background-color: #ffffff0a;
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-start-call__pair > img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.lp-start-call__pair strong {
  display: block;
  font-size: 16px;
}

.lp-start-call__pair span {
  color: #ffffff85;
  font-size: 12px;
}

.lp-start-call__keys {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lp-start-call__btn {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-radius: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lp-start-call__btn--up {
  color: #fff;
  background: #6db866;
}

.lp-start-call__btn--down {
  color: #fff;
  background: #fd7f66;
}

.lp-gamesdemo.lp-app {
  width: min(520px, 100%);
}

.lp-gamesdemo .lp-app__sizer {
  height: 100%;
  overflow: hidden;
}

.lp-gamesdemo .lp-app__frame {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.lp-gamesdemo .lp-app__screen {
  --lp-bot-width: 430px;
  width: 430px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 10px 12px 8px;
  box-sizing: border-box;
  background: transparent;
}

.lp-games {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 8px;
}

.lp-games__tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #545456;
}

.lp-games__indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(250.58% 143.44% at 0.9% 2.98%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  transition: left 0.3s ease, width 0.3s ease;
}

.lp-games__tab {
  position: relative;
  z-index: 1;
  padding: 12px 8px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

.lp-games__tab:not(.is-on) {
  color: #8e8e8f;
}

.lp-games__panel {
  min-width: 0;
  min-height: 0;
  width: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 6px;
}

.lp-games__panel[data-lp-games-panel="plinko"] {
  grid-template-rows: auto minmax(0, 1fr);
}

.lp-plinko__play {
  min-width: 0;
  min-height: 0;
  width: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  background: transparent;
}

.lp-games__panel[hidden] {
  display: none;
}

.lp-plinko__board {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  background: transparent;
  border-top: 2px solid #f6bf60;
}

.lp-plinko__board canvas {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.lp-plinko__notes {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 2px;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.lp-plinko__note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  max-width: none;
  aspect-ratio: 30 / 34;
  min-height: 28px;
  padding: 0 1px;
  border-radius: 5px;
  border-bottom: solid 3px #0a0;
  background: #155217;
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
  word-break: keep-all;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  box-sizing: border-box;
}

.lp-plinko__note:nth-child(n + 4):nth-child(-n + 10) {
  font-size: 9px;
  letter-spacing: -0.045em;
}

.lp-plinko__note:nth-child(1),
.lp-plinko__note:nth-child(13) { background: #073608; }
.lp-plinko__note:nth-child(2),
.lp-plinko__note:nth-child(12) { background: #0c3d0d; }
.lp-plinko__note:nth-child(3),
.lp-plinko__note:nth-child(11) { background: #104712; }
.lp-plinko__note:nth-child(4),
.lp-plinko__note:nth-child(10) { background: #155217; }
.lp-plinko__note:nth-child(5),
.lp-plinko__note:nth-child(9) { background: #1d631f; }
.lp-plinko__note:nth-child(6),
.lp-plinko__note:nth-child(8) { background: #267328; border-color: #3a0; }
.lp-plinko__note:nth-child(7) { background: #328c35; border-color: #4a0; }

.lp-plinko__note[data-pressed="true"] {
  animation: lp-plinko-press 0.5s;
}

@keyframes lp-plinko-press {
  50% { border-bottom-width: 0; }
}

.lp-plinko__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  font-size: 11px;
}

.lp-plinko__side {
  display: flex;
  align-items: center;
  min-width: 0;
  font-family: "Space Grotesk", sans-serif;
}

.lp-plinko__metric {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  min-width: 0;
  max-width: 100%;
  font-size: 2.2em;
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
}

.lp-plinko__metric b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.lp-plinko__metric img {
  width: 0.82em;
  height: 0.82em;
  flex-shrink: 0;
}

.lp-plinko__side--stars {
  justify-content: flex-start;
}

.lp-plinko__side--stars .lp-plinko__metric {
  color: rgba(255, 255, 255, 0.22);
}

.lp-plinko__side--stars img {
  filter: none;
}

.lp-plinko__side--gram {
  justify-content: flex-end;
}

.lp-plinko__side--gram .lp-plinko__metric {
  color: #fff;
  justify-content: flex-end;
}

.lp-plinko__side--rpr {
  justify-content: flex-end;
  color: #fff;
}

.lp-games__balans {
  display: none;
}

.lp-games-xchg {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}

.lp-games-xchg__rate {
  margin: 0;
  color: #8e8e8f;
  font-size: 12px;
  text-align: center;
}

.lp-games-xchg__row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.lp-games-xchg__input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #00000059;
  color: #fff;
  font: inherit;
  font-size: 14px;
}

.lp-games-xchg__pcts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: 92px;
  flex-shrink: 0;
}

.lp-games-xchg__pcts button {
  padding: 4px 0;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #ffffff0f;
  color: #ffffffe0;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.lp-games-xchg__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  color: #c8d4e0;
  font-size: 13px;
}

.lp-games-xchg__preview b {
  color: #f4d35e;
  font-variant-numeric: tabular-nums;
}

.lp-games-xchg__preview img {
  width: 14px;
  height: 14px;
}

.lp-games-xchg__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--lp-grad);
  color: #111;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, filter 0.12s ease, transform 0.12s ease;
}

.lp-games-xchg__btn:active:not(:disabled) {
  filter: brightness(0.78);
  transform: translateY(1px);
}

.lp-games-xchg__btn:disabled {
  opacity: 0.55;
  cursor: default;
}

.lp-plinko__drop-wrap {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.lp-plinko__drop {
  flex-shrink: 0;
  width: 7em;
  min-width: 7em;
  padding: 1em;
  border: 0;
  border-radius: 10px;
  background: var(--lp-grad);
  color: #000;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lp-plinko__drop:disabled {
  opacity: 0.55;
  cursor: default;
}

.lp-starcount {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-app .app__header-right .lp-starcount,
.lp-app .app__header-right {
  gap: 0;
}

.lp-games__panel[data-lp-games-panel="wheel"] {
  grid-template-rows: auto auto;
  align-content: start;
}

.lp-fortuna {
  min-height: 0;
  height: auto;
  display: grid;
  grid-template-rows: auto auto;
  align-items: start;
  overflow: hidden;
}

.lp-fortuna__wheel {
  position: relative;
  height: 237px;
  width: 100%;
  overflow: hidden;
}

.lp-fortuna__arrow {
  position: absolute;
  z-index: 3;
  top: 45px;
  left: 50%;
  width: 20px;
  max-width: 20px;
  transform: translateX(-50%);
}

.lp-fortuna__arrow img {
  display: block;
  width: 100%;
  height: auto;
}

.lp-fortuna__shadow {
  position: absolute;
  z-index: 0;
  top: 28px;
  left: 50%;
  width: 140%;
  height: 100%;
  border-radius: 100% 100% 0 0;
  transform: translateX(-50%);
  box-shadow: 0 -5px 5px #ffffff26;
}

.lp-fortuna__list {
  --size: 1100px;
  --carousel-radius: calc(0.5 * var(--size));
  --item-radius: calc(0.185 * var(--carousel-radius));
  --pi: 3.1416;
  --n: 29;
  --delta: -1.79;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: var(--size);
  height: var(--size);
  transform: translateX(-50%);
}

.lp-fortuna__item {
  --index: 1;
  --angle: calc(var(--delta) + 2 * var(--pi) * var(--index) / var(--n));
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  transform: translate(calc(-50% + (var(--carousel-radius) - var(--item-radius)) * cos(var(--angle)))) translateY(calc(-50% + (var(--carousel-radius) - var(--item-radius)) * sin(var(--angle)))) rotate(calc(90deg + 180deg * var(--angle) / var(--pi)));
}

.lp-fortuna__item::before {
  content: "";
  position: absolute;
  inset: -3px -4px;
  z-index: -1;
  border-radius: 12px;
  border: 1px solid #545455;
  background: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  transform: perspective(180px) rotateX(-18deg);
}

.lp-fortuna__item.is-on::before,
.lp-fortuna__item.active::before {
  border: 2px solid #fd7f66;
  background: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
}

.lp-fortuna__value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.lp-fortuna__item img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.lp-fortuna__chance {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #8e8e8f;
  font-size: 11px;
  line-height: 14px;
}

.lp-fortuna__chance b {
  color: #fff;
  font-weight: 600;
}

.lp-fortuna__spin {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 160px;
  margin: -50px auto 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lp-fortuna__spin svg {
  display: block;
  width: 150px;
  height: auto;
}

.lp-fortuna__spin span {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.lp-fortuna__spin:disabled {
  opacity: 0.6;
  cursor: default;
}

.lp-appsdemo.lp-app {
  width: min(448px, 100%);
}

.lp-appsdemo .lp-app__frame {
  margin: 24px auto 8px;
}

.lp-appsdemo__panel[hidden] {
  display: none;
}

.lp-appsdemo .vue-balans-cards {
  margin-top: 8px;
}

.lp-apps-swap {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  padding: 12px;
  border-radius: 16px;
  background-color: #ffffff0a;
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
}

.lp-apps-swap span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-apps-swap img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.lp-apps-swap b {
  color: #f4d35e;
}

.lp-feat.lp-app {
  width: min(448px, 100%);
}

.lp-feat .lp-app__frame {
  margin: 24px auto 8px;
}

.lp-feat__panel[hidden] {
  display: none;
}

.lp-feat .dashboard-progress-bets {
  margin: 8px 0 0;
}

.lp-feat .lp-start-call {
  margin-top: 8px;
}

.lp-feat-pairs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lp-feat-pairs span {
  padding: 5px 8px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #ffffff0a;
  color: #ffffffc4;
  font-size: 11px;
  font-weight: 600;
}

.lp-ref-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lp-ref-pills span {
  padding: 5px 8px;
  border-radius: 99px;
  border: 1px solid rgba(244, 211, 94, 0.28);
  background: #ffffff0a;
  color: #f4d35e;
  font-size: 11px;
  font-weight: 600;
}

.lp-ref-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lp-ref-stats div {
  padding: 12px 10px;
  border-radius: 16px;
  background-color: #ffffff0a;
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-ref-stats span {
  display: block;
  color: #ffffff85;
  font-size: 11px;
}

.lp-ref-stats b {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
}

.lp-ref-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background-color: #ffffff0a;
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-ref-link span {
  color: #ffffff85;
  font-size: 11px;
  line-height: 1.35;
}

.lp-tg {
  display: grid;
  gap: 14px;
}

.lp-tg__bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-tg__ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.lp-tg__who {
  display: grid;
  gap: 2px;
}

.lp-tg__who strong {
  font-size: 15px;
}

.lp-tg__who span {
  color: #8e8e8f;
  font-size: 12px;
}

.lp-tg__thread {
  display: grid;
  gap: 12px;
}

.lp-tg__bubble {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 16px 16px 16px 6px;
  background: #ffffff12;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffffd1;
  font-size: 14px;
  line-height: 1.45;
}

.lp-tg__bubble p + p {
  margin-top: 8px;
}

.lp-tg__bubble b {
  color: #fff;
}

.lp-tg__keys {
  display: grid;
  gap: 8px;
}

.lp-tg__key {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  background: #ffffff12;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-tg__key--fill {
  color: #121214;
  background: var(--lp-grad);
  border: 0;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lp-tg__bubble--me {
  justify-self: end;
  border-radius: 16px 16px 6px 16px;
  background: rgba(109, 184, 102, 0.2);
  border-color: rgba(109, 184, 102, 0.32);
  color: #fff;
}

.lp-tg__composer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #ffffff0a;
  color: #8e8e8f;
  font-size: 13px;
}

.lp-tg__composer b {
  color: #f4d35e;
  font-size: 12px;
  font-weight: 700;
}

.lp-botdemo.lp-app {
  width: min(448px, 100%);
}

.lp-botdemo .lp-app__frame {
  width: min(378px, calc(100% - 24px));
  margin: 24px auto;
  overflow: hidden;
}

.lp-botdemo .lp-app__sizer {
  height: 100%;
}

.lp-botdemo .lp-app__screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 0;
  box-sizing: border-box;
}

.lp-botdemo .lp-tg {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0;
}

.lp-botdemo .lp-tg__bar {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background-color: rgba(18, 18, 20, 0.94);
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff14, #fff0);
}

.lp-botdemo .lp-tg__who {
  flex: 1;
  min-width: 0;
}

.lp-tg__unread {
  flex-shrink: 0;
  margin-left: auto;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border: 0;
  border-radius: 99px;
  background: var(--lp-grad);
  color: #121214;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.lp-tg__unread[hidden] {
  display: none;
}

.lp-botdemo .lp-tg__ava-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.lp-botdemo .lp-tg__online {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6db866;
  border: 2px solid #1a1a1c;
}

.lp-botdemo .lp-tg__day {
  align-self: center;
  justify-self: center;
  padding: 4px 10px;
  border-radius: 99px;
  background: #ffffff10;
  color: #8e8e8f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-botdemo .lp-tg__thread {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px 14px 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 211, 94, 0.35) transparent;
}

.lp-botdemo .lp-tg__composer {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  margin: 8px 12px 12px;
  background: rgba(18, 18, 20, 0.92);
}

.lp-tg__item {
  display: grid;
  opacity: 0;
  transform: translateY(10px);
}

.lp-tg__item[hidden] {
  display: none !important;
}

.lp-tg__item.is-in {
  animation: lp-tg-in 0.32s ease forwards;
}

.lp-tg__item--me {
  justify-items: end;
}

.lp-tg__item--keys {
  width: 100%;
}

.lp-tg__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 6px;
  color: #8e8e8f;
  font-size: 11px;
  line-height: 1;
}

.lp-tg__bubble--me .lp-tg__meta {
  color: rgba(255, 255, 255, 0.62);
}

.lp-tg__read {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  line-height: 0;
}

.lp-tg__read svg {
  display: block;
  width: 14px;
  height: 9px;
  overflow: visible;
}

.lp-tg__read path {
  fill: none;
  stroke: url(#lp-tg-read-grad);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-tg__typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: max-content;
  padding: 12px 14px;
  border-radius: 16px 16px 16px 6px;
  background: #ffffff12;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-tg__typing[hidden] {
  display: none;
}

.lp-tg__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8e8e8f;
  animation: lp-tg-dot 1s ease-in-out infinite;
}

.lp-tg__typing span:nth-child(2) { animation-delay: 0.15s; }
.lp-tg__typing span:nth-child(3) { animation-delay: 0.3s; }

.lp-tg__composer .is-typed {
  color: #fff;
}

.lp-tg__composer b.is-ready {
  color: #6db866;
}

@keyframes lp-tg-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@keyframes lp-tg-dot {
  0%, 80%, 100% { opacity: 0.28; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

.lp-mkts {
  display: grid;
  gap: 10px;
}

.lp-mkts .app__header {
  margin-bottom: 4px;
}

.lp-mkts__list {
  display: grid;
  gap: 8px;
}

.lp-mkts__row {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  background-color: #ffffff0a;
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-mkts__row::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(28px);
}

.lp-mkts__row.is-up::after {
  background: radial-gradient(circle, #6db866 0%, rgba(109, 184, 102, 0) 72%);
}

.lp-mkts__row.is-down::after {
  background: radial-gradient(circle, #fd7f66 0%, rgba(253, 127, 102, 0) 72%);
}

.lp-mkts__coin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.lp-mkts__coin img,
.lp-mkts__ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.lp-mkts__ava {
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--tone) 28%, #121214);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.lp-mkts__coin strong {
  font-size: 14px;
}

.lp-mkts__spark {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lp-mkts__spark span {
  color: #6db866;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.lp-mkts__row.is-down .lp-mkts__spark span {
  color: #fd7f66;
}

.lp-mkts__price {
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(64deg, #f4d35e, #fd7f66);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.lp-intg {
  display: grid;
  gap: 10px;
}

.lp-intg > .app__header {
  position: sticky;
  top: -16px;
  z-index: 3;
  margin-bottom: 4px;
  padding-top: 2px;
  background: #121214;
}

.lp-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lp-offer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid #545456;
  background: radial-gradient(250.58% 143.44% at 0.9% 2.98%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%), rgba(19, 19, 19, 0.8);
  color: inherit;
  text-decoration: none;
}

.lp-offer::before,
.lp-offer::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
}

.lp-offer::before { top: 0; left: 0; }
.lp-offer::after { right: 0; bottom: 0; }

.lp-offer:nth-child(1)::before,
.lp-offer:nth-child(1)::after {
  background: radial-gradient(circle, #2fa7e3 0%, rgba(47, 167, 227, 0.4) 42%, transparent 72%);
}

.lp-offer:nth-child(2)::before {
  background: radial-gradient(circle, #fd7f66 0%, #f4d35e 38%, transparent 72%);
}

.lp-offer:nth-child(2)::after {
  background: radial-gradient(circle, #6db866 0%, rgba(109, 184, 102, 0.42) 40%, transparent 72%);
}

.lp-offer img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
}

.lp-offer h3 .lp-tokname img {
  width: 1em;
  height: 1em;
  border-radius: 0;
}

.lp-offer h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.lp-offer__gram {
  display: block;
  color: #2fa7e3;
}

.lp-offer__rpr {
  display: block;
  background: var(--lp-grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-offer__gram .lp-tokname img,
.lp-offer__rpr .lp-tokname img {
  -webkit-text-fill-color: initial;
  background: none;
}

.lp-tasks {
  display: grid;
  gap: 8px;
}

.lp-tasks__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--lp-grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-tasks__promo {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid #545456;
  background: #ffffff0a;
}

.lp-tasks__promo img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.lp-tasks__promo input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 12px;
  outline: none;
}

.lp-tasks__promo input::placeholder {
  color: #ffffff70;
}

.lp-tasks__claim,
.lp-task__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 7px 10px;
  border-radius: 25px;
  border: 1.5px solid #fd7f66;
  background: #121214;
  color: #f4d35e;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

button.lp-task__btn {
  appearance: none;
}

.lp-task__btn.is-claim {
  background: var(--lp-grad);
  color: #111;
  border-color: transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lp-task__btn.is-done {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.lp-tasks__hint {
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
}

.lp-tasks__tabs {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #ffffff1a;
}

.lp-tasks__tab {
  padding: 4px 0 8px;
  color: #8e8e8f;
  font-size: 13px;
  font-weight: 500;
}

.lp-tasks__tab.is-on {
  color: #fff;
  box-shadow: inset 0 -2px 0 #fd7f66;
}

.lp-tasks__list {
  display: grid;
  gap: 8px;
}

.lp-task {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background-color: #ffffff0a;
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  border: 1px solid #5c5c5d;
}

.lp-task > img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.lp-task h4 {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.lp-task p {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.lp-task p img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.lp-task__btn {
  justify-self: end;
  max-width: 108px;
}

.lp-task__btn.is-dim {
  opacity: 0.45;
}

.lp-intg__tasks {
  display: grid;
  gap: 8px;
}

.lp-intg__task {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background-color: #ffffff0a;
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-intg__task-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff14;
}

.lp-intg__task-ico img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.lp-intg__task h4 {
  font-size: 14px;
  font-weight: 600;
}

.lp-intg__task p {
  color: #ffffff85;
  font-size: 11px;
  line-height: 1.35;
}

.lp-intg__task b {
  font-size: 11px;
  font-weight: 700;
  color: #f4d35e;
  white-space: nowrap;
}

.lp-intg__nav {
  position: sticky;
  bottom: -20px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px 4px;
  background: #121214;
}

.lp-intg__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #8e8e8f;
  background: #000;
  border: 1px solid #8e8e8f;
}

.lp-intg__nav-btn.is-on {
  color: #121214;
  background: var(--lp-grad);
  border-color: transparent;
}

.lp-intg__nav-btn.is-mark {
  position: relative;
}

.lp-intg__nav-btn.is-mark::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fd7f66;
}

.lp-tok__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  grid-template-rows: auto auto auto;
  gap: 16px 32px;
  align-items: stretch;
}

.lp-tok__copy {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / -1;
  gap: 16px;
  min-width: 0;
}

.lp-tok__list {
  display: grid;
  gap: 8px;
  margin-top: 0;
  align-self: stretch;
}

.lp-tok__item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  width: 100%;
  min-width: 0;
  text-align: left;
  padding: 12px 14px;
  border-radius: 16px;
  background-color: #ffffff0a;
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lp-tok__item h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}

.lp-tok__item p {
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.4;
}

.lp-tok__num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #f4d35e;
  padding-top: 2px;
  width: 28px;
}

.lp-tok__item.is-on {
  background: #ffffff12;
  border-color: rgba(244, 211, 94, 0.35);
}

.lp-tok__viz {
  display: flex;
  grid-row: 3;
  min-width: 0;
  min-height: 0;
}

.lp-tok__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px 20px;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 22px 20px 18px;
  border-radius: 28px;
  background-color: rgba(18, 18, 20, 0.52);
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(42px);
  backdrop-filter: blur(42px);
}

.lp-tok__card::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(36px);
  background: radial-gradient(circle, #fd7f66 0%, rgba(244, 211, 94, 0.38) 42%, transparent 72%);
  opacity: 0.42;
}

.lp-tok__chart {
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: grid;
  place-items: center;
}

.lp-tok__chart svg {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1;
  margin: 0 auto;
}

.lp-tok__chart path {
  cursor: pointer;
  transition: fill-opacity 0.2s ease;
}

.lp-tok__legend {
  display: grid;
  align-content: space-between;
  gap: 8px;
  list-style: none;
  min-width: 0;
  height: 100%;
}

.lp-tok__legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  width: 100%;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--lp-muted);
  font-size: 13px;
  cursor: pointer;
}

.lp-tok__legend li.is-on {
  color: #fff;
  background: #ffffff14;
  border-color: rgba(244, 211, 94, 0.35);
}

.lp-tok__legend i {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.lp-tok__legend li[data-lp-tok-leg="rupor"] i { background: #f4d35e; }
.lp-tok__legend li[data-lp-tok-leg="liquidity"] i { background: #2fa7e3; }
.lp-tok__legend li[data-lp-tok-leg="reserves"] i { background: #6db866; }
.lp-tok__legend li[data-lp-tok-leg="airdrops"] i { background: #fd7f66; }
.lp-tok__legend li[data-lp-tok-leg="development"] i { background: #c9b48a; }

.lp-tok__card .lp-address {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-tok__card .lp-address__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.lp-tok__card .lp-address code {
  min-width: 0;
  font-size: 12px;
  line-height: 1.4;
  word-break: break-all;
}

@supports not (grid-template-rows: subgrid) {
  .lp-tok__grid {
    grid-template-rows: none;
  }

  .lp-tok__copy {
    grid-template-rows: none;
    grid-row: auto;
  }

  .lp-tok__viz {
    grid-row: auto;
    align-self: stretch;
  }
}

.lp-botsec__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.lp-botsec__copy {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.lp-botsec__copy .lp-copy a {
  color: var(--lp-gold);
}

.lp-botsec__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-botsec__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 20px 18px 22px;
  border-radius: 28px;
  background-color: rgba(18, 18, 20, 0.52);
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(42px);
  backdrop-filter: blur(42px);
}

.lp-botsec__card::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -24px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(36px);
  background: radial-gradient(circle, #2fa7e3 0%, rgba(109, 184, 102, 0.35) 42%, transparent 72%);
  opacity: 0.5;
}

.lp-features__grid,
.lp-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.lp-card {
  padding: 22px 20px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-card h3,
.lp-apps__tags h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.lp-card p {
  color: var(--lp-muted);
}

.lp-tag img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}

.lp-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: #000;
  background: var(--lp-grad);
}

.lp-card a {
  color: var(--lp-gold);
}

.lp-apps__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
}

.lp-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--lp-line);
  padding: 36px 0 28px;
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.lp-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.lp-footer nav a,
.lp-legal {
  color: var(--lp-dim);
  font-size: 14px;
}

@media (hover: hover) {
  .lp-footer nav a:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(244, 211, 94, 0.28);
  }
}

.lp-footer__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.lp-legal {
  margin-top: 22px;
}

.lp-legal a {
  color: var(--lp-gold);
}

@media (max-width: 1180px) {
  .lp-nav a:not(.lp-btn) {
    font-size: 12px;
    padding: 6px 8px;
  }

  .lp-header__bar {
    gap: 10px;
    padding-right: 8px;
  }
}

@media (max-width: 980px) {
  .lp-nav,
  .lp-header__cta .lp-btn {
    display: none;
  }

  .lp-burger {
    display: inline-flex;
  }

  .lp-nav {
    position: fixed;
    inset: 12px 12px 12px auto;
    width: min(360px, 88vw);
    height: auto;
    max-height: calc(100dvh - 24px);
    overflow: auto;
    background-color: rgba(18, 18, 20, 0.62);
    background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    -webkit-backdrop-filter: blur(42px);
    backdrop-filter: blur(42px);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 8px;
    transform: translateX(calc(100% + 24px));
    transition: transform 0.28s ease;
  }

  .lp-nav a:not(.lp-btn) {
    width: 100%;
    font-size: 16px;
    padding: 10px 12px;
  }

  .lp-nav.is-open {
    display: flex;
    transform: none;
  }

  body.lp._lock::before {
    content: "";
    position: fixed;
    inset: 0;
    background: #000000b8;
    z-index: 39;
  }

  .lp-nav__close,
  .lp-nav .lp-btn {
    display: inline-flex;
  }

  .lp-hero__grid,
  .lp-about__layout,
  .lp-apps__grid,
  .lp-botfeat__grid,
  .lp-tok__grid,
  .lp-botsec__grid,
  .lp-features__grid,
  .lp-steps__grid,
  .lp-stats__row,
  .lp-footer__grid {
    grid-template-columns: 1fr;
  }

  .lp-hero__visual,
  .lp-app {
    max-width: 100%;
    margin: 8px auto 0;
    transform: none;
  }

  .lp-app__frame {
    width: min(540px, calc(100% - 16px));
    max-height: min(45.5vh, 403px);
    margin: 16px auto 8px;
  }

  .lp-hero .lp-app,
  .lp-botfeat.lp-app,
  .lp-start.lp-app,
  .lp-gamesdemo.lp-app,
  .lp-feat.lp-app,
  .lp-appsdemo.lp-app,
  .lp-botdemo.lp-app {
    width: min(448px, 100%);
    margin: 8px auto 0;
  }

  .lp-gamesdemo.lp-app {
    width: min(520px, 100%);
  }

  .lp-hero .lp-app__frame,
  .lp-botfeat .lp-app__frame,
  .lp-start .lp-app__frame,
  .lp-gamesdemo .lp-app__frame,
  .lp-feat .lp-app__frame,
  .lp-appsdemo .lp-app__frame,
  .lp-botdemo .lp-app__frame {
    width: min(378px, calc(100% - 16px));
    overflow-x: hidden;
    margin: 16px auto 8px;
  }

  .lp-hero .lp-app__frame,
  .lp-botfeat .lp-app__frame,
  .lp-start .lp-app__frame,
  .lp-feat .lp-app__frame,
  .lp-appsdemo .lp-app__frame {
    overflow-y: auto;
    height: auto;
    max-height: var(--lp-demo-h, none);
  }

  .lp-botdemo .lp-app__frame,
  .lp-gamesdemo .lp-app__frame {
    overflow: hidden;
  }

  .lp-gamesdemo .lp-app__frame {
    width: min(460px, calc(100% - 16px));
    height: calc(var(--lp-demo-h, 0px) * 1.48);
    max-height: calc(var(--lp-demo-h, 0px) * 1.48);
  }

  .lp-botdemo .lp-app__frame {
    height: calc(var(--lp-demo-h, 0px) * 1.265);
    max-height: calc(var(--lp-demo-h, 0px) * 1.265);
  }

  .lp-about__layout {
    padding-left: 0;
  }

  .lp-about__copy {
    width: min(var(--lp-max), calc(100% - 32px));
    margin: 0 auto;
  }

  .lp-about__chart {
    width: 92%;
    max-width: 92%;
    margin: 8px auto 0;
  }

  .lp-trade-chart__plot,
  .lp-trade-chart__iframe {
    height: min(42vh, 336px);
  }

  .lp-app .vue-combo-prize {
    font-size: 10px;
    padding: 4px 5px;
  }

  .lp-apps__visual {
    margin: 0 auto;
  }

  .lp-footer__cta,
  .lp-footer nav {
    justify-content: flex-start;
  }

  .lp-tok__copy {
    display: grid;
    grid-template-rows: none;
    grid-row: auto;
  }

  .lp-tok__viz {
    grid-row: auto;
  }

  .lp-tok__card {
    position: static;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .lp-tok__chart {
    height: auto;
  }

  .lp-tok__chart svg {
    width: min(240px, 100%);
    height: auto;
  }

  .lp-tok__legend {
    height: auto;
  }
}

.lp-partners {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin-top: 24px;
}

.lp-partners__logo {
  min-height: 72px;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lp-map {
  width: min(560px, 100%);
  margin-left: auto;
}

.lp-map__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 22px 20px 20px;
  border-radius: 28px;
  background-color: rgba(18, 18, 20, 0.52);
  background-image: radial-gradient(231% 135.8% at 0.9% 2.98%, #ffffff1a, #fff0);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(42px);
  backdrop-filter: blur(42px);
}

.lp-map__card::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -36px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(36px);
  background: radial-gradient(circle, #fd7f66 0%, rgba(244, 211, 94, 0.45) 42%, transparent 72%);
  opacity: 0.55;
}

.lp-map__panel[hidden] {
  display: none;
}

.lp-map__kicker {
  color: #f4d35e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-map__title {
  margin-top: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 500;
}

.lp-map__lead {
  margin: 10px 0 18px;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.5;
}

.lp-map__list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.lp-map__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 16px;
  background: #ffffff0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-map__list span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #f4d35e;
  padding-top: 2px;
}

.lp-map__list h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.lp-map__list p,
.lp-map__qs p {
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.45;
}

.lp-map__qs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lp-map__qs article {
  padding: 14px 12px 16px;
  border-radius: 16px;
  background: #ffffff0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-map__qs h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #f4d35e;
  margin-bottom: 6px;
}

.lp-map .lp-botfeat__loader {
  width: 100%;
  margin-top: 14px;
}

.lp-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 16px;
}

.lp-tabs__tab {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--lp-line);
  color: var(--lp-muted);
}

.lp-tabs__tab.is-active {
  color: #000;
  background: var(--lp-grad);
  border-color: transparent;
}

.lp-tabs__panel,
.lp-roadmap {
  display: none;
}

.lp-tabs__panel.is-active,
.lp-roadmap.is-active {
  display: block;
}

.lp-tabs__panel h3,
.lp-faq__q {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.lp-tabs__panel {
  padding: 22px 20px;
}

.lp-roadmap.is-active {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.lp-address {
  margin-top: 20px;
  padding: 18px 20px;
}

.lp-address p {
  color: var(--lp-dim);
  font-size: 13px;
  margin-bottom: 10px;
}

.lp-address__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.lp-address code {
  font-size: 13px;
  word-break: break-all;
  color: #fff;
}

.lp-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.lp-faq__list {
  display: grid;
  gap: 10px;
}

.lp-faq__q {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3em;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  font-size: 16px;
}

.lp-faq__a {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  color: var(--lp-muted);
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.2s ease, padding-bottom 0.28s ease;
}

.lp-faq__item.is-open .lp-faq__a {
  opacity: 1;
  padding-bottom: 16px;
}

@media (max-width: 980px) {
  .lp-partners,
  .lp-roadmap.is-active,
  .lp-faq {
    grid-template-columns: 1fr 1fr;
  }

  .lp-map {
    width: min(560px, 100%);
    margin: 8px auto 0;
  }

  .lp-map__qs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lp-partners,
  .lp-roadmap.is-active,
  .lp-faq {
    grid-template-columns: 1fr;
  }

  .lp-stats__row {
    grid-template-columns: 1fr 1fr;
  }

  .lp-stat:last-child {
    grid-column: 1 / -1;
  }

  .lp-hero {
    padding-top: 18px;
  }

  .lp-tok__card .lp-address__row {
    grid-template-columns: 1fr;
  }
}

.lp-loose-balls {
  position: fixed;
  inset: 0;
  z-index: 45;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
