@charset "UTF-8";
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.SignupDialogContent {
  padding: 1.5rem;
  overflow: unset !important;
}
.SignupDialogContent .SignupCrossLink a {
  color: unset;
}
.SignupDialogContent .OrDivider {
  margin: 1rem 0 !important;
}
.SignupDialogContent .SignButtons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.__CashPage {
  display: flex;
  width: 1068px;
}
.__CashPage h1 {
  margin: 0;
}

.MainLogo b {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 200px;
  opacity: 1;
  animation: mainLogoCollapse 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

.__PageLanguage {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.4rem 0.8rem 0.4rem 0.6rem;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
.__PageLanguage:hover {
  background: #eeeeee;
}
.__PageLanguage img {
  border-radius: 3px;
}

@keyframes mainLogoCollapse {
  to {
    max-width: 0;
    opacity: 0;
    margin-left: -0.6rem;
  }
}
/* Dots */
.rta-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding-top: 16px;
}

.rta-dot {
  width: 24px;
  height: 10px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.rta-dot.active {
  width: 40px;
  background: #000;
}

.rta-cards {
  position: relative;
  min-height: 260px;
}

.rta-card {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.35;
  transform: translateX(110%) scale(0.75);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  width: 240px;
  margin-left: -120px;
}

.reward-task-area {
  position: relative;
  min-height: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.8);
  }
}
.rta-card.carousel-center {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.rta-card.carousel-left {
  opacity: 0.35;
  transform: translateX(-80%) scale(0.65);
  pointer-events: none;
}

.rta-card.carousel-right {
  opacity: 0.35;
  transform: translateX(80%) scale(0.65);
  pointer-events: none;
}

.rta-card.carousel-hidden {
  opacity: 0;
  transform: translateX(200%) scale(0.5);
  pointer-events: none;
}

.rta-task {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
  text-align: center;
}

.rta-reward {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 2px solid #000;
  background: #000;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 16px rgba(245, 200, 66, 0.06);
}

.rta-reward .plus {
  font-size: 16px;
}

.reward-balance-area {
  padding: 28px 24px 24px;
  text-align: center;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.rba-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  position: relative;
}

.rba-dollar {
  font-size: 60px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.35);
  transform: translateY(2px);
}

.rba-number {
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, #000 30%, black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rba-number.bump {
  transform: scale(1.07);
}

.rba-cents {
  font-size: 40px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.3);
}

.rta-app {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: 0px;
  text-align: center;
}

.rta-icon {
  border: 4px solid #fff;
  width: 160px;
  height: 160px;
  min-width: 160px;
  min-height: 160px;
  border-radius: 20px;
  overflow: hidden;
}
.rta-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.CashoutButtons {
  color: #fff;
  background: #000;
  border: 4px solid #000;
  margin-top: 1rem;
  cursor: pointer;
  border-radius: 100px;
  height: 50px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.rba-glow {
  display: none !important;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245, 200, 66, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.rba-glow.flash {
  opacity: 1;
}

.rba-bar-wrap {
  display: none !important;
  margin: 18px auto 0;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  height: 5px;
  overflow: hidden;
}

.rba-bar {
  height: 100%;
  border-radius: 100px;
  width: 0%;
  background: linear-gradient(90deg, #6c5ce7, #f5c842);
  box-shadow: 0 0 10px rgba(245, 200, 66, 0.15);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================================================================
      COIN (fliegt von A → B)
      ================================================================ */
.reward-coin {
  position: fixed;
  width: 50px;
  height: 50px;
  background: url("https://assets.playtoearn.com/__ic_usd.png") center/contain no-repeat;
  pointer-events: none;
  z-index: 9999;
  will-change: transform, opacity;
}

@media (min-width: 1024px) {
  .ModalViewerLayout_CenterView .CenterView {
    border-radius: 20px !important;
    overflow: hidden !important;
  }
}
.ModalToolbarContent {
  background: transparent !important;
}

.LanguageSelectorSearch {
  position: relative;
  margin-bottom: 0.6rem;
}
.LanguageSelectorSearch svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}
.LanguageSelectorSearch input {
  width: 100%;
  height: 42px;
  padding: 0 12px 0 38px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.LanguageSelectorSearch input:focus {
  border-color: #6c5ce7;
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}
.LanguageSelectorSearch input::placeholder {
  color: #999;
}

.LanguageSelectorItems {
  display: flex;
  flex-direction: column;
}
.LanguageSelectorItems a {
  color: unset;
}
.LanguageSelectorItems .__Item {
  display: flex;
  font-weight: 600;
  border-radius: 10px;
  gap: 0.5rem;
  height: 45px;
  padding: 0 0.8rem;
  align-items: center;
}
.LanguageSelectorItems .__Item:hover {
  background: #f2f2f1;
}

.LanguageSelectorEmpty {
  padding: 1.5rem 0.5rem;
  text-align: center;
  color: #888;
  font-size: 14px;
}

.RegisterButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.RegisterButton:hover {
  opacity: 0.85;
}
.RegisterButton--google {
  background: #fff;
  color: #3c4043;
  border: 1px solid #dadce0;
}
.RegisterButton--discord {
  background: #5865F2;
  color: #fff;
}
.RegisterButton--x {
  background: #000;
  color: #fff;
}
.RegisterButton--email {
  background: #fff;
  color: #3c4043;
  border: 1px solid #dadce0;
  font-family: inherit;
}

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

.EmailSignup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.EmailSignup.is-hidden {
  display: none;
}

.EmailInput {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #dadce0;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s;
}
.EmailInput:focus {
  border-color: #6c5ce7;
}

.__HowToView .ButtonBlue {
  background: #0012FF;
  background-image: none;
  box-shadow: none;
}

.EarnNowButton {
  position: relative;
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  border: none;
  background: #0012FF;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
}
.EarnNowButton:hover {
  opacity: 0.9;
}
.EarnNowButton:disabled {
  cursor: not-allowed;
}
.EarnNowButton .EarnNowSpinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: earnNowSpin 0.7s linear infinite;
}
.EarnNowButton.is-loading .EarnNowLabel {
  display: none;
}
.EarnNowButton.is-loading .EarnNowSpinner {
  display: inline-block;
}

@keyframes earnNowSpin {
  to {
    transform: rotate(360deg);
  }
}
.PasswordSlide {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.PasswordSlide.open {
  grid-template-rows: 1fr;
}

.PasswordSlideInner {
  overflow: hidden;
  min-height: 0;
}

.PasswordInput {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #dadce0;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s;
}
.PasswordInput:focus {
  border-color: #6c5ce7;
}

.SignupTerms {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.SignupTerms.open {
  grid-template-rows: 1fr;
}

.OtpView {
  display: none;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.OtpView.is-visible {
  display: flex;
}

.SignupCrossLink {
  text-align: center;
  margin-top: 1rem;
  font-size: 14px;
}
.SignupCrossLink a {
  color: #0c4bf2;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}
.SignupCrossLink a:hover {
  text-decoration: underline;
}

.OtpTitle {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.OtpSub {
  font-size: 13px;
  color: #5f6368;
  line-height: 1.4;
}
.OtpSub b {
  color: #222;
}

.OtpInputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 6px 0;
}

.OtpDigit {
  width: 56px;
  height: 64px;
  border-radius: 10px;
  border: 1px solid #dadce0;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.15s;
}
.OtpDigit:focus {
  border-color: #6c5ce7;
}

.OtpResend {
  background: none;
  border: none;
  color: #6c5ce7;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px;
}
.OtpResend:hover {
  text-decoration: underline;
}

.SignupTermsInner {
  overflow: hidden;
  min-height: 0;
  font-size: 12px;
  color: #5f6368;
  line-height: 1.4;
  padding-top: 2px;
}
.SignupTermsInner a {
  color: #6c5ce7;
  text-decoration: underline;
}

.OrDivider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0.5rem 0;
  color: #9aa0a6;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.OrDivider::before, .OrDivider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e2e2;
}

.NotificationPushPrompt {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid #e2e2e2;
  background: #f6f9ff;
  color: #1a365d;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}
.NotificationPushPrompt:hover {
  background: #eaf0ff;
}
.NotificationPushPrompt svg {
  flex-shrink: 0;
  color: #3366ff;
}
.NotificationPushPrompt span {
  flex: 1;
}

.NotificationCommunity {
  border-top: 1px solid #eee;
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: column;
}
.NotificationCommunity__title {
  padding: 10px 12px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0em;
  color: #888;
}
.NotificationCommunity__card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-top: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.NotificationCommunity__card:hover {
  border-color: #d4d4d4;
}
.NotificationCommunity__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.NotificationCommunity__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.NotificationCommunity__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
.NotificationCommunity__text b {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}
.NotificationCommunity__text small {
  font-size: 12px;
  color: #666;
}

.PushPromptModal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.PushPromptModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.PushPromptModal__dialog {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.PushPromptModal__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.PushPromptModal__icon img {
  border-radius: 12px;
}
.PushPromptModal__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}
.PushPromptModal__body {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}
.PushPromptModal__actions {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.PushPromptModal__btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.PushPromptModal__btn--ghost {
  background: #f2f2f2;
  color: #333;
}
.PushPromptModal__btn--ghost:hover {
  background: #e6e6e6;
}
.PushPromptModal__btn--primary {
  background: #000;
  color: #fff;
}
.PushPromptModal__btn--primary:hover {
  background: #222;
}

.PwaInstallBanner {
  position: fixed;
  right: 16px;
  cursor: pointer;
  bottom: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  max-width: 320px;
}
.PwaInstallBanner__icon {
  border-radius: 8px;
  flex-shrink: 0;
}
.PwaInstallBanner__text {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: #111;
}
.PwaInstallBanner__close {
  background: transparent;
  border: 0;
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 0;
}
.PwaInstallBanner__close:hover {
  color: #333;
}
.PwaInstallBanner--mobile {
  left: 0px;
  right: 0px;
  bottom: 60px;
  max-width: none;
  box-shadow: none;
  border-top: 1px solid #e2e2e2;
  padding: 0.8rem 1rem;
}

@media screen and (max-width: 800px) {
  main .PageRegisterView .__RegisterView {
    overflow: hidden !important;
  }
  .rta-card.carousel-right {
    transform: translateX(60%) scale(0.65);
  }
  .rta-card.carousel-left {
    transform: translateX(-60%) scale(0.65);
  }
  .rta-cards {
    min-height: 225px;
  }
  .rta-app {
    font-size: 20px !important;
  }
  .rta-icon {
    width: 100px !important;
    height: 100px !important;
    min-width: 100px !important;
    min-height: 100px !important;
  }
  .rba-dollar {
    padding-right: 0.2rem;
    font-size: 30px !important;
  }
  .rba-number {
    font-size: 60px !important;
  }
  main {
    padding: 0 !important;
  }
  main .__InnerView {
    width: 100% !important;
  }
  main .PageTitle h2 {
    font-size: 16px;
    font-weight: 500;
  }
  main .PageTitle h1 {
    letter-spacing: -1px;
    font-size: 30px;
  }
  main .PageRegisterView .__Info {
    overflow: hidden;
    gap: 2rem;
  }
  main .PageRegisterView {
    flex-direction: column;
  }
  main .PageRegisterView .__RegisterView {
    width: 100% !important;
    padding: 1.5rem !important;
    border-radius: 0px !important;
  }
  main .__HowToView .__Left {
    display: none !important;
  }
  main .__HowToView {
    padding: 0 1rem;
  }
  .PlayToEarnPageQuestions .__View {
    width: 100% !important;
  }
  main .__PayoutMethods .__InnerViewTitle h3 {
    font-size: 18px !important;
    text-align: center;
    padding: 0 1rem;
  }
  .IconHolderTextView.ProfileHolder .ProfileDropdown:after {
    left: 88%;
  }
  .IconHolder.BoostIcon .BoostDropdown:after {
    left: 38%;
  }
  .IconHolder.BoostIcon .BoostDropdown {
    right: unset;
    left: -100px;
    width: 320px;
  }
  .IconHolder.NotificationIcon .NotificationDropdown:after {
    left: 75%;
  }
  .IconHolder.NotificationIcon .NotificationDropdown {
    right: -55px;
    width: 300px;
  }
  .IconHolderTextView .ProfileAccount .ProfileUserIcon {
    display: none !important;
  }
  .DashboardLayoutWide .FilterLayout .FilterView .FilterName {
    display: none;
  }
  .DashboardLayoutWide .FilterLayout .FilterView.__Right {
    display: none;
  }
  .DashboardLayoutWide .FilterLayout .FilterView.Clear {
    order: 2;
    justify-content: center;
    align-items: center;
    padding: 1rem 0 0 0;
  }
  .DashboardLayoutWide .FilterLayout .FilterView.Center {
    order: 1;
  }
  .DashboardLayoutWide .FilterLayout {
    width: 100% !important;
    grid-template-columns: repeat(1, 1fr);
  }
  .DashboardLayout {
    width: 100%;
    padding: 0 1rem;
  }
  .DashboardLayout .OfferItems {
    grid-template-columns: repeat(1, 1fr);
  }
  .DashboardTitle {
    text-align: center;
    font-size: 20px !important;
  }
  footer .__EndView {
    width: 100% !important;
  }
  footer .__View {
    padding-top: 0 !important;
    width: 100% !important;
    flex-direction: column;
    gap: 2rem;
  }
  footer .__View .__Logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  footer .__View .__Links {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    padding: 0 1rem;
  }
  footer .__View .__Links .__LinkBlock:nth-child(3) {
    grid-column: 1/-1;
  }
  main .__HowToView .__Viewer .__HowToBlockItem .__ImageView {
    max-width: 100% !important;
    width: calc(100dvw - 2rem);
  }
  main .PageRegisterView .__Info .__InfoCardItems {
    width: 140%;
    margin-left: -20%;
  }
  main .PageRegisterView .__Info {
    width: 100dvw;
    overflow: hidden;
    justify-content: center;
  }
  .PlayToEarnPageQuestions .__View .__Title {
    font-size: 30px !important;
    padding-bottom: 1rem;
    text-align: center;
  }
  .faq-wrapper h2 {
    margin: 0 !important;
  }
  footer .__EndView .__PageLinks .__PageLeft {
    flex-direction: column;
    padding: 0 1rem;
  }
  .faq-wrapper .faq-item {
    border-radius: 0 !important;
    padding: 1rem 0;
  }
  .faq-wrapper .faq-item .faq-answer {
    padding: 0 1rem;
    font-size: 16px !important;
  }
  .faq-wrapper .faq-item .faq-answer p {
    font-size: 16px !important;
  }
  .faq-wrapper .faq-item .faq-question {
    line-height: 24px !important;
    border-radius: 0 !important;
    padding: 0 1rem;
    font-size: 18px !important;
  }
  .faq-wrapper {
    width: 100% !important;
  }
  footer .__EndView ol {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;
  }
  footer .__EndView .__PageLinks span {
    font-size: 14px !important;
  }
  footer .__EndView ol li a {
    font-size: 14px !important;
  }
  footer .__EndView .__PageLinks {
    flex-direction: column;
  }
  footer .__View .__Links .__LinkBlock .__LinkItems a {
    font-size: 16px !important;
  }
  footer .__View .__Links .__LinkBlock b {
    font-size: 16px !important;
  }
  footer .__View .__Logo .__LogoImage {
    justify-content: flex-start;
    display: none;
  }
  main .__PayoutMethods {
    padding: 1.5rem 0;
  }
  .PlayToEarnPageQuestions {
    padding-top: 0;
  }
  main .__PayoutMethods .__InnerViewTitle h2 {
    font-size: 24px !important;
  }
  main .__PayoutMethods .__InnerViewTitle {
    width: 100% !important;
  }
  main .__HowToView .__Viewer .__HowToBlockItem .__Description {
    font-size: 16px !important;
  }
  main .__HowToView .__Viewer .__HowToBlockItem .__Title {
    font-size: 24px !important;
  }
  main .PageRegisterView .__RegisterView .ViewTitle {
    font-size: 30px !important;
  }
  main .__HowToView .__Viewer {
    padding-bottom: 0;
  }
  main .__DiscoverBlock {
    margin: 0 1rem !important;
    width: calc(100dvw - 2rem);
    grid-template-columns: repeat(1, 1fr);
  }
  main .__DiscoverBlock .BlockItem span:nth-child(2) {
    font-size: 18px !important;
  }
  main .__DiscoverBlock .BlockItem span:nth-child(1) {
    font-size: 24px !important;
  }
  main .__DiscoverBlock .BlockItem {
    border-right: 0;
    border-bottom: 1px solid #e2e2e2;
  }
  main .__DiscoverBlock .BlockItem:last-child {
    border-bottom: 0;
  }
  main .__DiscoverBlock .BlockItem {
    padding: 1.5rem 0;
  }
  header .Logo .MainLogo {
    display: none !important;
  }
  header .HeaderInnerView {
    width: 100% !important;
  }
  header .Logo .AppLogo b {
    display: none !important;
  }
}
.AppBottomBarDesktop {
  position: fixed;
  bottom: 1rem;
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 100%;
  left: 0;
  right: 0;
}
.AppBottomBarDesktop .AppBottomBarInnerView {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  border-radius: 100px;
  padding: 0.2rem 0.3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.AppBottomBarDesktop .AppBottomBarInnerView a {
  color: unset;
}
.AppBottomBarDesktop .AppBottomBarInnerView .BarItem {
  color: #000;
}
.AppBottomBarDesktop .AppBottomBarInnerView .BarItem:hover {
  transform: scale(1.05);
}
.AppBottomBarDesktop .AppBottomBarInnerView .BarItem {
  gap: 0.2rem;
}
.AppBottomBarDesktop .AppBottomBarInnerView .BarItem:last-child {
  border-right: 0;
}
.AppBottomBarDesktop .AppBottomBarInnerView .BarItem {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  width: 100px;
  height: 60px;
  justify-content: center;
  align-items: center;
}
.AppBottomBarDesktop .AppBottomBarInnerView .BarItem span:nth-child(2) {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 500;
  font-size: 11px;
}

.PlayToEarnAccount .__View {
  width: auto !important;
  max-width: 100% !important;
  padding-inline: 1rem;
  margin: 0 auto;
}

/*# sourceMappingURL=cash.css.map */
