.app{position:relative;isolation:isolate;min-height:100svh;display:flex;justify-content:center;overflow-x:hidden;padding:env(safe-area-inset-top) 0 calc(108px + env(safe-area-inset-bottom))}.app:before,.app:after{content:"";position:fixed;z-index:-1;border-radius:999px;filter:blur(38px);pointer-events:none}.app:before{width:220px;height:220px;top:5%;left:-120px;background:rgba(37,99,235,.2)}.app:after{width:250px;height:250px;right:-140px;top:30%;background:rgba(124,58,237,.16)}.app-frame{width:min(100%,620px)}.loading-screen{width:min(100%,430px);min-height:100svh;display:grid;place-content:center;justify-items:center;gap:10px;padding:24px;text-align:center}.loader{width:86px;height:86px;display:grid;place-items:center;border-radius:27px;font-size:27px;font-weight:950;letter-spacing:-.05em;background:linear-gradient(145deg,#5b5ce2,#31d7ff);box-shadow:0 0 0 8px rgba(59,130,246,.08),0 24px 60px rgba(37,99,235,.36);animation:igLoader 1.6s ease-in-out infinite}.loading-screen h2{margin:14px 0 0;font-size:30px}.loading-screen p{margin:0;color:var(--ig-muted)}.loading-line{width:180px;height:5px;margin-top:12px;overflow:hidden;border-radius:999px;background:#121b31}.loading-line i{display:block;width:45%;height:100%;border-radius:inherit;background:linear-gradient(90deg,#7c5cff,#31d7ff);animation:loadLine 1.2s ease-in-out infinite}@keyframes igLoader{0%,100%{transform:translateY(0) rotate(-2deg)}50%{transform:translateY(-8px) rotate(2deg)}}@keyframes loadLine{0%{transform:translateX(-110%)}100%{transform:translateX(330%)}}


.page-transition {
  animation: launcherPageIn .28s ease both;
}

@keyframes launcherPageIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.995);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-transition {
    animation: none;
  }
}
.launcher-home {
  width: min(100%,760px);
  min-height: 100vh;
  margin: 0 auto;
  padding:
    calc(18px + env(safe-area-inset-top))
    14px
    calc(126px + env(safe-area-inset-bottom));
  color: #fff;
}

.launcher-home button {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

.launcher-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.launcher-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  text-align: left;
}

.launcher-profile > div {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: linear-gradient(145deg,#6d5dfc,#31d7ff);
  font-size: 18px;
  font-weight: 900;
}

.launcher-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.launcher-profile small,
.launcher-profile strong {
  display: block;
}

.launcher-profile small {
  color: #74809a;
  font-size: 7px;
  letter-spacing: .1em;
}

.launcher-profile strong {
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.launcher-notifications {
  position: relative;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 14px;
  color: #fff;
  background: rgba(9,15,30,.86);
  font-size: 18px;
}

.launcher-notifications b {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border: 3px solid #050816;
  border-radius: 999px;
  color: #fff;
  background: #ef4444;
  font-size: 7px;
}

.launcher-wallet {
  display: grid;
  grid-template-columns: 1.5fr 1fr .8fr;
  gap: 8px;
  margin-top: 15px;
}

.launcher-wallet article {
  padding: 12px 10px;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 16px;
  background: rgba(9,15,30,.82);
}

.launcher-wallet small,
.launcher-wallet strong {
  display: block;
}

.launcher-wallet small {
  color: #74809a;
  font-size: 7px;
}

.launcher-wallet strong {
  margin-top: 6px;
  font-size: 15px;
}

.launcher-level {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  margin-top: 8px;
  padding: 12px 13px;
  border: 1px solid rgba(148,163,184,.12);
  border-radius: 17px;
  background: rgba(9,15,30,.78);
}

.launcher-level span,
.launcher-level strong {
  display: block;
}

.launcher-level span {
  color: #74809a;
  font-size: 7px;
}

.launcher-level strong {
  margin-top: 4px;
  font-size: 10px;
}

.launcher-level > b {
  color: #a5f3fc;
  font-size: 10px;
}

.launcher-level > div:last-child {
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #111a30;
}

.launcher-level i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,#31d7ff,#7c5cff);
}

.launcher-message {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(52,211,153,.22);
  border-radius: 13px;
  color: #bbf7d0;
  background: rgba(6,78,59,.14);
  font-size: 9px;
}

.launcher-resume {
  position: relative;
  min-height: 290px;
  margin-top: 13px;
  padding: 23px;
  overflow: hidden;
  border: 1px solid rgba(124,92,255,.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 50%,rgba(250,204,21,.25),transparent 33%),
    linear-gradient(145deg,#312e81,#172554 56%,#0f172a);
}

.launcher-resume > div {
  position: relative;
  z-index: 2;
  width: 61%;
}

.launcher-resume span,
.launcher-section__head span,
.launcher-daily span {
  color: #a5b4fc;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}

.launcher-resume h1 {
  margin: 12px 0 7px;
  font-size: clamp(29px,8vw,40px);
}

.launcher-resume p {
  margin: 0;
  color: #c5cede;
  font-size: 11px;
  line-height: 1.5;
}

.launcher-resume button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 160px;
  margin-top: 19px;
  border: 0;
  border-radius: 13px;
  padding: 12px 14px;
  color: #201500;
  background: linear-gradient(135deg,#fde047,#f59e0b);
  font-weight: 900;
}

.launcher-resume > img {
  position: absolute;
  right: -55px;
  bottom: -28px;
  width: 245px;
  height: 245px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(0,0,0,.4));
}

.launcher-daily {
  display: grid;
  grid-template-columns: 47px minmax(0,1fr) auto;
  align-items: center;
  gap: 11px;
  margin-top: 11px;
  padding: 13px;
  border: 1px solid rgba(251,191,36,.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 10%,rgba(251,191,36,.12),transparent 35%),
    #0b1224;
}

.launcher-daily__icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border-radius: 15px;
  background: rgba(251,191,36,.1);
  font-size: 23px;
}

.launcher-daily h2 {
  margin: 4px 0 3px;
  font-size: 14px;
}

.launcher-daily p {
  margin: 0;
  color: #8d846e;
  font-size: 8px;
}

.launcher-daily > button {
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  color: #251500;
  background: linear-gradient(135deg,#fde047,#f59e0b);
  font-size: 9px;
  font-weight: 900;
}

.launcher-section {
  margin-top: 24px;
}

.launcher-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
}

.launcher-section__head h2 {
  margin: 5px 0 0;
  font-size: 20px;
}

.launcher-section__head > button {
  border: 0;
  padding: 7px 0;
  color: #a5b4fc;
  background: transparent;
  font-size: 8px;
  font-weight: 900;
}

.launcher-raffle {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 205px;
  width: 100%;
  padding: 19px;
  border: 1px solid rgba(251,191,36,.2);
  border-radius: 23px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%,rgba(251,191,36,.16),transparent 35%),
    linear-gradient(145deg,#2b1f0c,#0b1224);
  background-size: cover;
  background-position: center;
  text-align: left;
}

.launcher-raffle > div {
  width: 74%;
}

.launcher-raffle span {
  color: #fbbf24;
  font-size: 8px;
  font-weight: 900;
}

.launcher-raffle h3 {
  margin: 8px 0 5px;
  font-size: 21px;
}

.launcher-raffle p {
  margin: 0;
  color: #a69b83;
  font-size: 9px;
  line-height: 1.45;
}

.launcher-raffle > b {
  font-size: 20px;
}

.launcher-quests {
  display: grid;
  gap: 8px;
}

.launcher-quests > button {
  display: grid;
  grid-template-columns: 44px minmax(0,1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px;
  border: 1px solid rgba(148,163,184,.12);
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg,#11192d,#080e1d);
  text-align: left;
}

.launcher-quests > button > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(52,211,153,.1);
  font-size: 21px;
}

.launcher-quests strong,
.launcher-quests small {
  display: block;
}

.launcher-quests strong {
  font-size: 11px;
}

.launcher-quests small {
  margin-top: 4px;
  color: #74809a;
  font-size: 8px;
}

.launcher-quests i {
  display: block;
  height: 6px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #172039;
}

.launcher-quests i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,#34d399,#31d7ff);
}

.launcher-quests em {
  color: #6ee7b7;
  font-style: normal;
  font-size: 9px;
  font-weight: 900;
}

.launcher-horizontal {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(155px,42vw);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.launcher-horizontal::-webkit-scrollbar {
  display: none;
}

.launcher-case-card,
.launcher-partner-card {
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.12);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg,#10182b,#080e1d);
  text-align: left;
  scroll-snap-align: start;
}

.launcher-case-card > div,
.launcher-partner-card > div {
  position: relative;
  display: grid;
  place-items: center;
  height: 116px;
  overflow: hidden;
  background: #111a31;
}

.launcher-case-card img,
.launcher-partner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.launcher-case-card > div > span,
.launcher-partner-card > div > span {
  font-size: 40px;
}

.launcher-case-card > div > b {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(5,8,18,.72);
  font-size: 7px;
}

.launcher-case-card > strong,
.launcher-partner-card > strong {
  display: block;
  margin: 11px 11px 0;
  font-size: 11px;
}

.launcher-case-card > small,
.launcher-partner-card > small {
  display: block;
  min-height: 28px;
  margin: 5px 11px 11px;
  color: #74809a;
  font-size: 8px;
  line-height: 1.4;
}

.launcher-collection {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 13px;
  border: 1px solid rgba(49,215,255,.18);
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%,rgba(49,215,255,.1),transparent 34%),
    linear-gradient(145deg,#0b1f31,#080e1d);
  text-align: left;
}

.launcher-collection > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.launcher-collection > div > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(49,215,255,.08);
  font-size: 19px;
}

.launcher-collection small,
.launcher-collection strong {
  display: block;
}

.launcher-collection small {
  color: #67e8f9;
  font-size: 6px;
}

.launcher-collection strong {
  margin-top: 4px;
  font-size: 10px;
}

.launcher-collection > b {
  color: #8b96ac;
}

.daily2-layer {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
}

.daily2-layer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2,5,12,.8);
  backdrop-filter: blur(8px);
}

.daily2-sheet {
  position: relative;
  z-index: 1;
  width: min(100%,560px);
  max-height: 86vh;
  overflow: auto;
  padding: 20px;
  border: 1px solid rgba(251,191,36,.22);
  border-radius: 28px 28px 20px 20px;
  background:
    radial-gradient(circle at 90% 0,rgba(251,191,36,.16),transparent 36%),
    #0a1020;
}

.daily2-sheet header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.daily2-sheet header > div > span,
.daily2-result > span {
  color: #fbbf24;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.daily2-sheet header h2 {
  margin: 6px 0 5px;
  font-size: 24px;
}

.daily2-sheet header p {
  margin: 0;
  color: #8b93a5;
  font-size: 10px;
}

.daily2-sheet header > button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 13px;
  color: #fff;
  background: #121b30;
  font-size: 20px;
}

.daily2-streak {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 17px;
  padding: 13px;
  border: 1px solid rgba(251,191,36,.16);
  border-radius: 16px;
  background: rgba(133,77,14,.13);
}

.daily2-streak > span {
  font-size: 28px;
}

.daily2-streak small,
.daily2-streak strong {
  display: block;
}

.daily2-streak small {
  color: #b59a62;
  font-size: 8px;
}

.daily2-streak strong {
  margin-top: 5px;
  font-size: 15px;
}

.daily2-calendar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
  margin-top: 14px;
}

.daily2-day {
  position: relative;
  min-height: 91px;
  padding: 10px 7px;
  border: 1px solid rgba(148,163,184,.12);
  border-radius: 14px;
  background: #10182a;
  text-align: center;
}

.daily2-day.is-active {
  border-color: rgba(251,191,36,.48);
  background: linear-gradient(145deg,rgba(133,77,14,.3),#10182a);
}

.daily2-day.is-claimed {
  opacity: .55;
}

.daily2-day.is-final {
  grid-column: span 2;
}

.daily2-day span,
.daily2-day strong,
.daily2-day small {
  display: block;
}

.daily2-day span {
  color: #79859e;
  font-size: 7px;
}

.daily2-day strong {
  margin-top: 10px;
  font-size: 12px;
}

.daily2-day small {
  margin-top: 5px;
  color: #8d97ab;
  font-size: 7px;
}

.daily2-day b {
  position: absolute;
  top: 6px;
  right: 7px;
  color: #6ee7b7;
}

.daily2-result {
  margin-top: 13px;
  padding: 13px;
  border: 1px solid rgba(52,211,153,.23);
  border-radius: 15px;
  background: rgba(6,78,59,.15);
}

.daily2-result > strong {
  display: block;
  margin-top: 5px;
  color: #bbf7d0;
}

.daily2-result > div {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.daily2-result b {
  padding: 6px 8px;
  border-radius: 9px;
  color: #a7f3d0;
  background: rgba(52,211,153,.1);
  font-size: 8px;
}

.daily2-claim {
  width: 100%;
  margin-top: 15px;
  border: 0;
  border-radius: 14px;
  padding: 13px;
  color: #251500;
  background: linear-gradient(135deg,#fde047,#f59e0b);
  font-weight: 900;
}

.daily2-claim:disabled {
  color: #7e899f;
  background: #172039;
}

@media (max-width: 470px) {
  .launcher-wallet {
    grid-template-columns: 1fr 1fr;
  }

  .launcher-wallet article:first-child {
    grid-column: 1 / -1;
  }

  .launcher-resume > div {
    width: 68%;
  }

  .launcher-resume > img {
    right: -75px;
    width: 225px;
    height: 225px;
  }

  .launcher-collection {
    grid-template-columns: 1fr;
  }

  .launcher-collection > b {
    display: none;
  }

  .daily2-calendar {
    grid-template-columns: repeat(3,1fr);
  }

  .daily2-day.is-final {
    grid-column: span 1;
  }
}


.launcher-winner {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px;
  border: 1px solid rgba(251,191,36,.2);
  border-radius: 19px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%,rgba(251,191,36,.12),transparent 34%),
    linear-gradient(145deg,#231a0b,#080e1d);
  text-align: left;
}

.launcher-winner__avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(251,191,36,.2);
  border-radius: 18px;
  background: rgba(251,191,36,.09);
  font-size: 26px;
}

.launcher-winner__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.launcher-winner small,
.launcher-winner strong,
.launcher-winner p {
  display: block;
}

.launcher-winner small {
  color: #fbbf24;
  font-size: 7px;
  font-weight: 900;
}

.launcher-winner strong {
  margin-top: 5px;
  font-size: 13px;
}

.launcher-winner p {
  margin: 4px 0 0;
  color: #8f846d;
  font-size: 8px;
}

.launcher-winner > b {
  color: #fcd34d;
  font-size: 18px;
}
.bp2-page {
  --bp2-accent: #7c5cff;
  --bp2-secondary: #31d7ff;
  --bp2-text: #fff;
  min-height: 100vh;
  padding: 14px 14px calc(36px + env(safe-area-inset-bottom));
  color: var(--bp2-text);
  background-color: #050816;
  background-size: cover;
  background-position: center;
}

.bp2-page button {
  font: inherit;
}

.bp2-back {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 5;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  color: #fff;
  background: rgba(5,8,18,.66);
  backdrop-filter: blur(14px);
  font-size: 20px;
}

.bp2-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
  overflow: hidden;
  padding: 72px 22px 23px;
  border: 1px solid color-mix(in srgb,var(--bp2-accent) 42%,rgba(255,255,255,.1));
  border-radius: 29px;
  background:
    radial-gradient(circle at 84% 12%,color-mix(in srgb,var(--bp2-accent) 34%,transparent),transparent 40%),
    linear-gradient(145deg,#17102f,#0a1630);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.bp2-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: color-mix(in srgb,var(--bp2-secondary) 18%,transparent);
  filter: blur(40px);
}

.bp2-hero__copy,
.bp2-clock {
  position: relative;
  z-index: 1;
}

.bp2-hero__copy > span,
.bp2-guide > div > span,
.bp2-section-head span,
.bp2-premium span {
  color: color-mix(in srgb,var(--bp2-accent) 70%,white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.bp2-hero h1 {
  max-width: 460px;
  margin: 8px 0 6px;
  font-size: clamp(30px,8vw,43px);
  line-height: 1;
}

.bp2-hero p {
  max-width: 500px;
  margin: 0;
  color: rgba(230,235,248,.78);
  font-size: 12px;
  line-height: 1.55;
}

.bp2-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.bp2-hero__tags b {
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(5,8,18,.55);
  font-size: 8px;
  letter-spacing: .08em;
}

.bp2-clock {
  position: absolute;
  top: 19px;
  right: 19px;
  text-align: right;
}

.bp2-clock small,
.bp2-clock strong {
  display: block;
}

.bp2-clock small {
  color: rgba(255,255,255,.6);
  font-size: 8px;
  letter-spacing: .12em;
}

.bp2-clock strong {
  margin-top: 5px;
  font-size: 14px;
}

.bp2-progress-panel {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(148,163,184,.15);
  border-radius: 21px;
  background: linear-gradient(145deg,rgba(17,24,39,.96),rgba(8,13,28,.96));
}

.bp2-progress-panel__top,
.bp2-progress-panel__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.bp2-progress-panel__top > div:last-child {
  text-align: right;
}

.bp2-progress-panel small,
.bp2-progress-panel strong {
  display: block;
}

.bp2-progress-panel small {
  color: #75829d;
  font-size: 8px;
  letter-spacing: .1em;
}

.bp2-progress-panel strong {
  margin-top: 6px;
  font-size: 15px;
}

.bp2-progress-track {
  height: 10px;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 999px;
  background: #111a30;
}

.bp2-progress-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,var(--bp2-accent),var(--bp2-secondary));
  box-shadow: 0 0 18px color-mix(in srgb,var(--bp2-accent) 60%,transparent);
}

.bp2-progress-panel__bottom {
  margin-top: 8px;
  color: #7e8aa4;
  font-size: 9px;
}

.bp2-premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 19px;
  border: 1px solid rgba(251,191,36,.32);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 20%,rgba(251,191,36,.17),transparent 36%),
    linear-gradient(145deg,#281c0b,#10152a);
}

.bp2-premium h2 {
  margin: 6px 0 5px;
  font-size: 18px;
}

.bp2-premium p {
  max-width: 340px;
  margin: 0;
  color: #9a8f76;
  font-size: 10px;
  line-height: 1.5;
}

.bp2-premium button,
.bp2-empty button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 14px;
  padding: 12px 15px;
  color: #211400;
  background: linear-gradient(135deg,#fcd34d,#fb923c);
  font-weight: 900;
}

.bp2-premium button:disabled {
  opacity: .55;
}

.bp2-message {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(49,215,255,.24);
  border-radius: 14px;
  color: #bae6fd;
  background: rgba(8,47,73,.22);
  font-size: 11px;
}

.bp2-guide {
  margin-top: 24px;
}

.bp2-guide h2,
.bp2-section-head h2 {
  margin: 5px 0 12px;
  font-size: 20px;
}

.bp2-guide__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bp2-guide__items span {
  padding: 9px 11px;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 13px;
  background: rgba(10,16,32,.85);
  color: #a4afc5;
  font-size: 10px;
}

.bp2-track-section {
  margin-top: 25px;
}

.bp2-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.bp2-section-head > strong {
  color: #7f8ba4;
  font-size: 10px;
}

.bp2-levels {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(278px,85vw);
  gap: 13px;
  overflow-x: auto;
  padding: 3px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.bp2-levels::-webkit-scrollbar {
  display: none;
}

.bp2-level {
  position: relative;
  min-height: 476px;
  padding: 16px;
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 7%,color-mix(in srgb,var(--bp2-accent) 16%,transparent),transparent 30%),
    linear-gradient(145deg,#11192d,#080e1e);
  scroll-snap-align: center;
}

.bp2-level.is-current {
  border-color: color-mix(in srgb,var(--bp2-accent) 58%,rgba(255,255,255,.1));
  box-shadow: 0 18px 55px color-mix(in srgb,var(--bp2-accent) 12%,transparent);
}

.bp2-level.is-locked {
  opacity: .7;
}

.bp2-level__number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
}

.bp2-level__number span {
  color: #75829e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}

.bp2-level__number strong {
  font-size: 35px;
}

.bp2-level__number b {
  position: absolute;
  top: 58px;
  right: 16px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--bp2-accent);
  font-size: 7px;
  letter-spacing: .08em;
}

.bp2-level__xp {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0;
  padding: 11px 12px;
  border: 1px solid rgba(148,163,184,.12);
  border-radius: 13px;
  background: #080e1d;
}

.bp2-level__xp span {
  color: #74809b;
  font-size: 8px;
}

.bp2-level__xp strong {
  color: color-mix(in srgb,var(--bp2-accent) 65%,white);
  font-size: 10px;
}

.bp2-reward {
  margin-top: 10px;
  padding: 13px;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 17px;
  background: rgba(8,14,29,.86);
}

.bp2-reward--premium {
  border-color: rgba(251,191,36,.25);
  background: linear-gradient(145deg,rgba(83,54,10,.24),rgba(8,14,29,.92));
}

.bp2-reward.is-claimed {
  border-color: rgba(52,211,153,.32);
}

.bp2-reward__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.bp2-reward__head span {
  color: #8c98b2;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.bp2-reward--premium .bp2-reward__head span {
  color: #fcd34d;
}

.bp2-reward__head b {
  color: #86efac;
  font-size: 7px;
}

.bp2-reward__content {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 11px;
}

.bp2-reward__content i {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border: 1px solid rgba(124,92,255,.28);
  border-radius: 14px;
  background: rgba(124,92,255,.12);
  font-style: normal;
  font-size: 20px;
}

.bp2-reward__content strong,
.bp2-reward__content small {
  display: block;
}

.bp2-reward__content strong {
  font-size: 12px;
}

.bp2-reward__content small {
  margin-top: 4px;
  color: #74809b;
  font-size: 8px;
  line-height: 1.4;
}

.bp2-reward button {
  width: 100%;
  margin-top: 12px;
  border: 0;
  border-radius: 12px;
  padding: 10px;
  color: white;
  background: linear-gradient(135deg,var(--bp2-accent),var(--bp2-secondary));
  font-size: 10px;
  font-weight: 900;
}

.bp2-reward--premium button {
  color: #211400;
  background: linear-gradient(135deg,#fcd34d,#fb923c);
}

.bp2-reward button:disabled {
  color: #75809a;
  background: #172039;
}

.bp2-wallet {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 9px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 19px;
  background: rgba(8,14,29,.9);
}

.bp2-wallet > div {
  padding: 7px 9px;
  border-left: 1px solid rgba(148,163,184,.1);
}

.bp2-wallet > div:first-child {
  border-left: 0;
}

.bp2-wallet small,
.bp2-wallet strong {
  display: block;
}

.bp2-wallet small {
  color: #74809b;
  font-size: 7px;
}

.bp2-wallet strong {
  margin-top: 6px;
  font-size: 12px;
}

.bp2-wallet button {
  border: 0;
  border-radius: 12px;
  padding: 0 13px;
  color: #fff;
  background: #172039;
}

.bp2-loading,
.bp2-empty {
  display: grid;
  place-items: center;
  min-height: 72vh;
  padding: 30px;
  text-align: center;
}

.bp2-loading i {
  width: 42px;
  height: 42px;
  border: 4px solid #202b45;
  border-top-color: var(--bp2-accent);
  border-radius: 50%;
  animation: bp2-spin .8s linear infinite;
}

.bp2-loading strong,
.bp2-loading span {
  display: block;
}

.bp2-loading strong {
  margin-top: 16px;
}

.bp2-loading span,
.bp2-empty p {
  margin-top: 7px;
  color: #7f8ba4;
  font-size: 11px;
}

.bp2-empty > span {
  font-size: 60px;
}

.bp2-empty h1 {
  margin: 15px 0 0;
}

.bp2-empty button {
  margin-top: 15px;
}

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

@media (min-width: 650px) {
  .bp2-page {
    width: min(100%,760px);
    margin: auto;
  }

  .bp2-levels {
    grid-auto-columns: 315px;
  }
}

@media (max-width: 480px) {
  .bp2-hero {
    min-height: 300px;
    padding: 80px 18px 20px;
  }

  .bp2-clock {
    top: 22px;
    right: 16px;
  }

  .bp2-premium {
    align-items: stretch;
    flex-direction: column;
  }

  .bp2-premium button {
    width: 100%;
  }

  .bp2-wallet {
    grid-template-columns: 1fr 1fr;
  }

  .bp2-wallet button {
    grid-column: 1 / -1;
    min-height: 42px;
  }
}
.live-event-banner{position:relative;overflow:hidden;margin-top:14px;padding:22px;border:1px solid color-mix(in srgb,var(--event-accent) 42%,rgba(255,255,255,.12));border-radius:27px;background:radial-gradient(circle at 88% 15%,color-mix(in srgb,var(--event-accent) 34%,transparent),transparent 38%),linear-gradient(140deg,#111a34,#080d1c);background-size:cover;background-position:center;box-shadow:0 24px 60px rgba(0,0,0,.3)}.live-event-banner:after{content:"";position:absolute;right:-70px;bottom:-110px;width:210px;height:210px;border-radius:50%;background:color-mix(in srgb,var(--event-accent) 20%,transparent);filter:blur(35px)}.live-event-banner>*{position:relative;z-index:1}.live-event-kicker{display:flex;align-items:center;gap:8px;color:color-mix(in srgb,var(--event-accent) 70%,white);font-size:9px;font-weight:900;letter-spacing:.16em}.live-event-kicker i{width:8px;height:8px;border-radius:50%;background:var(--event-accent);box-shadow:0 0 15px var(--event-accent)}.live-event-banner h2{margin:10px 0 7px;font-size:27px;line-height:1.05}.live-event-banner p{max-width:520px;margin:0;color:#b8c3d8;font-size:12px;line-height:1.5}.live-event-footer{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-top:20px}.live-event-boosts{display:flex;flex-wrap:wrap;gap:7px}.live-event-boosts span{padding:7px 9px;border:1px solid rgba(255,255,255,.12);border-radius:999px;background:rgba(5,9,21,.62);font-size:9px;font-weight:800}.live-event-time{text-align:right;white-space:nowrap}.live-event-time small,.live-event-time strong{display:block}.live-event-time small{color:#8793aa;font-size:8px;letter-spacing:.1em}.live-event-time strong{margin-top:5px;font-size:15px}@media(max-width:520px){.live-event-banner{padding:19px}.live-event-footer{align-items:flex-start;flex-direction:column}.live-event-time{text-align:left}}
.notification-center-layer {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding:
    calc(12px + env(safe-area-inset-top))
    12px
    calc(12px + env(safe-area-inset-bottom));
  overflow: hidden;
  overscroll-behavior: contain;
}

.notification-center-layer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 5, 12, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.notification-center {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(
    82dvh,
    calc(
      100dvh
      - env(safe-area-inset-top)
      - env(safe-area-inset-bottom)
      - 24px
    )
  );
  margin-top: clamp(8px, 5dvh, 42px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 90% 0,
      rgba(124, 92, 255, .2),
      transparent 35%
    ),
    #0a1020;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .58);
  animation: notificationCenterIn .22s ease-out both;
}

.notification-center header {
  position: sticky;
  z-index: 3;
  top: -20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: -20px -20px 0;
  padding: 20px 20px 14px;
  border-bottom: 1px solid rgba(148, 163, 184, .08);
  background:
    linear-gradient(180deg, rgba(10, 16, 32, .99), rgba(10, 16, 32, .94));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.notification-center header span {
  color: #8f88ff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}

.notification-center header h2 {
  margin: 6px 0 4px;
  font-size: 24px;
}

.notification-center header p {
  margin: 0;
  color: #74809a;
  font-size: 9px;
}

.notification-center__close {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(148, 163, 184, .15);
  border-radius: 13px;
  color: #fff;
  background: #121b30;
  font-size: 20px;
}

.notification-center__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 15px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
}

.notification-center__toolbar span {
  color: #74809a;
  font-size: 8px;
}

.notification-center__toolbar button {
  border: 0;
  padding: 4px 0;
  color: #a5b4fc;
  background: transparent;
  font-size: 8px;
  font-weight: 900;
}

.notification-center__toolbar button:disabled {
  color: #4b556a;
}

.notification-center__list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.notification-center__list > button {
  position: relative;
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 68px;
  padding: 11px;
  border: 1px solid rgba(148, 163, 184, .12);
  border-radius: 15px;
  color: #fff;
  background: #10182a;
  text-align: left;
}

.notification-center__list > button.is-unread {
  border-color: rgba(124, 92, 255, .3);
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(124, 92, 255, .12),
      transparent 34%
    ),
    #10182a;
}

.notification-center__list > button.is-read {
  opacity: .68;
}

.notification-center__list > button > span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  background: rgba(124, 92, 255, .1);
  font-size: 21px;
}

.notification-center__list strong,
.notification-center__list small {
  display: block;
}

.notification-center__list strong {
  font-size: 11px;
}

.notification-center__list small {
  margin-top: 4px;
  color: #74809a;
  font-size: 8px;
  line-height: 1.45;
}

.notification-center__list > button > i {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7c5cff;
  box-shadow: 0 0 12px rgba(124, 92, 255, .7);
}

.notification-center__list > button > b {
  margin-left: 3px;
  color: #8b96ac;
}

.notification-center__empty {
  display: grid;
  place-items: center;
  min-height: 230px;
  text-align: center;
}

.notification-center__empty > span {
  font-size: 46px;
}

.notification-center__empty strong {
  margin-top: 12px;
}

.notification-center__empty small {
  margin-top: 6px;
  color: #74809a;
  font-size: 9px;
}

@keyframes notificationCenterIn {
  from {
    opacity: 0;
    transform: translateY(-14px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 520px) {
  .notification-center-layer {
    padding:
      calc(8px + env(safe-area-inset-top))
      8px
      calc(8px + env(safe-area-inset-bottom));
  }

  .notification-center {
    width: 100%;
    max-height: calc(
      100dvh
      - env(safe-area-inset-top)
      - env(safe-area-inset-bottom)
      - 16px
    );
    margin-top: 0;
    padding: 17px;
    border-radius: 22px;
  }

  .notification-center header {
    top: -17px;
    margin: -17px -17px 0;
    padding: 17px 17px 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .notification-center {
    animation: none;
  }
}
.games-center {
  width: min(100%, 720px);
  min-height: 100vh;
  margin: 0 auto;
  padding:
    calc(20px + env(safe-area-inset-top))
    14px
    calc(120px + env(safe-area-inset-bottom));
  color: #fff;
}

.games-center button {
  font: inherit;
}

.games-center__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.games-center__header > div:first-child > span,
.gc-section-heading span,
.gc-featured__copy > span,
.gc-random__copy > span,
.gc-raffle span,
.gc-case-sheet header span,
.gc-result-sheet > span {
  color: #8f88ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.games-center__header h1 {
  margin: 7px 0 6px;
  font-size: clamp(29px, 8vw, 40px);
  line-height: 1;
}

.games-center__header p {
  max-width: 410px;
  margin: 0;
  color: #8793ad;
  font-size: 12px;
  line-height: 1.5;
}

.games-center__wallet {
  min-width: 126px;
  padding: 12px;
  border: 1px solid rgba(148,163,184,.15);
  border-radius: 17px;
  background: rgba(9,15,30,.9);
}

.games-center__wallet small,
.games-center__wallet strong,
.games-center__wallet b {
  display: block;
}

.games-center__wallet small {
  color: #75819b;
  font-size: 7px;
  letter-spacing: .08em;
}

.games-center__wallet strong {
  margin-top: 7px;
  font-size: 13px;
}

.games-center__wallet b {
  margin-top: 5px;
  color: #fcd34d;
  font-size: 11px;
}

.games-center__message {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(49,215,255,.23);
  border-radius: 14px;
  color: #bae6fd;
  background: rgba(8,47,73,.22);
  font-size: 11px;
}

.games-center__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 18px;
}

.games-center__stats > div {
  padding: 13px 10px;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 16px;
  background: rgba(9,15,30,.82);
  text-align: center;
}

.games-center__stats small,
.games-center__stats strong {
  display: block;
}

.games-center__stats small {
  color: #74809a;
  font-size: 7px;
}

.games-center__stats strong {
  margin-top: 7px;
  font-size: 17px;
}

.gc-featured {
  position: relative;
  min-height: 305px;
  margin-top: 14px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 35%,rgba(250,204,21,.28),transparent 37%),
    linear-gradient(145deg,#312e81,#172554 55%,#0f172a);
}

.gc-featured__copy {
  position: relative;
  z-index: 2;
  width: 59%;
}

.gc-featured__copy h2 {
  margin: 14px 0 7px;
  font-size: 36px;
}

.gc-featured__copy p {
  margin: 0;
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.55;
}

.gc-featured__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 15px;
}

.gc-featured__tags b {
  padding: 7px 9px;
  border-radius: 11px;
  background: rgba(255,255,255,.07);
  font-size: 9px;
}

.gc-featured__copy button,
.gc-random button,
.gc-case__open,
.gc-case-sheet__open,
.gc-result-sheet > button,
.gc-empty button {
  border: 0;
  border-radius: 14px;
  color: #111827;
  background: linear-gradient(135deg,#fde047,#f59e0b);
  font-weight: 900;
}

.gc-featured__copy button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 165px;
  margin-top: 20px;
  padding: 13px 15px;
}

.gc-featured__coin {
  position: absolute;
  right: -35px;
  bottom: -22px;
  width: 245px;
  height: 245px;
}

.gc-featured__coin::before {
  content: "";
  position: absolute;
  inset: 48px;
  border-radius: 50%;
  background: rgba(250,204,21,.3);
  filter: blur(30px);
}

.gc-featured__coin img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-10deg);
}

.gc-random {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 13px;
  padding: 17px;
  border: 1px solid rgba(124,92,255,.27);
  border-radius: 21px;
  background:
    radial-gradient(circle at 90% 20%,rgba(124,92,255,.18),transparent 35%),
    #0b1224;
}

.gc-random__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: rgba(124,92,255,.14);
  font-size: 26px;
}

.gc-random__copy h2 {
  margin: 5px 0 4px;
  font-size: 17px;
}

.gc-random__copy p {
  margin: 0;
  color: #77849e;
  font-size: 9px;
  line-height: 1.45;
}

.gc-random button {
  min-width: 112px;
  padding: 12px 13px;
}

.gc-random button:disabled,
.gc-case__open:disabled,
.gc-case-sheet__open:disabled {
  color: #74809a;
  background: #172039;
}

.gc-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin: 29px 2px 14px;
}

.gc-section-heading h2 {
  margin: 5px 0 0;
  font-size: 21px;
}

.gc-section-heading > strong {
  padding: 7px 9px;
  border-radius: 11px;
  color: #98a4bc;
  background: rgba(255,255,255,.05);
  font-size: 10px;
}

.gc-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.gc-case {
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 22px;
  background: linear-gradient(145deg,#10182b,#080e1d);
}

.gc-case__visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 160px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%,rgba(124,92,255,.23),transparent 45%),
    #111a31;
}

.gc-case__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-case__visual > span {
  font-size: 56px;
}

.gc-case__visual > b {
  position: absolute;
  top: 11px;
  right: 11px;
  padding: 6px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(5,8,18,.66);
  backdrop-filter: blur(10px);
  font-size: 7px;
  letter-spacing: .08em;
}

.gc-case__body {
  padding: 15px;
}

.gc-case__body h3 {
  margin: 0;
  font-size: 17px;
}

.gc-case__body > p {
  min-height: 34px;
  margin: 7px 0 0;
  color: #77849e;
  font-size: 10px;
  line-height: 1.45;
}

.gc-case__rewards {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}

.gc-case__rewards span {
  padding: 6px 7px;
  border-radius: 9px;
  color: #aeb8cd;
  background: rgba(255,255,255,.05);
  font-size: 8px;
}

.gc-case__actions {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7px;
  margin-top: 13px;
}

.gc-case__details {
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 13px;
  color: #b5bfd2;
  background: #111a2e;
  font-weight: 800;
}

.gc-case__open,
.gc-case__details {
  min-height: 42px;
}

.gc-raffle {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 17px;
  padding: 16px;
  border: 1px solid rgba(251,191,36,.23);
  border-radius: 20px;
  background: rgba(75,43,10,.17);
}

.gc-raffle__icon {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgba(251,191,36,.13);
  font-size: 25px;
}

.gc-raffle h2 {
  margin: 5px 0 3px;
  font-size: 16px;
}

.gc-raffle p {
  margin: 0;
  color: #9e927a;
  font-size: 9px;
}

.gc-loading,
.gc-empty {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 22px;
  background: rgba(9,15,30,.75);
  text-align: center;
}

.gc-loading i {
  width: 38px;
  height: 38px;
  border: 4px solid #1b263e;
  border-top-color: #7c5cff;
  border-radius: 50%;
  animation: gc-spin .8s linear infinite;
}

.gc-loading p,
.gc-empty p {
  color: #7f8ba4;
  font-size: 11px;
}

.gc-empty > span {
  font-size: 52px;
}

.gc-empty h2 {
  margin: 12px 0 0;
}

.gc-empty button {
  padding: 11px 14px;
}

.gc-case-layer,
.gc-result-layer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
}

.gc-case-layer__backdrop,
.gc-result-layer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2,5,12,.78);
  backdrop-filter: blur(7px);
}

.gc-case-sheet,
.gc-result-sheet {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: 82vh;
  overflow: auto;
  padding: 20px;
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 27px 27px 19px 19px;
  background: #0a1020;
}

.gc-case-sheet header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.gc-case-sheet header h2 {
  margin: 6px 0 0;
}

.gc-case-sheet header button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(148,163,184,.15);
  border-radius: 13px;
  color: #fff;
  background: #121b30;
  font-size: 20px;
}

.gc-case-sheet__rewards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 9px;
  margin-top: 17px;
}

.gc-reward-preview {
  padding: 13px;
  border: 1px solid rgba(148,163,184,.12);
  border-radius: 15px;
  background: #10182a;
}

.gc-reward-preview span,
.gc-reward-preview strong,
.gc-reward-preview small {
  display: block;
}

.gc-reward-preview span {
  font-size: 24px;
}

.gc-reward-preview strong {
  margin-top: 8px;
  font-size: 11px;
}

.gc-reward-preview small {
  margin-top: 5px;
  color: #74809a;
  font-size: 8px;
}

.gc-case-sheet__open {
  width: 100%;
  margin-top: 16px;
  padding: 13px;
}

.gc-result-sheet {
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0,rgba(124,92,255,.26),transparent 40%),
    #0a1020;
}

.gc-result-sheet__burst {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 5px auto 15px;
  border: 1px solid rgba(124,92,255,.28);
  border-radius: 28px;
  background: rgba(124,92,255,.13);
  font-size: 42px;
}

.gc-result-sheet h2 {
  margin: 7px 0 11px;
  font-size: 25px;
}

.gc-result-sheet img {
  width: min(100%, 320px);
  height: 165px;
  object-fit: cover;
  border-radius: 18px;
}

.gc-result-sheet code {
  display: block;
  margin-top: 13px;
  padding: 13px;
  overflow-wrap: anywhere;
  border: 1px solid rgba(49,215,255,.2);
  border-radius: 14px;
  color: #a5f3fc;
  background: #071827;
}

.gc-result-sheet p {
  color: #8490a8;
  font-size: 10px;
}

.gc-result-sheet > button {
  width: 100%;
  margin-top: 10px;
  padding: 13px;
}

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

@media (max-width: 560px) {
  .games-center__header {
    align-items: stretch;
    flex-direction: column;
  }

  .games-center__wallet {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .games-center__wallet small {
    grid-column: 1 / -1;
  }

  .gc-featured {
    min-height: 320px;
    padding: 20px;
  }

  .gc-featured__copy {
    width: 65%;
  }

  .gc-featured__coin {
    right: -60px;
  }

  .gc-random {
    grid-template-columns: auto 1fr;
  }

  .gc-random button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 430px) {
  .games-center__stats {
    grid-template-columns: 1fr;
  }

  .gc-cases {
    grid-template-columns: 1fr;
  }

  .gc-featured__copy {
    width: 68%;
  }

  .gc-featured__coin {
    width: 220px;
    height: 220px;
  }
}


.gc-player-hub {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr) auto;
  align-items: center;
  gap: 11px;
  width: 100%;
  margin-top: 13px;
  padding: 14px;
  border: 1px solid rgba(49,215,255,.22);
  border-radius: 19px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%,rgba(49,215,255,.12),transparent 34%),
    linear-gradient(145deg,#0b1f31,#080e1d);
  text-align: left;
}

.gc-player-hub > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: rgba(49,215,255,.1);
  font-size: 23px;
}

.gc-player-hub small,
.gc-player-hub strong,
.gc-player-hub p {
  display: block;
}

.gc-player-hub small {
  color: #67e8f9;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .1em;
}

.gc-player-hub strong {
  margin-top: 4px;
  font-size: 13px;
}

.gc-player-hub p {
  margin: 4px 0 0;
  color: #74809a;
  font-size: 8px;
  line-height: 1.4;
}

.gc-player-hub > b {
  color: #8b96ac;
  font-size: 17px;
}
.upgrade-modal-overlay {
    position:fixed;
    z-index:1000;
    inset:0;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding-top:
        calc(20px + env(safe-area-inset-top));
    background:rgba(2,6,23,.76);
    backdrop-filter:blur(12px);
}


.upgrade-modal {
    width:100%;
    max-width:620px;
    max-height:92vh;
    padding:
        18px
        16px
        calc(22px + env(safe-area-inset-bottom));
    overflow-y:auto;
    border-radius:30px 30px 0 0;
    background:
        linear-gradient(
            180deg,
            #172033,
            #090f1d
        );
    border:
        1px solid
        rgba(255,255,255,.09);
    box-shadow:
        0 -24px 70px
        rgba(0,0,0,.5);
    animation:
        upgradeModalOpen
        .25s ease;
}


@keyframes upgradeModalOpen {

    from {
        opacity:0;
        transform:translateY(45px);
    }

    to {
        opacity:1;
        transform:translateY(0);
    }

}


.upgrade-modal-header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}


.upgrade-modal-header span {
    color:#fbbf24;
    font-size:9px;
    font-weight:900;
    letter-spacing:.15em;
}


.upgrade-modal-header h2 {
    margin:4px 0 0;
    color:#fff;
    font-size:25px;
}


.upgrade-modal-header button {
    width:43px;
    height:43px;
    flex-shrink:0;
    border:none;
    border-radius:15px;
    color:#cbd5e1;
    background:rgba(255,255,255,.07);
    font-size:27px;
    line-height:1;
    cursor:pointer;
}


.upgrade-wallet {
    display:grid;
    grid-template-columns:
        repeat(2,minmax(0,1fr));
    gap:10px;
    margin-top:17px;
}


.upgrade-wallet > div {
    padding:13px;
    border-radius:17px;
    background:rgba(99,102,241,.09);
    border:
        1px solid
        rgba(129,140,248,.12);
}


.upgrade-wallet span {
    display:block;
    color:#64748b;
    font-size:9px;
}


.upgrade-wallet strong {
    display:block;
    margin-top:4px;
    color:#fff;
    font-size:12px;
}


.upgrade-message {
    margin-top:12px;
    padding:11px 13px;
    border-radius:15px;
    font-size:11px;
    font-weight:700;
}


.upgrade-message.success {
    color:#86efac;
    background:rgba(34,197,94,.11);
    border:1px solid rgba(34,197,94,.18);
}


.upgrade-message.error {
    color:#fca5a5;
    background:rgba(239,68,68,.1);
    border:1px solid rgba(239,68,68,.17);
}


.upgrade-list {
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:14px;
}


.upgrade-card {
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:14px;
    border-radius:21px;
    background:rgba(30,41,59,.63);
    border:
        1px solid
        rgba(255,255,255,.07);
}


.upgrade-card.completed {
    opacity:.68;
}


.upgrade-card-icon {
    width:47px;
    height:47px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    border-radius:15px;
    background:rgba(255,255,255,.07);
    font-size:24px;
}


.upgrade-card-info {
    min-width:0;
    flex:1;
}


.upgrade-card-title {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
}


.upgrade-card-title h3 {
    margin:0;
    color:#f8fafc;
    font-size:13px;
}


.upgrade-card-title span {
    flex-shrink:0;
    color:#a5b4fc;
    font-size:9px;
    font-weight:800;
}


.upgrade-card-info p {
    margin:6px 0 10px;
    color:#64748b;
    font-size:10px;
    line-height:1.45;
}


.upgrade-card-info button {
    width:100%;
    min-height:39px;
    padding:8px 12px;
    border:none;
    border-radius:13px;
    color:#94a3b8;
    background:rgba(255,255,255,.06);
    font-size:10px;
    font-weight:900;
    cursor:pointer;
}


.upgrade-card-info button.can-afford {
    color:#111827;
    background:
        linear-gradient(
            135deg,
            #fde047,
            #f59e0b
        );
    box-shadow:
        0 9px 22px
        rgba(245,158,11,.18);
}


.upgrade-card-info button:disabled {
    cursor:not-allowed;
}


.upgrade-modal-footer {
    margin-top:15px;
    padding:12px;
    text-align:center;
    border-radius:16px;
    color:#64748b;
    background:rgba(255,255,255,.035);
    font-size:9px;
}


@media (min-width:621px) {

    .upgrade-modal-overlay {
        align-items:center;
        padding:20px;
    }


    .upgrade-modal {
        border-radius:30px;
    }

}
.leaderboard-overlay {
    position:fixed;
    z-index:1000;
    inset:0;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding-top:
        calc(20px + env(safe-area-inset-top));
    background:rgba(2,6,23,.78);
    backdrop-filter:blur(12px);
}


.leaderboard-modal {
    width:100%;
    max-width:620px;
    max-height:92vh;
    padding:
        18px
        16px
        calc(22px + env(safe-area-inset-bottom));
    overflow-y:auto;
    border-radius:30px 30px 0 0;
    background:
        linear-gradient(
            180deg,
            #172033,
            #090f1d
        );
    border:1px solid rgba(255,255,255,.09);
    box-shadow:
        0 -24px 70px rgba(0,0,0,.5);
}


.leaderboard-header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}


.leaderboard-header span {
    color:#fbbf24;
    font-size:9px;
    font-weight:900;
    letter-spacing:.15em;
}


.leaderboard-header h2 {
    margin:4px 0 0;
    color:#fff;
    font-size:24px;
}


.leaderboard-header button {
    width:43px;
    height:43px;
    border:none;
    border-radius:15px;
    color:#cbd5e1;
    background:rgba(255,255,255,.07);
    font-size:27px;
}


.leaderboard-summary {
    display:flex;
    justify-content:space-between;
    margin-top:16px;
    padding:12px 14px;
    border-radius:16px;
    background:rgba(99,102,241,.09);
    color:#94a3b8;
    font-size:11px;
}


.leaderboard-summary strong {
    color:#fff;
}


.leaderboard-list {
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-top:12px;
}


.leaderboard-player {
    display:flex;
    align-items:center;
    gap:10px;
    padding:11px;
    border-radius:17px;
    background:rgba(30,41,59,.62);
    border:1px solid rgba(255,255,255,.06);
}


.leaderboard-player.current {
    background:rgba(99,102,241,.15);
    border-color:rgba(129,140,248,.25);
}


.leaderboard-rank {
    width:33px;
    flex-shrink:0;
    text-align:center;
    color:#cbd5e1;
    font-size:13px;
    font-weight:900;
}


.leaderboard-avatar {
    width:41px;
    height:41px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    overflow:hidden;
    border-radius:14px;
    background:rgba(255,255,255,.07);
}


.leaderboard-avatar img {
    width:100%;
    height:100%;
    object-fit:cover;
}


.leaderboard-player-info {
    min-width:0;
    flex:1;
}


.leaderboard-player-info strong {
    display:block;
    overflow:hidden;
    color:#fff;
    font-size:11px;
    text-overflow:ellipsis;
    white-space:nowrap;
}


.leaderboard-player-info span {
    display:block;
    margin-top:3px;
    color:#818cf8;
    font-size:9px;
}


.leaderboard-balance {
    text-align:right;
}


.leaderboard-balance strong {
    display:block;
    color:#f8fafc;
    font-size:11px;
}


.leaderboard-balance span {
    display:block;
    margin-top:3px;
    color:#fbbf24;
    font-size:8px;
}


.current-rank-card {
    margin-top:15px;
    padding:15px;
    border-radius:21px;
    background:
        linear-gradient(
            135deg,
            rgba(99,102,241,.18),
            rgba(168,85,247,.1)
        );
    border:1px solid rgba(129,140,248,.2);
}


.current-rank-title,
.current-rank-main {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}


.current-rank-title span {
    color:#a5b4fc;
    font-size:10px;
}


.current-rank-title strong {
    color:#fff;
    font-size:18px;
}


.current-rank-main {
    margin-top:12px;
}


.current-rank-main > div:last-child {
    text-align:right;
}


.current-rank-main strong {
    display:block;
    color:#fff;
    font-size:12px;
}


.current-rank-main span {
    display:block;
    margin-top:3px;
    color:#94a3b8;
    font-size:9px;
}


.next-rank-hint {
    display:flex;
    justify-content:space-between;
    gap:10px;
    margin-top:13px;
    padding-top:12px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#94a3b8;
    font-size:9px;
}


.next-rank-hint strong {
    color:#fbbf24;
}


.next-rank-hint.first {
    display:block;
    text-align:center;
    color:#fde047;
}


.leaderboard-refresh {
    width:100%;
    height:44px;
    margin-top:13px;
    border:none;
    border-radius:15px;
    color:#111827;
    background:
        linear-gradient(
            135deg,
            #fde047,
            #f59e0b
        );
    font-size:11px;
    font-weight:900;
}


.leaderboard-state {
    min-height:220px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-align:center;
}


.leaderboard-state > div {
    font-size:38px;
}


.leaderboard-state strong {
    color:#fff;
    font-size:13px;
}


.leaderboard-state button {
    min-width:125px;
    height:41px;
    border:none;
    border-radius:14px;
    color:#111827;
    background:#fbbf24;
    font-weight:900;
}


@media (min-width:621px) {

    .leaderboard-overlay {
        align-items:center;
        padding:20px;
    }


    .leaderboard-modal {
        border-radius:30px;
    }

}

.leaderboard-live-dot {
    color:#22c55e;
    font-size:10px;
    vertical-align:middle;
    animation:leaderboardLivePulse 1s ease-in-out infinite;
}

@keyframes leaderboardLivePulse {
    50% { opacity:.3; }
}
.rewards-overlay {
    position:fixed;
    z-index:1000;
    inset:0;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding-top:calc(20px + env(safe-area-inset-top));
    background:rgba(2,6,23,.78);
    backdrop-filter:blur(12px);
}

.rewards-modal {
    width:100%;
    max-width:620px;
    max-height:92vh;
    padding:18px 16px calc(22px + env(safe-area-inset-bottom));
    overflow-y:auto;
    border-radius:30px 30px 0 0;
    background:linear-gradient(180deg,#172033,#090f1d);
    border:1px solid rgba(255,255,255,.09);
    box-shadow:0 -24px 70px rgba(0,0,0,.5);
    animation:rewardsOpen .25s ease;
}

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

.rewards-header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}

.rewards-header span {
    color:#fbbf24;
    font-size:9px;
    font-weight:900;
    letter-spacing:.15em;
}

.rewards-header h2 {
    margin:4px 0 0;
    color:#fff;
    font-size:24px;
}

.rewards-header button {
    width:43px;
    height:43px;
    border:none;
    border-radius:15px;
    color:#cbd5e1;
    background:rgba(255,255,255,.07);
    font-size:27px;
}

.rewards-progress-card {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    margin-top:16px;
}

.rewards-progress-card > div {
    padding:13px;
    border-radius:17px;
    background:rgba(99,102,241,.09);
    border:1px solid rgba(129,140,248,.12);
}

.rewards-progress-card span,
.next-reward-card span {
    display:block;
    color:#64748b;
    font-size:9px;
}

.rewards-progress-card strong {
    display:block;
    margin-top:4px;
    color:#fff;
    font-size:13px;
}

.next-reward-card {
    margin-top:12px;
    padding:14px;
    border-radius:18px;
    background:linear-gradient(135deg,rgba(245,158,11,.15),rgba(250,204,21,.07));
    border:1px solid rgba(251,191,36,.17);
}

.next-reward-card.completed {
    background:linear-gradient(135deg,rgba(34,197,94,.14),rgba(16,185,129,.07));
    border-color:rgba(34,197,94,.18);
}

.next-reward-card strong {
    display:block;
    margin-top:6px;
    color:#fff;
    font-size:12px;
}

.next-reward-card p {
    margin:5px 0 0;
    color:#94a3b8;
    font-size:9px;
}

.rewards-list {
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:14px;
}

.reward-card {
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:14px;
    border-radius:20px;
    background:rgba(30,41,59,.63);
    border:1px solid rgba(255,255,255,.07);
}

.reward-card.unlocked {
    background:linear-gradient(135deg,rgba(34,197,94,.11),rgba(30,41,59,.66));
    border-color:rgba(34,197,94,.18);
}

.reward-card.locked {
    opacity:.68;
}

.reward-icon {
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    border-radius:16px;
    background:rgba(255,255,255,.07);
    font-size:24px;
}

.reward-info {
    min-width:0;
    flex:1;
}

.reward-title-row {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
}

.reward-title-row h3 {
    margin:0;
    color:#f8fafc;
    font-size:13px;
}

.reward-title-row span {
    flex-shrink:0;
    color:#a5b4fc;
    font-size:9px;
    font-weight:800;
}

.reward-info p {
    margin:6px 0 9px;
    color:#64748b;
    font-size:10px;
    line-height:1.45;
}

.reward-info > strong {
    color:#94a3b8;
    font-size:9px;
}

.reward-card.unlocked .reward-info > strong {
    color:#86efac;
}

@media (min-width:621px) {
    .rewards-overlay {
        align-items:center;
        padding:20px;
    }

    .rewards-modal {
        border-radius:30px;
    }
}
.igtap2-page {
  width: min(100%,720px);
  min-height: 100vh;
  margin: 0 auto;
  padding:
    calc(18px + env(safe-area-inset-top))
    14px
    calc(35px + env(safe-area-inset-bottom));
  color: #fff;
  background:
    radial-gradient(circle at 50% 16%,rgba(99,102,241,.16),transparent 30%),
    radial-gradient(circle at 15% 55%,rgba(49,215,255,.08),transparent 26%);
}

.igtap2-page button {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

.igtap2-header {
  display: grid;
  grid-template-columns: 43px minmax(0,1fr) auto;
  align-items: flex-start;
  gap: 12px;
}

.igtap2-back {
  width: 43px;
  height: 43px;
  border: 1px solid rgba(148,163,184,.15);
  border-radius: 14px;
  color: #fff;
  background: rgba(9,15,30,.86);
  font-size: 20px;
}

.igtap2-header > div:nth-child(2) > span {
  color: #8f88ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.igtap2-header h1 {
  margin: 6px 0 4px;
  font-size: clamp(28px,8vw,40px);
  line-height: 1;
}

.igtap2-header p {
  margin: 0;
  color: #7f8ba4;
  font-size: 10px;
  line-height: 1.45;
}

.igtap2-sync {
  display: flex;
  align-items: center;
  gap: 8px;
}

.igtap2-sync strong {
  padding: 9px 10px;
  border: 1px solid rgba(124,92,255,.24);
  border-radius: 12px;
  color: #c4b5fd;
  background: rgba(124,92,255,.1);
  font-size: 9px;
}

.igtap2-sync i {
  width: 9px;
  height: 9px;
  border: 2px solid #27334d;
  border-top-color: #31d7ff;
  border-radius: 50%;
  animation: igtap2-spin .7s linear infinite;
}

.igtap2-message {
  margin-top: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(248,113,113,.22);
  border-radius: 14px;
  color: #fecaca;
  background: rgba(127,29,29,.15);
  font-size: 10px;
}

.igtap2-stats {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 8px;
  margin-top: 17px;
}

.igtap2-stats article,
.igtap2-level,
.igtap2-energy,
.igtap2-lifetime {
  border: 1px solid rgba(148,163,184,.13);
  background: linear-gradient(145deg,rgba(17,24,39,.95),rgba(8,13,28,.93));
}

.igtap2-stats article {
  padding: 12px 10px;
  border-radius: 16px;
}

.igtap2-stats small,
.igtap2-stats strong {
  display: block;
}

.igtap2-stats small {
  color: #74809a;
  font-size: 7px;
}

.igtap2-stats strong {
  margin-top: 6px;
  font-size: 17px;
}

.igtap2-level {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  margin-top: 9px;
  padding: 13px;
  border-radius: 18px;
}

.igtap2-level span,
.igtap2-level strong {
  display: block;
}

.igtap2-level span {
  color: #75819c;
  font-size: 7px;
  font-weight: 900;
}

.igtap2-level strong {
  margin-top: 5px;
  font-size: 11px;
}

.igtap2-level > b {
  color: #a5f3fc;
  font-size: 11px;
}

.igtap2-level__track {
  grid-column: 1 / -1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #111a30;
}

.igtap2-level__track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,#7c5cff,#31d7ff);
  box-shadow: 0 0 18px rgba(49,215,255,.22);
}

.igtap2-arena {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 410px;
  margin-top: 11px;
  overflow: hidden;
  border: 1px solid rgba(124,92,255,.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 47%,rgba(124,92,255,.22),transparent 34%),
    linear-gradient(180deg,#121a36,#080e1d);
}

.igtap2-arena__glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(250,204,21,.18);
  filter: blur(38px);
}

.igtap2-arena__rings {
  position: absolute;
  width: 335px;
  height: 335px;
  border: 1px solid rgba(124,92,255,.15);
  border-radius: 50%;
}

.igtap2-arena__rings::before,
.igtap2-arena__rings::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(49,215,255,.1);
  border-radius: 50%;
}

.igtap2-arena__rings::before {
  inset: 28px;
}

.igtap2-arena__rings::after {
  inset: 62px;
}

.igtap2-coin {
  position: relative;
  z-index: 2;
  width: min(72vw,270px);
  height: min(72vw,270px);
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  transition: transform .08s ease;
  touch-action: manipulation;
}

.igtap2-coin:active {
  transform: scale(.965);
}

.igtap2-coin:disabled {
  opacity: .5;
  filter: grayscale(.5);
}

.igtap2-coin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 22px 25px rgba(0,0,0,.42));
}

.igtap2-effects {
  position: absolute;
  z-index: 5;
  top: 66px;
  left: 0;
  right: 0;
  pointer-events: none;
  text-align: center;
}

.igtap2-autoclick {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid rgba(49,215,255,.22);
  border-radius: 999px;
  color: #a5f3fc;
  background: rgba(8,47,73,.3);
  font-size: 10px;
  font-weight: 900;
  animation: igtap2-pop 1s ease both;
}

.igtap2-tap-number {
  position: absolute;
  z-index: 10;
  transform: translate(-50%,-50%);
  color: #fff7ae;
  text-shadow: 0 2px 12px rgba(250,204,21,.65);
  font-size: 18px;
  font-weight: 900;
  pointer-events: none;
  animation: igtap2-float .76s ease-out both;
}

.igtap2-arena__hint {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  text-align: center;
}

.igtap2-arena__hint strong,
.igtap2-arena__hint span {
  display: block;
}

.igtap2-arena__hint strong {
  font-size: 12px;
}

.igtap2-arena__hint span {
  margin-top: 5px;
  color: #7d89a2;
  font-size: 8px;
}

.igtap2-energy {
  margin-top: 10px;
  padding: 14px;
  border-radius: 18px;
}

.igtap2-energy__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 13px;
}

.igtap2-energy__head span,
.igtap2-energy__head strong {
  display: block;
}

.igtap2-energy__head span {
  color: #fcd34d;
  font-size: 8px;
  font-weight: 900;
}

.igtap2-energy__head strong {
  margin-top: 5px;
  font-size: 12px;
}

.igtap2-energy__head > b {
  color: #fde68a;
  font-size: 11px;
}

.igtap2-energy__track {
  height: 10px;
  margin-top: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: #171d2f;
}

.igtap2-energy__track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,#f59e0b,#fde047);
  box-shadow: 0 0 18px rgba(250,204,21,.25);
}

.igtap2-energy__footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  color: #75819a;
  font-size: 7px;
}

.igtap2-skills {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(52,211,153,.15);
  border-radius: 16px;
  background: rgba(6,78,59,.11);
}

.igtap2-skills > span {
  color: #6ee7b7;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .11em;
}

.igtap2-skills > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.igtap2-skills b {
  padding: 6px 8px;
  border-radius: 9px;
  color: #bbf7d0;
  background: rgba(52,211,153,.1);
  font-size: 8px;
}

.igtap2-actions {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.igtap2-action {
  display: grid;
  grid-template-columns: 46px minmax(0,1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg,#11192d,#080e1d);
  text-align: left;
}

.igtap2-action--upgrade {
  border-color: rgba(124,92,255,.3);
  background:
    radial-gradient(circle at 90% 15%,rgba(124,92,255,.15),transparent 35%),
    linear-gradient(145deg,#141633,#080e1d);
}

.igtap2-action > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(124,92,255,.11);
  font-size: 22px;
}

.igtap2-action small,
.igtap2-action strong,
.igtap2-action p {
  display: block;
}

.igtap2-action small {
  color: #8f88ff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .1em;
}

.igtap2-action strong {
  margin-top: 4px;
  font-size: 13px;
}

.igtap2-action p {
  margin: 4px 0 0;
  color: #74809a;
  font-size: 8px;
  line-height: 1.4;
}

.igtap2-action > b {
  color: #8b96ac;
  font-size: 17px;
}

.igtap2-lifetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 10px;
  padding: 13px;
  border-radius: 18px;
}

.igtap2-lifetime > div + div {
  border-left: 1px solid rgba(148,163,184,.1);
  padding-left: 13px;
}

.igtap2-lifetime small,
.igtap2-lifetime strong {
  display: block;
}

.igtap2-lifetime small {
  color: #74809a;
  font-size: 7px;
}

.igtap2-lifetime strong {
  margin-top: 6px;
  font-size: 11px;
}

.igtap2-rare {
  position: fixed;
  z-index: 90;
  left: 14px;
  right: 14px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  width: min(calc(100% - 28px),520px);
  margin: auto;
  padding: 12px;
  border: 1px solid rgba(251,191,36,.28);
  border-radius: 17px;
  color: #fff;
  background: rgba(31,24,10,.95);
  backdrop-filter: blur(15px);
  text-align: left;
  box-shadow: 0 16px 45px rgba(0,0,0,.35);
}

.igtap2-rare.ticket {
  border-color: rgba(49,215,255,.28);
  background: rgba(8,34,48,.96);
}

.igtap2-rare > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(255,255,255,.06);
  font-size: 21px;
}

.igtap2-rare strong,
.igtap2-rare small {
  display: block;
}

.igtap2-rare strong {
  font-size: 11px;
}

.igtap2-rare small {
  margin-top: 4px;
  color: #b9ab85;
  font-size: 8px;
}

.igtap2-rare > b {
  font-size: 17px;
}

.igtap2-state {
  display: grid;
  place-items: center;
  min-height: 75vh;
  text-align: center;
}

.igtap2-state i {
  width: 42px;
  height: 42px;
  border: 4px solid #202a41;
  border-top-color: #7c5cff;
  border-radius: 50%;
  animation: igtap2-spin .8s linear infinite;
}

.igtap2-state strong,
.igtap2-state span {
  display: block;
}

.igtap2-state strong {
  margin-top: 15px;
}

.igtap2-state span {
  margin-top: 6px;
  color: #7f8ba4;
  font-size: 10px;
}

.igtap2-state > button {
  margin-top: 15px;
  border: 0;
  border-radius: 13px;
  padding: 11px 14px;
  color: #fff;
  background: #6d5dfc;
  font-weight: 900;
}

.igtap2-state__icon {
  font-size: 50px !important;
}

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

@keyframes igtap2-float {
  0% {
    opacity: 0;
    transform: translate(-50%,-20%) scale(.85);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%,-130%) scale(1.18);
  }
}

@keyframes igtap2-pop {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(.9);
  }
  20% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@media (max-width: 430px) {
  .igtap2-header {
    grid-template-columns: 43px minmax(0,1fr);
  }

  .igtap2-sync {
    grid-column: 2;
  }

  .igtap2-stats {
    grid-template-columns: 1fr 1fr;
  }

  .igtap2-stats article:first-child {
    grid-column: 1 / -1;
  }

  .igtap2-arena {
    min-height: 390px;
  }

  .igtap2-energy__footer {
    flex-direction: column;
  }
}
.quests2-page {
  width: min(100%,720px);
  min-height: 100vh;
  margin: 0 auto;
  padding:
    calc(20px + env(safe-area-inset-top))
    14px
    calc(120px + env(safe-area-inset-bottom));
  color: #fff;
}

.quests2-page button {
  font: inherit;
}

.quests2-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 17px;
}

.quests2-header > div:first-child > span {
  color: #8f88ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.quests2-header h1 {
  margin: 7px 0 5px;
  font-size: clamp(29px,8vw,40px);
  line-height: 1;
}

.quests2-header p {
  max-width: 450px;
  margin: 0;
  color: #8793ad;
  font-size: 12px;
  line-height: 1.5;
}

.quests2-header__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(52,211,153,.2);
  border-radius: 19px;
  background: rgba(6,78,59,.17);
  font-size: 28px;
}

.quests2-summary {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 9px;
  margin-top: 18px;
}

.quests2-summary article {
  padding: 13px 10px;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 16px;
  background: rgba(9,15,30,.82);
  text-align: center;
}

.quests2-summary article.is-ready {
  border-color: rgba(52,211,153,.3);
  background: rgba(6,78,59,.17);
}

.quests2-summary small,
.quests2-summary strong {
  display: block;
}

.quests2-summary small {
  color: #74809a;
  font-size: 7px;
}

.quests2-summary strong {
  margin-top: 7px;
  font-size: 18px;
}

.quests2-summary .is-ready strong {
  color: #6ee7b7;
}

.quests2-message {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(52,211,153,.24);
  border-radius: 14px;
  color: #bbf7d0;
  background: rgba(6,78,59,.16);
  font-size: 11px;
}

.quests2-message.is-error {
  border-color: rgba(248,113,113,.24);
  color: #fecaca;
  background: rgba(127,29,29,.16);
}

.quests2-tabs {
  display: flex;
  gap: 7px;
  margin-top: 15px;
  overflow-x: auto;
  scrollbar-width: none;
}

.quests2-tabs::-webkit-scrollbar {
  display: none;
}

.quests2-tabs button {
  flex: 0 0 auto;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 12px;
  padding: 9px 11px;
  color: #8b97af;
  background: #111a2e;
  font-size: 9px;
  font-weight: 900;
}

.quests2-tabs button.active {
  border-color: rgba(124,92,255,.38);
  color: #fff;
  background: #6d5dfc;
}

.quests2-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.quest2-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 23px;
  background:
    radial-gradient(circle at 92% 5%,rgba(124,92,255,.14),transparent 34%),
    linear-gradient(145deg,#10182b,#080e1d);
}

.quest2-card.is-completed {
  border-color: rgba(52,211,153,.32);
  box-shadow: 0 16px 45px rgba(6,78,59,.12);
}

.quest2-card.is-claimed {
  opacity: .72;
}

.quest2-card__top {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) auto;
  align-items: flex-start;
  gap: 12px;
}

.quest2-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(124,92,255,.2);
  border-radius: 17px;
  background: rgba(124,92,255,.1);
  font-size: 25px;
}

.quest2-card__copy {
  min-width: 0;
}

.quest2-card__copy > span {
  color: #a5b4fc;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.quest2-card__copy h2 {
  margin: 6px 0 4px;
  font-size: 17px;
}

.quest2-card__copy p {
  margin: 0;
  color: #78849e;
  font-size: 10px;
  line-height: 1.45;
}

.quest2-card__top > b {
  padding: 6px 8px;
  border-radius: 999px;
  color: #86efac;
  background: rgba(6,78,59,.2);
  font-size: 7px;
}

.quest2-overall {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.quest2-overall span,
.quest2-overall strong {
  display: block;
}

.quest2-overall span {
  color: #74809a;
  font-size: 7px;
}

.quest2-overall strong {
  margin-top: 5px;
  font-size: 12px;
}

.quest2-overall > b {
  color: #6ee7b7;
  font-size: 12px;
}

.quest2-track {
  height: 9px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #111a30;
}

.quest2-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,#34d399,#31d7ff);
  box-shadow: 0 0 18px rgba(52,211,153,.22);
}

.quest2-conditions {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.quest2-conditions > div {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 7px 12px;
  padding: 10px 11px;
  border: 1px solid rgba(148,163,184,.1);
  border-radius: 13px;
  background: rgba(8,14,29,.78);
}

.quest2-conditions span {
  color: #9ba6bc;
  font-size: 9px;
}

.quest2-conditions strong {
  font-size: 9px;
}

.quest2-conditions > div > div {
  grid-column: 1 / -1;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #172039;
}

.quest2-conditions i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #7c5cff;
}

.quest2-rewards {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.quest2-rewards span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 9px;
  border: 1px solid rgba(251,191,36,.12);
  border-radius: 11px;
  color: #fef3c7;
  background: rgba(133,77,14,.12);
  font-size: 9px;
}

.quest2-rewards b {
  font-size: 9px;
}

.quest2-card > button {
  width: 100%;
  margin-top: 14px;
  border: 0;
  border-radius: 13px;
  padding: 12px;
  color: #052e26;
  background: linear-gradient(135deg,#6ee7b7,#2dd4bf);
  font-weight: 900;
}

.quest2-card > button:disabled {
  color: #77839a;
  background: #172039;
}

.quest2-state {
  display: grid;
  place-items: center;
  min-height: 270px;
  margin-top: 14px;
  padding: 25px;
  border: 1px solid rgba(148,163,184,.12);
  border-radius: 22px;
  background: rgba(9,15,30,.72);
  text-align: center;
}

.quest2-state i {
  width: 39px;
  height: 39px;
  border: 4px solid #1b263e;
  border-top-color: #7c5cff;
  border-radius: 50%;
  animation: quest2-spin .8s linear infinite;
}

.quest2-state strong {
  margin-top: 14px;
}

.quest2-state span {
  margin-top: 6px;
  color: #7f8ba4;
  font-size: 10px;
}

.quests2-state__icon {
  font-size: 50px !important;
}

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

@media (max-width: 460px) {
  .quest2-card__top {
    grid-template-columns: 48px minmax(0,1fr);
  }

  .quest2-card__top > b {
    grid-column: 1 / -1;
    width: max-content;
  }
}
.ig-toast {
  position: fixed;
  z-index: 11000;
  top: calc(14px + env(safe-area-inset-top));
  left: 50%;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 9px;
  width: min(calc(100% - 24px), 440px);
  min-height: 56px;
  padding: 10px;
  transform: translateX(-50%);
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 16px;
  color: #fff;
  background: rgba(10, 16, 32, .96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: igToastIn .2s ease-out both;
}

.ig-toast > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
}

.ig-toast--success > span {
  color: #052e26;
  background: #6ee7b7;
}

.ig-toast--error > span {
  color: #450a0a;
  background: #fca5a5;
}

.ig-toast--info > span {
  color: #082f49;
  background: #7dd3fc;
}

.ig-toast strong {
  font-size: 10px;
  line-height: 1.4;
}

.ig-toast button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 9px;
  color: #94a3b8;
  background: rgba(255, 255, 255, .04);
  font-size: 16px;
}

@keyframes igToastIn {
  from {
    opacity: 0;
    transform: translate(-50%, -12px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ig-toast {
    animation: none;
  }
}
.profile2-page {
  width: min(100%, 720px);
  min-height: 100vh;
  margin: 0 auto;
  padding:
    calc(20px + env(safe-area-inset-top))
    14px
    calc(120px + env(safe-area-inset-bottom));
  color: #fff;
}

.profile2-page button,
.profile2-page input {
  font: inherit;
}

.profile2-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.profile2-header__copy > span,
.profile2-section__head span,
.profile2-referral__copy > span,
.profile2-promo > div:first-child > span,
.profile2-promo__result > span {
  color: #8f88ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.profile2-header h1 {
  margin: 7px 0 5px;
  font-size: clamp(29px,8vw,40px);
  line-height: 1;
}

.profile2-header p {
  max-width: 430px;
  margin: 0;
  color: #8793ad;
  font-size: 12px;
  line-height: 1.5;
}

.profile2-header > button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148,163,184,.15);
  border-radius: 14px;
  color: #fff;
  background: #111a2e;
  font-size: 20px;
}

.profile2-message {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(49,215,255,.23);
  border-radius: 14px;
  color: #bae6fd;
  background: rgba(8,47,73,.22);
  font-size: 11px;
}

.profile2-player {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(124,92,255,.3);
  border-radius: 27px;
  background:
    radial-gradient(circle at 85% 10%,rgba(49,215,255,.16),transparent 35%),
    linear-gradient(145deg,rgba(37,99,235,.22),rgba(124,58,237,.18)),
    #0b1224;
}

.profile2-player::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(124,92,255,.13);
  filter: blur(35px);
}

.profile2-player__avatar {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  font-size: 31px;
  font-weight: 900;
}

.profile2-player__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 23px;
}

.profile2-player__avatar i {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 17px;
  height: 17px;
  border: 4px solid #0b1224;
  border-radius: 50%;
  background: #34d399;
}

.profile2-player__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1;
}

.profile2-player__copy > span {
  color: #a5b4fc;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.profile2-player__copy h2 {
  margin: 6px 0 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 22px;
}

.profile2-player__copy p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #8490a9;
  font-size: 10px;
}

.profile2-player__level {
  position: relative;
  z-index: 1;
  min-width: 62px;
  padding: 10px;
  border: 1px solid rgba(49,215,255,.2);
  border-radius: 17px;
  background: rgba(8,47,73,.2);
  text-align: center;
}

.profile2-player__level small,
.profile2-player__level strong {
  display: block;
}

.profile2-player__level small {
  color: #67e8f9;
  font-size: 7px;
}

.profile2-player__level strong {
  margin-top: 5px;
  font-size: 23px;
}

.profile2-level {
  margin-top: 11px;
  padding: 15px;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 20px;
  background: rgba(9,15,30,.82);
}

.profile2-level__head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.profile2-level__head small,
.profile2-level__head strong {
  display: block;
}

.profile2-level__head small {
  color: #75819b;
  font-size: 7px;
}

.profile2-level__head strong {
  margin-top: 5px;
  font-size: 12px;
}

.profile2-level__head b {
  color: #a5f3fc;
  font-size: 12px;
}

.profile2-level__track {
  height: 9px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #172039;
}

.profile2-level__track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,#31d7ff,#7c5cff);
  box-shadow: 0 0 18px rgba(49,215,255,.28);
}

.profile2-wallet {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 9px;
  margin-top: 11px;
}

.profile2-wallet article {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 10px;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 17px;
  background: rgba(9,15,30,.82);
}

.profile2-wallet article > span {
  font-size: 21px;
}

.profile2-wallet small,
.profile2-wallet strong {
  display: block;
}

.profile2-wallet small {
  color: #74809a;
  font-size: 7px;
}

.profile2-wallet strong {
  margin-top: 5px;
  font-size: 14px;
}

.profile2-referral {
  position: relative;
  margin-top: 14px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(52,211,153,.22);
  border-radius: 25px;
  background:
    radial-gradient(circle at 90% 20%,rgba(52,211,153,.17),transparent 36%),
    linear-gradient(145deg,#09251f,#0b1224);
}

.profile2-referral__copy {
  position: relative;
  z-index: 1;
  width: 68%;
}

.profile2-referral h2 {
  margin: 7px 0 5px;
  font-size: 22px;
}

.profile2-referral p {
  margin: 0;
  color: #8da79f;
  font-size: 10px;
  line-height: 1.5;
}

.profile2-referral__season {
  margin-top: 13px;
  padding: 10px;
  border: 1px solid rgba(52,211,153,.15);
  border-radius: 13px;
  background: rgba(6,78,59,.16);
}

.profile2-referral__season small,
.profile2-referral__season strong {
  display: block;
}

.profile2-referral__season small {
  color: #6ee7b7;
  font-size: 8px;
}

.profile2-referral__season strong {
  margin-top: 5px;
  font-size: 12px;
}

.profile2-referral__icon {
  position: absolute;
  top: 34px;
  right: 24px;
  font-size: 57px;
}

.profile2-referral > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: 17px;
  padding: 13px 15px;
  border: 0;
  border-radius: 14px;
  color: #052e26;
  background: linear-gradient(135deg,#6ee7b7,#2dd4bf);
  font-weight: 900;
}

.profile2-referral > button:disabled {
  opacity: .45;
}

.profile2-stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 9px;
  margin-top: 12px;
}

.profile2-stats article {
  padding: 13px;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 17px;
  background: rgba(9,15,30,.82);
}

.profile2-stats article > span {
  display: block;
  font-size: 20px;
}

.profile2-stats small,
.profile2-stats strong {
  display: block;
}

.profile2-stats small {
  margin-top: 8px;
  color: #74809a;
  font-size: 8px;
}

.profile2-stats strong {
  margin-top: 5px;
  font-size: 17px;
}

.profile2-promo,
.profile2-section {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 23px;
  background: rgba(9,15,30,.84);
}

.profile2-promo h2,
.profile2-section__head h2 {
  margin: 6px 0 5px;
  font-size: 19px;
}

.profile2-promo p {
  margin: 0;
  color: #7f8ba4;
  font-size: 10px;
  line-height: 1.5;
}

.profile2-promo__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 14px;
}

.profile2-promo__form input {
  min-width: 0;
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 13px;
  padding: 12px;
  color: #fff;
  background: #080e1d;
  outline: none;
  text-transform: uppercase;
}

.profile2-promo__form input:focus {
  border-color: #7c5cff;
}

.profile2-promo__form button {
  border: 0;
  border-radius: 13px;
  padding: 0 14px;
  color: #fff;
  background: linear-gradient(135deg,#7c5cff,#31d7ff);
  font-weight: 900;
}

.profile2-promo__form button:disabled {
  opacity: .45;
}

.profile2-promo__result {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid rgba(52,211,153,.22);
  border-radius: 15px;
  background: rgba(6,78,59,.16);
}

.profile2-promo__result > strong {
  display: block;
  margin-top: 5px;
}

.profile2-promo__result > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.profile2-promo__result b {
  padding: 6px 8px;
  border-radius: 9px;
  color: #bbf7d0;
  background: rgba(52,211,153,.11);
  font-size: 8px;
}

.profile2-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.profile2-section__head > b {
  padding: 7px 9px;
  border-radius: 10px;
  color: #a5f3fc;
  background: rgba(8,47,73,.2);
  font-size: 8px;
}

.profile2-tabs {
  display: flex;
  gap: 7px;
  margin-top: 13px;
  overflow-x: auto;
  scrollbar-width: none;
}

.profile2-tabs::-webkit-scrollbar {
  display: none;
}

.profile2-tabs button {
  flex: 0 0 auto;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 12px;
  padding: 9px 11px;
  color: #8b97af;
  background: #111a2e;
  font-size: 9px;
  font-weight: 900;
}

.profile2-tabs button.active {
  border-color: rgba(124,92,255,.38);
  color: #fff;
  background: #6d5dfc;
}

.profile2-board {
  margin-top: 13px;
}

.profile2-board__row {
  display: grid;
  grid-template-columns: 38px 42px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.profile2-board__row + .profile2-board__row {
  border-top: 1px solid rgba(148,163,184,.08);
}

.profile2-board__row.is-current {
  margin: 0 -8px;
  padding: 10px 8px;
  border-radius: 13px;
  background: rgba(124,92,255,.11);
}

.profile2-board__place {
  display: grid;
  place-items: center;
  min-height: 34px;
  color: #9ca8bf;
  font-size: 13px;
  font-weight: 900;
}

.profile2-board__avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 13px;
  background: #172039;
  font-size: 12px;
  font-weight: 900;
}

.profile2-board__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile2-board__name {
  min-width: 0;
}

.profile2-board__name strong,
.profile2-board__name small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile2-board__name strong {
  font-size: 11px;
}

.profile2-board__name small {
  margin-top: 4px;
  color: #74809a;
  font-size: 8px;
}

.profile2-board__row > b {
  color: #c4b5fd;
  font-size: 11px;
}

.profile2-loading,
.profile2-empty {
  margin-top: 13px;
  padding: 18px;
  border-radius: 15px;
  color: #7f8ba4;
  background: #0a1020;
  text-align: center;
  font-size: 10px;
}

@media (max-width: 520px) {
  .profile2-wallet {
    grid-template-columns: 1fr;
  }

  .profile2-referral__copy {
    width: 72%;
  }

  .profile2-promo__form {
    grid-template-columns: 1fr;
  }

  .profile2-promo__form button {
    min-height: 43px;
  }
}


.profile2-prizes {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr) auto;
  align-items: center;
  gap: 11px;
  width: 100%;
  margin-top: 13px;
  padding: 14px;
  border: 1px solid rgba(124,92,255,.27);
  border-radius: 19px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%,rgba(124,92,255,.15),transparent 34%),
    linear-gradient(145deg,#141633,#080e1d);
  text-align: left;
}

.profile2-prizes > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: rgba(124,92,255,.11);
  font-size: 23px;
}

.profile2-prizes small,
.profile2-prizes strong,
.profile2-prizes p {
  display: block;
}

.profile2-prizes small {
  color: #8f88ff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .1em;
}

.profile2-prizes strong {
  margin-top: 4px;
  font-size: 13px;
}

.profile2-prizes p {
  margin: 4px 0 0;
  color: #74809a;
  font-size: 8px;
  line-height: 1.4;
}

.profile2-prizes > b {
  color: #8b96ac;
  font-size: 17px;
}


.profile2-referral__link {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  padding: 11px 12px;
  overflow: hidden;
  border: 1px solid rgba(52, 211, 153, .16);
  border-radius: 13px;
  background: rgba(6, 78, 59, .14);
}

.profile2-referral__link small,
.profile2-referral__link strong {
  display: block;
}

.profile2-referral__link small {
  color: #6ee7b7;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .08em;
}

.profile2-referral__link strong {
  margin-top: 6px;
  overflow: hidden;
  color: #d1fae5;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
}

.profile2-referral__actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.profile2-referral__actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  border-radius: 14px;
  padding: 11px 12px;
  font-size: 9px;
  font-weight: 900;
}

.profile2-referral__actions button.primary {
  border: 0;
  color: #052e26;
  background: linear-gradient(135deg, #6ee7b7, #2dd4bf);
  box-shadow: 0 10px 28px rgba(45, 212, 191, .13);
}

.profile2-referral__actions button.secondary {
  border: 1px solid rgba(52, 211, 153, .2);
  color: #d1fae5;
  background: rgba(6, 78, 59, .18);
}

.profile2-referral__actions button:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.profile2-referral__actions button:not(:disabled):active {
  transform: scale(.985);
}

@media (max-width: 430px) {
  .profile2-referral__actions {
    grid-template-columns: 1fr;
  }

  .profile2-referral__copy {
    width: 100%;
    padding-right: 54px;
  }
}
.player-hub-page {
  width: min(100%,760px);
  min-height: 100vh;
  margin: 0 auto;
  padding:
    calc(18px + env(safe-area-inset-top))
    14px
    calc(35px + env(safe-area-inset-bottom));
  color: #fff;
}

.player-hub-page button,
.player-hub-page input,
.player-hub-page select {
  font: inherit;
}

.player-hub-header {
  display: grid;
  grid-template-columns: 43px minmax(0,1fr) 43px;
  align-items: flex-start;
  gap: 12px;
}

.player-hub-header > button {
  width: 43px;
  height: 43px;
  border: 1px solid rgba(148,163,184,.15);
  border-radius: 14px;
  color: #fff;
  background: rgba(9,15,30,.86);
  font-size: 19px;
}

.player-hub-header > div > span {
  color: #8f88ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.player-hub-header h1 {
  margin: 6px 0 4px;
  font-size: clamp(28px,8vw,40px);
  line-height: 1;
}

.player-hub-header p {
  margin: 0;
  color: #7f8ba4;
  font-size: 10px;
  line-height: 1.45;
}

.player-hub-summary {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
  margin-top: 17px;
}

.player-hub-summary article {
  padding: 12px 8px;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 16px;
  background: rgba(9,15,30,.82);
  text-align: center;
}

.player-hub-summary small,
.player-hub-summary strong {
  display: block;
}

.player-hub-summary small {
  color: #74809a;
  font-size: 6px;
}

.player-hub-summary strong {
  margin-top: 6px;
  font-size: 17px;
}

.player-hub-message {
  margin-top: 11px;
  padding: 11px 13px;
  border: 1px solid rgba(248,113,113,.22);
  border-radius: 14px;
  color: #fecaca;
  background: rgba(127,29,29,.15);
  font-size: 10px;
}

.player-hub-tabs {
  display: flex;
  gap: 7px;
  margin-top: 15px;
  overflow-x: auto;
  scrollbar-width: none;
}

.player-hub-tabs::-webkit-scrollbar {
  display: none;
}

.player-hub-tabs button {
  flex: 0 0 auto;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 12px;
  padding: 9px 11px;
  color: #8b97af;
  background: #111a2e;
  font-size: 9px;
  font-weight: 900;
}

.player-hub-tabs button.active {
  border-color: rgba(124,92,255,.38);
  color: #fff;
  background: #6d5dfc;
}

.player-hub-filters {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 8px;
  margin-top: 13px;
}

.player-hub-filters input,
.player-hub-filters select {
  min-width: 0;
  border: 1px solid rgba(148,163,184,.15);
  border-radius: 13px;
  padding: 11px 12px;
  color: #fff;
  background: #0a1020;
  outline: none;
}

.player-hub-filters input:focus,
.player-hub-filters select:focus {
  border-color: #7c5cff;
}

.player-inventory-grid,
.player-partners-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 11px;
  margin-top: 12px;
}

.player-game-card,
.player-partners-grid > article {
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.13);
  border-radius: 21px;
  background: linear-gradient(145deg,#10182b,#080e1d);
}

.player-game-card__visual,
.player-partner-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 150px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%,rgba(124,92,255,.22),transparent 45%),
    #111a31;
}

.player-game-card__visual img,
.player-partner-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-game-card__visual > span,
.player-partner-card__visual > span {
  font-size: 50px;
}

.player-game-card__visual > b,
.player-partner-card__visual > b {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(5,8,18,.7);
  backdrop-filter: blur(10px);
  font-size: 7px;
}

.player-game-card__body,
.player-partner-card__body {
  padding: 14px;
}

.player-game-card__body > small {
  color: #8f88ff;
  font-size: 7px;
  font-weight: 900;
}

.player-game-card h2,
.player-partner-card__body h2 {
  margin: 5px 0 4px;
  font-size: 16px;
}

.player-game-card p,
.player-partner-card__body p {
  min-height: 28px;
  margin: 0;
  color: #74809a;
  font-size: 8px;
  line-height: 1.45;
}

.player-game-card button,
.player-partner-card__body button {
  width: 100%;
  margin-top: 12px;
  border: 0;
  border-radius: 12px;
  padding: 10px;
  color: #fff;
  background: linear-gradient(135deg,#7c5cff,#31d7ff);
  font-size: 9px;
  font-weight: 900;
}

.player-case-history,
.player-raffles {
  margin-top: 12px;
}

.player-case-history > article,
.player-raffle-history > article {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
}

.player-case-history > article + article,
.player-raffle-history > article + article {
  border-top: 1px solid rgba(148,163,184,.08);
}

.player-case-history > article > div:first-child {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 14px;
  background: #172039;
}

.player-case-history img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-case-history section small,
.player-raffle-history small {
  color: #8f88ff;
  font-size: 7px;
  font-weight: 900;
}

.player-case-history section h2,
.player-raffle-history h3 {
  margin: 4px 0;
  font-size: 12px;
}

.player-case-history section p,
.player-raffle-history p {
  margin: 0;
  color: #74809a;
  font-size: 8px;
}

.player-case-history > article > b,
.player-raffle-history > article > b {
  color: #fef3c7;
  font-size: 9px;
  text-align: right;
}

.player-raffle-active {
  overflow: hidden;
  border: 1px solid rgba(251,191,36,.22);
  border-radius: 23px;
  background: #0b1224;
}

.player-raffle-active__visual {
  min-height: 220px;
  padding: 21px;
  background:
    radial-gradient(circle at 85% 20%,rgba(251,191,36,.18),transparent 35%),
    linear-gradient(145deg,#2b1f0c,#0b1224);
  background-size: cover;
  background-position: center;
}

.player-raffle-active__visual > span {
  color: #fbbf24;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}

.player-raffle-active h2 {
  max-width: 410px;
  margin: 9px 0 6px;
  font-size: 24px;
}

.player-raffle-active__visual p {
  max-width: 410px;
  margin: 0;
  color: #a49a83;
  font-size: 10px;
  line-height: 1.5;
}

.player-raffle-active__visual > div {
  margin-top: 17px;
}

.player-raffle-active__visual b {
  display: inline-block;
  padding: 9px 11px;
  border-radius: 12px;
  color: #fef3c7;
  background: rgba(251,191,36,.11);
  font-size: 10px;
}

.player-raffle-active__notice {
  margin: 0;
  padding: 13px 15px;
  color: #7f8ba4;
  font-size: 8px;
  line-height: 1.5;
}

.player-raffle-history {
  margin-top: 11px;
  padding: 0 12px;
  border: 1px solid rgba(148,163,184,.12);
  border-radius: 18px;
  background: rgba(9,15,30,.75);
}

.player-raffle-history > article.is-winner {
  margin: 0 -7px;
  padding: 11px 7px;
  border-radius: 13px;
  background: rgba(133,77,14,.15);
}

.player-raffle-history__place {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #172039;
  font-size: 20px;
}

.player-partner-card__body > div {
  margin-top: 10px;
  padding: 8px;
  border-radius: 10px;
  color: #bbf7d0;
  background: rgba(6,78,59,.14);
  font-size: 9px;
  font-weight: 900;
}

.player-partners-grid > article.is-activated {
  opacity: .7;
}

.player-partner-card__visual > b {
  color: #bbf7d0;
  background: rgba(6,78,59,.72);
}

.player-hub-state {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin-top: 12px;
  padding: 24px;
  border: 1px solid rgba(148,163,184,.12);
  border-radius: 21px;
  background: rgba(9,15,30,.72);
  text-align: center;
}

.player-hub-state i {
  width: 39px;
  height: 39px;
  border: 4px solid #1b263e;
  border-top-color: #7c5cff;
  border-radius: 50%;
  animation: hub-spin .8s linear infinite;
}

.player-hub-state strong {
  margin-top: 14px;
}

.player-hub-state span {
  margin-top: 6px;
  color: #7f8ba4;
  font-size: 9px;
}

.player-hub-state__icon {
  font-size: 48px !important;
}

.hub-sheet-layer {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
}

.hub-sheet-layer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2,5,12,.8);
  backdrop-filter: blur(8px);
}

.hub-key-sheet,
.hub-partner-sheet {
  position: relative;
  z-index: 1;
  width: min(100%,560px);
  max-height: 86vh;
  overflow: auto;
  padding: 20px;
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 28px 28px 20px 20px;
  background:
    radial-gradient(circle at 90% 0,rgba(124,92,255,.18),transparent 35%),
    #0a1020;
}

.hub-key-sheet header,
.hub-partner-sheet header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.hub-key-sheet header span,
.hub-partner-sheet header span {
  color: #8f88ff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}

.hub-key-sheet header h2,
.hub-partner-sheet header h2 {
  margin: 6px 0 3px;
}

.hub-key-sheet header p {
  margin: 0;
  color: #74809a;
  font-size: 9px;
}

.hub-key-sheet header > button,
.hub-partner-sheet header > button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 13px;
  color: #fff;
  background: #121b30;
  font-size: 20px;
}

.hub-key-sheet > img,
.hub-partner-sheet > img,
.hub-key-sheet__fallback,
.hub-partner-sheet__fallback {
  width: 100%;
  height: 180px;
  margin-top: 15px;
  object-fit: cover;
  border-radius: 18px;
}

.hub-key-sheet__fallback,
.hub-partner-sheet__fallback {
  display: grid;
  place-items: center;
  background: #111a31;
  font-size: 55px;
}

.hub-key-sheet__code,
.hub-partner-sheet__code,
.hub-partner-sheet__reward {
  margin-top: 13px;
  padding: 13px;
  border: 1px solid rgba(49,215,255,.16);
  border-radius: 14px;
  background: rgba(8,47,73,.13);
}

.hub-key-sheet__code small,
.hub-partner-sheet__code small,
.hub-partner-sheet__reward small {
  display: block;
  color: #67e8f9;
  font-size: 7px;
}

.hub-key-sheet__code code,
.hub-partner-sheet__code code,
.hub-partner-sheet__reward strong {
  display: block;
  margin-top: 7px;
  overflow-wrap: anywhere;
  color: #cffafe;
  font-size: 13px;
}

.hub-key-sheet__meta {
  display: flex;
  justify-content: space-between;
  gap: 13px;
  margin-top: 10px;
  color: #74809a;
  font-size: 8px;
}

.hub-key-sheet__copy,
.hub-partner-sheet__actions button {
  width: 100%;
  border: 0;
  border-radius: 13px;
  padding: 12px;
  color: #fff;
  background: linear-gradient(135deg,#7c5cff,#31d7ff);
  font-weight: 900;
}

.hub-key-sheet__copy {
  margin-top: 14px;
}

.hub-key-sheet__notice,
.hub-partner-sheet > p {
  color: #7f8ba4;
  font-size: 9px;
  line-height: 1.5;
}

.hub-partner-sheet__message {
  margin-top: 11px;
  padding: 10px;
  border-radius: 12px;
  color: #bbf7d0;
  background: rgba(6,78,59,.16);
  font-size: 9px;
}

.hub-partner-sheet__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 13px;
}

.hub-partner-sheet__actions button.secondary {
  border: 1px solid rgba(148,163,184,.14);
  color: #c5cede;
  background: #172039;
}

.hub-partner-sheet__actions button:disabled {
  color: #74809a;
  background: #172039;
}

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

@media (max-width: 520px) {
  .player-hub-summary {
    grid-template-columns: repeat(2,1fr);
  }

  .player-hub-filters {
    grid-template-columns: 1fr;
  }

  .player-inventory-grid,
  .player-partners-grid {
    grid-template-columns: 1fr;
  }

  .hub-partner-sheet__actions {
    grid-template-columns: 1fr;
  }
}
.bottom-nav{position:fixed;z-index:100;left:50%;bottom:max(10px,env(safe-area-inset-bottom));transform:translateX(-50%);width:min(520px,calc(100% - 22px));padding:8px;display:grid;grid-template-columns:repeat(5,1fr);gap:4px;border:1px solid rgba(94,115,154,.38);border-radius:25px;background:rgba(7,12,26,.88);backdrop-filter:blur(22px);box-shadow:0 20px 60px rgba(0,0,0,.48)}.nav-item{position:relative;border:0;border-radius:17px;padding:9px 3px 7px;background:transparent;color:#73809a;display:grid;gap:3px;place-items:center;transition:.18s}.nav-item span{font-size:19px;line-height:1}.nav-item small{font-size:8px;font-weight:700}.nav-item.active{color:#fff;background:linear-gradient(145deg,rgba(52,73,122,.72),rgba(22,32,61,.82))}.nav-item-main{margin-top:-19px;padding-top:10px}.nav-item-main span{width:48px;height:48px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.2);border-radius:17px;background:linear-gradient(145deg,#5b5ce2,#31d7ff);box-shadow:0 10px 28px rgba(49,215,255,.25);font-size:23px}.nav-item-main small{margin-top:1px}.nav-item-main.active{background:transparent}
/* InviteGame Unified Design System v11.1 */
:root {
  color-scheme: dark;

  --ig-bg-0: #040711;
  --ig-bg-1: #070b16;
  --ig-bg-2: #0a1020;
  --ig-surface-1: rgba(13, 20, 39, .82);
  --ig-surface-2: rgba(17, 27, 50, .92);
  --ig-surface-3: #111b32;
  --ig-surface-glass: rgba(10, 16, 32, .72);

  --ig-border-soft: rgba(148, 163, 184, .12);
  --ig-border: rgba(148, 163, 184, .18);
  --ig-border-strong: rgba(148, 163, 184, .28);

  --ig-text-1: #f8fafc;
  --ig-text-2: #cbd5e1;
  --ig-text-3: #8f9ab7;
  --ig-text-4: #64748b;

  --ig-primary: #7c5cff;
  --ig-primary-2: #5b5ce2;
  --ig-cyan: #31d7ff;
  --ig-gold: #fbbf24;
  --ig-orange: #f59e0b;
  --ig-green: #34d399;
  --ig-red: #fb7185;

  --ig-gradient-primary: linear-gradient(135deg, #7c5cff, #31d7ff);
  --ig-gradient-gold: linear-gradient(135deg, #fde047, #f59e0b);
  --ig-gradient-surface: linear-gradient(145deg, #10182b, #080e1d);
  --ig-gradient-page:
    radial-gradient(circle at 14% -8%, rgba(91, 92, 226, .30), transparent 35%),
    radial-gradient(circle at 96% 8%, rgba(49, 215, 255, .14), transparent 30%),
    linear-gradient(180deg, #080d20 0%, #050816 52%, #03050d 100%);

  --ig-radius-xs: 9px;
  --ig-radius-sm: 12px;
  --ig-radius-md: 16px;
  --ig-radius-lg: 20px;
  --ig-radius-xl: 26px;
  --ig-radius-pill: 999px;

  --ig-space-1: 4px;
  --ig-space-2: 8px;
  --ig-space-3: 12px;
  --ig-space-4: 16px;
  --ig-space-5: 20px;
  --ig-space-6: 24px;
  --ig-space-8: 32px;

  --ig-shadow-sm: 0 12px 30px rgba(0, 0, 0, .22);
  --ig-shadow-md: 0 24px 70px rgba(2, 6, 23, .46);
  --ig-shadow-lg: 0 35px 100px rgba(0, 0, 0, .58);

  --ig-ease: cubic-bezier(.2, .8, .2, 1);
  --ig-duration-fast: 140ms;
  --ig-duration: 220ms;

  /* Backward-compatible aliases used by the current Mini App. */
  --ig-bg: var(--ig-bg-0);
  --ig-surface: var(--ig-surface-1);
  --ig-surface-strong: var(--ig-surface-2);
  --ig-border: var(--ig-border-soft);
  --ig-text: var(--ig-text-1);
  --ig-muted: var(--ig-text-3);
  --ig-blue: #3b82f6;
  --ig-violet: var(--ig-primary);
  --ig-danger: var(--ig-red);
  --ig-shadow: var(--ig-shadow-md);

  /* Backward-compatible aliases from the older theme.css. */
  --bg: var(--ig-bg-1);
  --panel: var(--ig-surface-2);
  --line: var(--ig-border);
  --blue: #4ea1ff;
  --violet: var(--ig-primary);
  --gold: var(--ig-gold);
}

html {
  background: var(--ig-bg-0);
}

body {
  color: var(--ig-text-1);
  background: var(--ig-gradient-page);
}

button,
a,
input,
textarea,
select {
  transition:
    border-color var(--ig-duration-fast) var(--ig-ease),
    background-color var(--ig-duration-fast) var(--ig-ease),
    color var(--ig-duration-fast) var(--ig-ease),
    opacity var(--ig-duration-fast) var(--ig-ease),
    transform var(--ig-duration-fast) var(--ig-ease),
    box-shadow var(--ig-duration-fast) var(--ig-ease);
}

button:not(:disabled):active {
  transform: scale(.985);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(49, 215, 255, .76);
  outline-offset: 2px;
}

button:disabled,
input:disabled,
textarea:disabled,
select:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.ig-card {
  border: 1px solid var(--ig-border-soft);
  border-radius: var(--ig-radius-lg);
  background: var(--ig-gradient-surface);
  box-shadow: var(--ig-shadow-sm);
}

.ig-glass {
  border: 1px solid var(--ig-border-soft);
  background: var(--ig-surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ig-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 0;
  border-radius: var(--ig-radius-sm);
  padding: 10px 14px;
  color: #fff;
  background: var(--ig-gradient-primary);
  font-weight: 900;
}

.ig-button--gold {
  color: #251500;
  background: var(--ig-gradient-gold);
}

.ig-button--secondary {
  border: 1px solid var(--ig-border);
  color: var(--ig-text-2);
  background: var(--ig-surface-3);
}

.ig-input {
  width: 100%;
  border: 1px solid var(--ig-border);
  border-radius: var(--ig-radius-sm);
  padding: 11px 12px;
  color: var(--ig-text-1);
  background: var(--ig-bg-2);
  outline: none;
}

.ig-input:focus {
  border-color: rgba(124, 92, 255, .65);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, .14);
}

.ig-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid var(--ig-border-soft);
  border-radius: var(--ig-radius-pill);
  color: var(--ig-text-2);
  background: rgba(255, 255, 255, .04);
  font-size: 11px;
  font-weight: 800;
}

.ig-title-kicker {
  color: #a5b4fc;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f8fafc;
  background: #050816;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ig-bg: #050816;
  --ig-surface: rgba(15, 23, 42, .72);
  --ig-surface-strong: rgba(17, 24, 39, .92);
  --ig-border: rgba(148, 163, 184, .14);
  --ig-text: #f8fafc;
  --ig-muted: #94a3b8;
  --ig-cyan: #22d3ee;
  --ig-blue: #3b82f6;
  --ig-violet: #8b5cf6;
  --ig-gold: #fbbf24;
  --ig-green: #34d399;
  --ig-danger: #fb7185;
  --ig-shadow: 0 24px 70px rgba(2, 6, 23, .46);
}

* { box-sizing: border-box; }
html, body, #root { width: 100%; min-height: 100%; margin: 0; }
html { background: var(--ig-bg); }
body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ig-text);
  background:
    radial-gradient(circle at 15% -10%, rgba(59, 130, 246, .32), transparent 36%),
    radial-gradient(circle at 95% 12%, rgba(139, 92, 246, .22), transparent 32%),
    linear-gradient(180deg, #080d20 0%, #050816 52%, #03050d 100%);
  -webkit-font-smoothing: antialiased;
}
button, input, textarea { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
::selection { background: rgba(34, 211, 238, .28); color: white; }
:root{font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;color:#f8fafc;background:#070b14;font-synthesis:none;--bg:#070b14;--panel:#101827;--line:#263552;--blue:#4ea1ff;--violet:#8b5cf6;--gold:#f6c453}*{box-sizing:border-box}body{margin:0;min-width:320px;min-height:100vh;background:#070b14}button,input,textarea,select{font:inherit}button{cursor:pointer}/* InviteGame v4 uses component-scoped Neo Gaming styles. Legacy light overrides removed. */