:root {
  --bg-surface: #1b1a2a;
  --bg-body: #000;
  --primary: #0099ff;
  --seconday: #fff;
  --tertiary: #ffdf6d;
  --surface-1: #171717;
  --surface-2: #2b2b2b;
}

body {
  background-color: var(--bg-body) !important;
  touch-action: none !important;
  color: #fff;
  overflow: hidden;
}
* {
  font-family: "Work Sans", sans-serif;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.three-stage-layout {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0rem 0rem;
}

.hline {
  font-size: 28pt;
  font-weight: bold;
  line-height: 36px;
  margin-bottom: 8px;
}

.s-page-title-wrapper {
  text-align: center;
  margin-top: 4rem;
  padding: 0 1px;
}

.sp-mid-img img {
  height: 13rem;
}

.tsl-mid {
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.1s;
  position: relative;
  overflow: hidden;
}

.btn-secondary {
  background: var(--seconday);
  color: black;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.1s;
  position: relative;
  overflow: hidden;
}

.btn-tertiary {
  background: var(--tertiary);
  color: black;
  padding: 8px 14px;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.1s;
  position: relative;
}

.btn-primary:active {
  scale: 0.98;
}

.btn-block {
  width: 100%;
  padding: 0.8rem 0px;
}

.btn-rounded {
  border-radius: 25px;
}
.sp-subtitle {
  opacity: 0.9;
}
.btn-skele-loader {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  z-index: 1;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(
    260deg,
    #0088ff12 0%,
    var(--primary) 50%,
    transparent 100%
  );
  animation: loadingEffect 0.8s infinite linear;
}

.btn-skele-loader-white {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  z-index: 1;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(260deg, #0088ff12 0%, #fff 50%, transparent 100%);
  animation: loadingEffect 0.8s infinite linear;
}

@keyframes loadingEffect {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.toast-container {
  position: fixed;
  width: 90%;
  padding: 13px 10px;
  left: 5%;
  top: 5rem;
  background: #1b1b1b;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  border-radius: 10px;
}
.toast-text {
  flex: 1;
}

.toast-icon {
  font-size: 17pt;
}
.sp-mid-counter {
  text-align: center;
  width: 100%;
}

.counter-number {
  font-size: 56pt;
  font-weight: bold;
}

.counter-label {
  font-size: 12pt;
}
.sp-reward-item {
  display: flex;
  margin-bottom: 10px;
  border-radius: 8px;
  align-items: center;
  gap: 15px;
  padding: 8px 11px;
  background: var(--surface-1);
}

.text-secondary {
  opacity: 0.8;
}

.hidden {
  visibility: hidden;
}

.sp-completed-progress-list {
  width: 100%;
  padding: 10px 3px;
}
.nav-icon svg {
  height: 24px;
}

.navbar {
  display: flex;
  width: 100%;
  background: var(--surface-1);
  justify-content: space-around;
  position: fixed;
  bottom: 0;
  height: 4rem;
  z-index: 10;
}

.nav-item.nav-item-selected {
  color: var(--primary);
  font-weight: 600;
}

.nav-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home-profile-view {
  display: flex;
  padding: 0rem 0;
  gap: 1rem;
  align-items: center;
  flex-direction: column;
}

img.home-dp {
  border-radius: 50%;
  background: #2e2e2e;
  height: 7rem;
  width: 7rem;
  margin-left: -3rem;
  border: 4px solid var(--bg-body);
}

.hline-5 {
  font-size: 16pt;
  font-weight: bold;
}
.Home {
  margin: revert-layer;
  padding-top: 4rem;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.home-wall-addr {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--surface-1);
  padding: 5px 11px;
  border-radius: 31px;
}

.hbal-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.balance-number {
  font-size: 30pt;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.home-profile-info {
  text-align: center;
}

.layout {
  height: 100dvh;
  position: fixed;
  top: 0;
}

.content-space {
  position: fixed;
  top: 0;
  width: 100%;
  height: calc(100dvh - 4rem);
  overflow-y: auto;
}
img.hbl-token-ic {
  height: 3rem;
}

.hline-3 {
  font-size: 22pt;
  font-weight: 600;
}

.hdc-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  background: var(--surface-1);
  padding: 10px 10px;
  border-radius: 11px;
  border: 1px solid #2e2e2e;
}

.hdc-ic svg {
  height: 32px;
}

.hdc-label {
  flex: 1;
}

.hdc-ic {
  color: var(--primary);
}
.expandable-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-right: 1rem;
}

.hline-4 {
  font-size: 19pt;
  font-weight: bold;
}
.qic-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 11px;
}

.qIc {
  height: 3.5rem;
  width: 3.5rem;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffffff21;
}

.qIc img {
  height: 26px;
}

.questItem {
  margin: 10px 0px;
  background: var(--surface-1);
  padding: 14px 14px;
  border-radius: 17px;
}

.qi-title {
  font-size: 14pt;
  font-weight: 500;
}

.qi-descr {
  opacity: 0.7;
  font-size: 11pt;
}
.SignUp .three-stage-layout {
  padding: 1rem;
}

.sp-mid-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lb-personal-stat-wrapper {
  display: flex;
  background: var(--seconday);
  color: var(--bg-body);
  padding: 14px;
  align-items: center;
  justify-content: space-between;
  border-radius: 1rem;
  gap: 1rem;
  padding-right: 1.3rem;
}

.ldb-container {
}

.LeaderBoard {
  padding: 1.5rem;
  padding-top: 0;
}

img.lb-dp-self {
  height: 4rem;
  width: 4rem;
  border-radius: 10px;
}

.lb-self-states {
  flex: 1;
}

.lb-personal-state-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #000000 100%);
  z-index: 9;
}

.lb-self-name {
  font-weight: 600;
}

.lb-self-rank {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 12pt;
}
.expanded-title {
  margin: 4rem 0;
  text-align: center;
  margin-top: 5.5rem;
}

.lbl-container {
  background: var(--surface-1);
  border-radius: 1rem;
}

img.lb-avatar {
  height: 3rem;
  width: 3rem;
  min-width: 3rem;
  background: var(--surface-2);
  border-radius: 10px;
  border: 2px solid #ffffff8f;
}

.ld-i {
  display: flex;
  justify-content: space-between;
  padding: 1.4rem 1rem;
  border-bottom: 1px solid #ffffff1a;
}

.ldi-l {
  display: flex;
  flex: 1;
  gap: 1rem;
}

.ldi-name {
  font-weight: 600;
  display: flex;
  gap: 6px;
  align-items: center;
}

.ldi-asset {
  font-size: 11pt;
  opacity: 81%;
}

.ld-i:last-child {
  border: none;
}

.expanded-title-emote {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 40pt;
}

.lbl-title {
  margin: 2rem 1rem;
  text-align: center;
  font-size: 20pt;
  font-weight: bold;
}
.mining-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 27pt;
  font-weight: 600;
}

.mining-stat-row {
  display: flex;
  margin: 0 0;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
}

.msc-current-stat-card {
  border-radius: 1rem;
  flex: 3;
  background: var(--surface-1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 0rem;
}

.msc-level-bar {
  flex: 1;
  background: var(--surface-1);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  padding-bottom: 2rem;
}

.mined-amount {
  font-size: 24pt;
  font-weight: bold;
}

.mining-bar {
  position: absolute;
  width: 100%;
  background: #22784a;
  bottom: 0;
  left: 0;
}
.Mine {
  padding: 0 1rem;
}
.mining-bar-content {
  position: relative;
  z-index: 1;
}
.container-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--surface-1) 50%,
    transparent 100%
  ) !important;
  animation: loadingEffect 0.8s infinite linear;
}
.mining-plans {
  margin-top: 1rem;
}

.mining-plan {
  background: var(--surface-1);
  padding: 1rem;
  flex: 1;
  border-radius: 1rem;
  min-width: 15rem;
}

.mining-plan-list {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  flex-wrap: nowrap;
}

.mining-plan-list::-webkit-scrollbar {
  display: none;
}

.mpli-row {
}

.mpli-btn {
  display: flex;
  justify-content: start;
  margin-top: 0.5rem;
}

.mpli-boost-label {
  height: 3.5rem;
  width: 3.5rem;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffffff21;
  font-weight: bold;
  margin-bottom: 1rem;
}

.mpli-desc {
  opacity: 70%;
  font-size: 11pt;
}
.task-categories {
  display: flex;
  gap: 0.56rem;
  overflow-y: auto;
  padding: 1rem 1rem;
}

.t-cat-item {
  color: black;
  padding: 0.3rem 1.2rem;
  color: #fff;
  border-radius: 2rem;
  font-size: 15pt;
  font-weight: 500;
}

.task-categories::-webkit-scrollbar {
  display: none;
}

.t-cat-item.t-cat-item-selected {
  background: var(--surface-1);
}
.task-icon img {
  height: 1.5rem;
}

.task-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 1rem;
}

.task-icon {
  background: white;
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.task-details {
  flex: 1;
}

.task-title {
  font-weight: 500;
}

.task-reward {
  font-size: 11pt;
  opacity: 80%;
}
.cit-jfniu32 {
  background: var(--surface-1);
  min-width: 5rem;
  height: 1.5rem;
  border-radius: 5px;
}

.cat-edjfhuh {
  display: flex;
  gap: 2rem;
  padding: 1rem 1rem;
  overflow: hidden;
}

.taseihjf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  gap: 1rem;
}

.ei23jfnr4 {
  height: 2.5rem;
  width: 2.5rem;
  background: var(--surface-1);
  border-radius: 5px;
}
.task-skele {
  position: relative;
  overflow: hidden;
}
.tmetr2a {
  flex: 1;
}

.frhj3iuhjf3n-btn {
  background: var(--surface-1);
  width: 3rem;
  height: 2rem;
  border-radius: 26px;
}

.rde2hn {
  width: 100%;
  background: var(--surface-1);
  height: 1rem;
  border-radius: 3px;
}

.rd3u2he1 {
  width: 52%;
  background: var(--surface-1);
  height: 1rem;
  border-radius: 3px;
  margin-top: 7px;
}
.btn-submit-task {
  width: 5rem;
  height: 2.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
  box-sizing: border-box;
  padding: 0;
}

.circularSpinnerSmall {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}

.circularSpinnerSmall::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 3px solid #1f1c00;
  animation: prixClipFix 2s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
.task-reward-dsp-btn {
  display: flex;
  background: #151f29;
  height: 4rem;
  margin: 1rem;
  border-radius: 1rem;
  align-items: center;
  padding: 0rem 1rem;
  gap: 8px;
  justify-content: space-between;
}

.trd-icon svg {
}

.trd-icon {
  color: #ffcf26;
}

.trd-title {
  font-size: 15pt;
  font-weight: 500;
  flex: 1;
}
.app-sheet-container {
  position: fixed;
  width: 100%;
  background: var(--surface-1);
  bottom: 0;
  left: 0;
  z-index: 10;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
  overflow-y: auto;
  min-height: 28rem;
  max-height: 100vh;
}

.app-sheet-overlay {
  height: 100vh;
  width: 100vw;
  background: #00000096;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 9;
}

.as-handle {
  height: 5px;
  width: 5rem;
  background: var(--surface-2);
  margin: auto;
  border-radius: 5px;
}

.app-sheet-header {
  height: 4.5rem;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.ctask-wrapper {
  display: flex;
  padding: 0.5rem 0rem;
  gap: 1rem;
  align-items: center;
}

.ctask-title {
  font-size: 13pt;
  font-weight: 500;
}

.ctask-reward {
  opacity: 0.8;
}

.sheet-content {
  overflow-y: auto;
  height: calc(100% - 4.5rem);
  position: absolute;
  width: 100%;
  bottom: 0;
}
.completedTasks {
  padding: 0rem 1rem;
}

.ejk3iej {
  height: 4rem;
  background: var(--surface-1);
  margin: 1rem;
  border-radius: 1rem;
}
.self-ef4k {
  height: 5.5rem;
  border-radius: 1rem;
}

.lb-skele div {
  background: var(--surface-1);
}

.labu3rhnu {
  height: 2.5rem;
  margin: 2rem auto;
  width: 13rem;
  border-radius: 10px;
}

.lb-usr-skele div {
  background: var(--surface-2);
}

.self-img-rb2hb {
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid #ffffff2b;
  border-radius: 6px;
}

.lb-usr-skele {
  border-bottom: 1px solid #dddddd26;
  padding: 1.3rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.lo32ekk {
  height: 1rem;
  width: 7rem;
}

.ri2jdf {
  height: 1rem;
  width: 12rem;
}

.iejw234rij {
  background: transparent !important;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.iejw234rij div {
  border-radius: 4px;
}

.eo3jejdei {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
}

.dpewdrfg {
  border-radius: 1rem;
  overflow: hidden;
}

.lb-skele {
  position: relative;
  overflow: hidden;
}
@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.fade {
  animation: fadeInOut 0.9s ease-out;
  animation-iteration-count: infinite;
}
.referral-schema img {
  width: 80%;
  max-width: 23rem;
  margin: auto;
}

.invite-area {
  position: fixed;
  bottom: 4rem;
  width: 100%;
  left: 0;
  background: var(--bg-body);
  padding: 1rem 1rem;
}

.Refer {
  padding-bottom: 8rem;
}
.as-title {
  font-size: 18pt;
  font-weight: bold;
}

button.as-btn-close {
  background: transparent;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  /* transition: 0.1s; */
}

button.as-btn-close:active {
  background: var(--surface-2);
}
.qr-frame {
  background: white;
  padding: 1rem;
  border-radius: 1rem;
}

.invite-qr-code {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem;
}

.invite-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 1rem;
}

.invite-buttons button {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.home-profile-view {
}

.home-img-couple {
  display: flex;
  justify-content: center;
  align-items: center;
}

img.home-prj-logo {
  height: 11rem;
}

.hbal-tokenName {
  margin-top: -9px;
  opacity: 0.8;
  font-size: 11pt;
}
.rf-stat-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 1rem;
  gap: 1rem;
  margin-bottom: 1rem;
}

.refer-stat-item {
  background: var(--surface-1);
  padding: 1rem 10px;
  border-radius: 1rem;
}

.rf-text-value {
  font-size: 32pt;
  font-weight: bold;
  text-align: center;
}

.rf-text-token {
  text-align: center;
  font-size: 11pt;
  opacity: 0.8;
  margin-top: -8px;
}

.rf-text-sec {
  opacity: 0.8;
  text-align: center;
}

.refer-stat-item:nth-child(1) {
  flex: 1;
}

.refer-stat-item:nth-child(2) {
  flex: 1.2;
  background: #111b15;
}
svg.play-game {
  width: 100%;
  padding: 1rem 1rem;
  height: auto;
}
.skele-djcfkuehh {
  height: 8rem;
  background: var(--surface-1);
  margin: 1rem;
  border-radius: 1rem;
  margin-top: 2rem;
}
.game-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  touch-action: manipulation;
  background-color: #80cded;
  padding-top: 0rem;
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 10px;
  background-color: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  height: 8rem;
}

.score {
  font-size: auto;
  color: black;
  background: #ffffff7d;
  padding: 4px 1rem;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.pause-button {
  padding: 5px 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.game-area {
  position: relative;
  flex: 1;
  background-color: #87ceeb;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.square {
  position: absolute;
  border: 2px solid #714300;
  background-color: #ff9800;
  transform-origin: center center;
}

.pipe {
  position: absolute;
  background-color: #4caf50;
}

.wall {
  position: absolute;
  background-color: #212121;
  width: 100%;
}

.game-over,
.start-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.game-over button,
.start-screen button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
