.RewardCenterLayout {
  background: rgb(244, 246, 250) !important;
}

.PlayToEarnNotificationIcon .__Icon {
  background: #fff !important;
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.08) !important;
}

.__DailyTaskItems {
  width: 100% !important;
}

.__BoxInfo .__DailyTask {
  width: 100%;
}
.__BoxInfo .arrow_box {
  max-width: 440px;
  width: 440px;
}

.RewardCenterLayout .__View .__ViewContent .__InnerView {
  gap: 0 !important;
}

.__RewardProfileHeader {
  gap: 0 !important;
}

.__PayoutProgress {
  padding: 1.1rem 1.4rem 1.2rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(20, 22, 30, 0.04), 0 1px 1px rgba(20, 22, 30, 0.03);
  cursor: pointer;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.__PayoutProgress:hover {
  box-shadow: 0 6px 18px rgba(20, 22, 30, 0.07), 0 1px 1px rgba(20, 22, 30, 0.03);
}
.__PayoutProgress .__PayoutAmounts {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}
.__PayoutProgress .__PayoutAmounts .__Current {
  font-size: 1.6rem;
  font-weight: 700;
  color: #14161e;
  letter-spacing: -0.01em;
}
.__PayoutProgress .__PayoutAmounts .__Goal {
  font-size: 1rem;
  color: #9aa0a6;
  font-weight: 500;
}
.__PayoutProgress .__PayoutBar {
  position: relative;
  height: 6px;
  background: #eef0f3;
  border-radius: 999px;
  overflow: visible;
  margin-bottom: 0.6rem;
}
.__PayoutProgress .__PayoutBar .__PayoutBarFill {
  position: relative;
  height: 100%;
  min-width: 6px;
  background: linear-gradient(90deg, #00c03e 0%, #00a834 100%);
  border-radius: 999px;
  transition: width 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.__PayoutProgress .__PayoutBar .__PayoutBarFill::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00a834;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(0, 168, 52, 0.18);
}
.__PayoutProgress .__PayoutText {
  text-align: center;
  font-size: 0.85rem;
  color: #8a8f98;
  font-weight: 500;
}
.__PayoutProgress.ReadyForPayout .__PayoutBar .__PayoutBarFill {
  background: linear-gradient(90deg, #00c03e 0%, #00a834 100%);
  animation: payoutPulse 1.6s ease-in-out infinite;
}
.__PayoutProgress.ReadyForPayout .__PayoutText {
  color: #00a834;
  font-weight: 600;
}

@keyframes payoutPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 192, 62, 0);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(0, 192, 62, 0.18);
  }
}
@keyframes caseWinPulse {
  0%, 100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 2px #ffd34d, 0 0 10px rgba(255, 211, 77, 0.55), 0 0 22px rgba(255, 211, 77, 0.35);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 2px #ffaa00, 0 0 18px rgba(255, 211, 77, 0.95), 0 0 32px rgba(255, 211, 77, 0.65);
  }
}
.__SpinWinOverlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: rgba(20, 22, 30, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.__SpinWinOverlay .__SpinWinCard {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7fa 100%);
  border-radius: 22px;
  padding: 1.75rem 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  width: min(360px, 90vw);
  cursor: default;
}
.__SpinWinOverlay .__WinIcon {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2a2f3a 0%, #1a1d26 100%);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 3px #ffd34d, 0 0 22px rgba(255, 211, 77, 0.55);
  animation: winIconPulse 1.4s ease-in-out infinite;
}
.__SpinWinOverlay .__WinIcon img {
  width: 64%;
  height: 64%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 211, 77, 0.4));
}
.__SpinWinOverlay .__WinTitle {
  font-size: 1.35rem;
  font-weight: 800;
  color: #14161e;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}
.__SpinWinOverlay .__WinReward {
  font-size: 1rem;
  font-weight: 700;
  color: #00a834;
  margin-bottom: 1.4rem;
  font-variant-numeric: tabular-nums;
}
.__SpinWinOverlay .__WinClose {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: linear-gradient(135deg, #00c03e 0%, #00a834 100%);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(0, 168, 52, 0.32), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.12s ease, filter 0.18s ease;
}
.__SpinWinOverlay .__WinClose:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}
.__SpinWinOverlay .__WinClose:active {
  transform: translateY(0);
}
.__SpinWinOverlay.IsPlus .__WinIcon {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 3px #8c6eff, 0 0 22px rgba(140, 110, 255, 0.55);
  animation: winIconPulsePlus 1.4s ease-in-out infinite;
}
.__SpinWinOverlay.IsPlus .__WinIcon img {
  filter: drop-shadow(0 0 8px rgba(140, 110, 255, 0.55));
}
.__SpinWinOverlay.IsPlus .__WinReward {
  color: #6a4fe6;
}
.__SpinWinOverlay.IsJackpot .__WinReward {
  font-size: 1.15rem;
  color: #c08800;
  text-shadow: 0 0 10px rgba(255, 211, 77, 0.55);
}

@keyframes winIconPulse {
  0%, 100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 3px #ffd34d, 0 0 22px rgba(255, 211, 77, 0.55);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 4px #ffaa00, 0 0 36px rgba(255, 211, 77, 0.85);
  }
}
@keyframes winIconPulsePlus {
  0%, 100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 3px #8c6eff, 0 0 22px rgba(140, 110, 255, 0.55);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 4px #6a4fe6, 0 0 36px rgba(140, 110, 255, 0.85);
  }
}
.__CountdownTitle {
  background: transparent !important;
}

.__DailyLayout .__LeaderBoard .__BoardTitle span:nth-child(1) {
  letter-spacing: -1px;
}

.__RewardProfileHeader .__Header .__HeaderName {
  letter-spacing: -1px;
}

.__RewardCenterContent h2 {
  letter-spacing: -1px;
}

.__Countdown {
  background: #fff !important;
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.08) !important;
  border-radius: 10px;
  gap: 0 !important;
  padding: 0 0.5rem 0 2rem !important;
}

.__Countdown #countdown {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  width: 100%;
}
.__Countdown #countdown .__TimeItem {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: unset !important;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #14161e;
  border: 0;
  will-change: transform;
  padding: 0.5rem !important;
}
.__Countdown #countdown .__TimeItem .__Value {
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  will-change: transform, opacity;
  color: #000;
}
.__Countdown #countdown .__TimeItem .__Label {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.45);
}

.CashoutMethodLayout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding-bottom: 1rem;
}
.CashoutMethodLayout > img {
  flex: 0 0 auto;
  height: 28px;
  width: auto;
  object-fit: contain;
}
.CashoutMethodLayout .CashoutButton {
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, #00c03e 0%, #00a834 100%);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 168, 52, 0.28), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.12s ease, filter 0.18s ease;
}
.CashoutMethodLayout .CashoutButton:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}
.CashoutMethodLayout .CashoutButton:active {
  transform: translateY(0);
}

.__CashoutDialog {
  padding: 1.25rem 1.4rem 1.5rem;
}
.__CashoutDialog .CashoutMethodLayout {
  display: none;
}
.__CashoutDialog .__PayoutProgress {
  margin-bottom: 1.25rem;
}
.__CashoutDialog .__CashoutListTitle {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  margin: 0 0 0.6rem;
}
.__CashoutDialog .__CashoutList {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.__CashoutDialog .__CashoutItem {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.85rem;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.18s ease, transform 0.12s ease;
}
.__CashoutDialog .__CashoutItem:hover {
  border-color: rgba(0, 168, 52, 0.32);
  box-shadow: 0 4px 12px rgba(20, 22, 30, 0.06);
  transform: translateY(-1px);
}
.__CashoutDialog .__CashoutItem .__ItemImage {
  position: relative;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #f7f8fa;
  overflow: visible;
}
.__CashoutDialog .__CashoutItem .__ItemImage > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}
.__CashoutDialog .__CashoutItem .__ItemImage .__Available {
  position: absolute;
  top: 4px;
  left: 4px;
  padding: 1px 5px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  background: rgba(20, 22, 30, 0.75);
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.__CashoutDialog .__CashoutItem .__ItemImage .PlusDoublePoints {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  width: 22px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(180deg, rgb(255, 90, 75) 0%, rgb(252, 27, 89) 100%);
  border-radius: 100px;
  box-shadow: 0 2px 4px rgba(20, 22, 30, 0.18);
}
.__CashoutDialog .__CashoutItem .__ItemImage .PlusDoublePoints img {
  width: 14px;
  height: 14px;
  display: block;
}
.__CashoutDialog .__CashoutItem .__ItemImage .PlusDoublePoints.Gray {
  filter: grayscale(100%);
}
.__CashoutDialog .__CashoutItem .__ItemBody {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.__CashoutDialog .__CashoutItem .__ItemTitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: #14161e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.__CashoutDialog .__CashoutItem .__ItemProgress {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.__CashoutDialog .__CashoutItem .__ItemProgress .__BarTrack {
  flex: 1 1 auto;
  height: 5px;
  background: #eef0f3;
  border-radius: 999px;
  overflow: hidden;
}
.__CashoutDialog .__CashoutItem .__ItemProgress .__BarTrack .__BarFill {
  height: 100%;
  background: linear-gradient(90deg, #00c03e 0%, #00a834 100%);
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.__CashoutDialog .__CashoutItem .__ItemProgress .__ItemPoints {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #14161e;
  font-variant-numeric: tabular-nums;
}
.__CashoutDialog .__CashoutItem .__ItemAction {
  flex: 0 0 auto;
  color: #b0b4ba;
  transition: color 0.15s ease, transform 0.15s ease;
}
.__CashoutDialog .__CashoutItem:hover .__ItemAction {
  color: #00a834;
  transform: translateX(2px);
}
.__CashoutDialog .__CashoutItem.IsLocked .__ItemTitle {
  color: #4d5159;
}
.__CashoutDialog .__CashoutItem.IsLocked .__ItemProgress .__BarFill {
  background: linear-gradient(90deg, #c4c8cf 0%, #b0b4ba 100%);
}
.__CashoutDialog .__CashoutItem.IsSoldOut {
  cursor: default;
  opacity: 0.55;
}
.__CashoutDialog .__CashoutItem.IsSoldOut:hover {
  border-color: #eef0f3;
  box-shadow: none;
  transform: none;
}
.__CashoutDialog .__CashoutItem.IsSoldOut:hover .__ItemAction {
  color: #b0b4ba;
  transform: none;
}

.__SpinTeaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.__SpinTeaser .__Title {
  font-weight: 600;
  font-size: 18px;
}
.__SpinTeaser .__SpinCase {
  position: relative;
  width: 100%;
  height: 96px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px #ffffff, inset 0 1px 0 #ffffff;
}
.__SpinTeaser .__SpinCase::before, .__SpinTeaser .__SpinCase::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  pointer-events: none;
  z-index: 1;
}
.__SpinTeaser .__SpinCase::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.__SpinTeaser .__SpinCase::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.__SpinTeaser .__SpinCase .__CasePointer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #14161e;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
  z-index: 3;
}
.__SpinTeaser .__SpinCase .__CasePointer::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 92px;
  background: rgba(20, 22, 30, 0.12);
}
.__SpinTeaser .__SpinCase .__CaseTrack {
  display: flex;
  gap: 4px;
  padding: 8px 0;
  will-change: transform;
}
.__SpinTeaser .__SpinCase .__CaseTrack .__CaseItem {
  flex: 0 0 56px;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.__SpinTeaser .__SpinCase .__CaseTrack .__CaseItem img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 9px;
  box-shadow: inset 0 0 0 1px #ffffff, inset 0 1px 0 #ffffff, 0 1px 2px rgba(20, 22, 30, 0.08), 0 0 0 1px rgba(20, 22, 30, 0.05);
  padding: 5px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.__SpinTeaser .__SpinCase .__CaseTrack .__CaseItem .__CaseReward {
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  color: #14161e;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.__SpinTeaser .__SpinCase .__CaseTrack .__CaseItem.IsBlank img {
  filter: grayscale(0.7) opacity(0.55);
}
.__SpinTeaser .__SpinCase .__CaseTrack .__CaseItem.IsBlank .__CaseReward {
  color: #b0b4ba;
}
.__SpinTeaser .__SpinCase .__CaseTrack .__CaseItem.IsJackpot .__CaseReward {
  font-size: 0.55rem;
  color: #b88300;
  letter-spacing: 0.04em;
}
.__SpinTeaser .__SpinCase .__CaseTrack .__CaseItem.IsPlus img {
  box-shadow: inset 0 0 0 1px #ffffff, inset 0 1px 0 #ffffff, 0 1px 2px rgba(20, 22, 30, 0.08), 0 0 0 1px rgba(140, 110, 255, 0.45);
}
.__SpinTeaser .__SpinCase .__CaseTrack .__CaseItem.IsPlus .__CaseReward {
  font-size: 0.6rem;
  color: #6a4fe6;
  letter-spacing: 0.06em;
}
.__SpinTeaser .__SpinCase .__CaseTrack .__CaseItem.IsWinner img {
  transform: scale(1.06);
  animation: caseWinPulse 1.1s ease-in-out infinite;
}
.__SpinTeaser .__SpinCase .__CaseTrack .__CaseItem.IsWinner .__CaseReward {
  color: #b88300;
}
.__SpinTeaser .__SpinAction {
  width: 100%;
  padding: 0.55rem 0.5rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, #ffb800 0%, #ff8a00 100%);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 138, 0, 0.28), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  transition: filter 0.18s ease;
  transform-origin: 50% 50%;
  will-change: transform;
}
.__SpinTeaser .__SpinAction:hover {
  filter: brightness(1.04);
}
.__SpinTeaser .__SpinAction.__Locked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  padding: 0.45rem 0.5rem;
  cursor: default;
  background: linear-gradient(135deg, #2a2f3a 0%, #14161e 100%);
  box-shadow: 0 3px 8px rgba(20, 22, 30, 0.22);
}
.__SpinTeaser .__SpinAction.__Locked:hover {
  filter: none;
}
.__SpinTeaser .__SpinAction.__Locked .__LockedLabel {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}
.__SpinTeaser .__SpinAction.__Locked .__LockedTime {
  font-size: 0.85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.__DailyTaskItems {
  position: relative;
}
.__DailyTaskItems .__DailyTaskItemsPlus {
  position: absolute;
  left: 40px;
  top: 25px;
  z-index: 10;
}

.__RewardCenterContent .__TaskItems .__TaskItem .__TaskDetailsView span:nth-child(1) {
  font-size: 20px;
}

.__DailyLayout .__Title {
  letter-spacing: -1px;
  line-height: inherit;
  font-size: 20px;
}

.headerButtonSwipers {
  display: none !important;
}

.PlayToEarnSearchInputViewer,
.__NotificationIconLayer {
  background: rgb(244, 246, 250) !important;
  display: none !important;
}

.__CashOffersBar {
  position: relative;
  max-width: 682px;
  margin: 0 auto 1.25rem;
}
.__CashOffersBar .swiperCashOffers {
  overflow: hidden;
}
.__CashOffersBar .swiper-slide {
  height: auto;
}
.__CashOffersBar .__CashOfferCard {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
  padding: 0.5rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(20, 22, 30, 0.04), 0 4px 14px rgba(20, 22, 30, 0.05);
  transition: box-shadow 0.18s ease, transform 0.12s ease;
}
.__CashOffersBar .__CashOfferCard:hover {
  box-shadow: 0 1px 2px rgba(20, 22, 30, 0.05), 0 8px 22px rgba(20, 22, 30, 0.08);
  transform: translateY(-1px);
}
.__CashOffersBar .__CashOfferCard .__OfferImage .__ImageName {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #000, rgba(255, 255, 255, 0));
  color: #fff;
  padding: 0.5rem;
  font-weight: 600;
  font-size: 14px;
}
.__CashOffersBar .__CashOfferCard .__OfferImage {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  background: #f7f8fa;
}
.__CashOffersBar .__CashOfferCard .__OfferImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.__CashOffersBar .__CashOfferCard .__OfferTitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: #14161e;
  line-height: 1.25;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
.__CashOffersBar .__CashOfferCard .__OfferPayout {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  align-self: flex-start;
  padding: 0.2rem 0.6rem 0.2rem 0.35rem;
  background: #f7f8fa;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.__CashOffersBar .__CashOfferCard .__OfferPayout img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.__CashOffersBar .__CashOfferCard .__OfferPayout .__PayoutLabel {
  font-size: 0.65rem;
  font-weight: 600;
  color: #8a8f98;
  letter-spacing: 0.02em;
}
.__CashOffersBar .__CashOfferCard .__OfferPayout .__PayoutValue {
  font-size: 0.85rem;
  font-weight: 800;
  color: #14161e;
}
.__CashOffersBar .__CashOfferCard .__OfferAction {
  margin-top: 0.15rem;
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: #0012ff;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 18, 255, 0.28), inset 0 -2px 0 rgba(0, 0, 0, 0.12);
  transition: transform 0.12s ease, filter 0.18s ease;
}
.__CashOffersBar .__CashOfferCard .__OfferAction:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}
.__CashOffersBar .__CashOfferCard .__OfferAction:active {
  transform: translateY(0);
}

.__TasksTabsBar {
  margin: 0 auto 2rem;
  border-bottom: 1px solid #eee;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.__TasksTabsBar .PlayToEarnTabFilter {
  width: auto !important;
}
.__TasksTabsBar .PlayToEarnTabFilter .TabItem {
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
  gap: 0.5rem;
}
.__TasksTabsBar .PlayToEarnTabFilter .TabItem.Active {
  border-bottom: 2px solid #0c4bf2 !important;
}
.__TasksTabsBar .PlayToEarnTabFilter .TabItem .__TabBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #14161e;
  font-variant-numeric: tabular-nums;
}

#countdown {
  background: transparent !important;
}

.CashoutMethodLayout {
  display: flex;
  align-items: center;
  gap: 0;
}
.CashoutMethodLayout .CashoutImageView {
  flex: 1;
  display: flex;
  position: relative;
}
.CashoutMethodLayout .CashoutImageView .CashImage {
  position: absolute;
  top: -20px;
}
.CashoutMethodLayout img {
  height: 90px;
}

.PointsButton {
  background: #fff !important;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08) !important;
}

.HeaderLayout {
  backdrop-filter: none !important;
  background-color: #f2f2f1 !important;
}

.__RewardOverview {
  display: flex;
  align-items: stretch;
  max-width: 100%;
  width: 100%;
  margin: 0.5rem auto 0.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(20, 22, 30, 0.05), 0 8px 24px rgba(20, 22, 30, 0.04);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.__RewardOverview:hover {
  box-shadow: 0 1px 2px rgba(20, 22, 30, 0.05), 0 12px 32px rgba(20, 22, 30, 0.07);
}
.__RewardOverview.SpinCollapsed .__Divider, .__RewardOverview.SpinCollapsed .__ColExtra {
  display: none;
}
.__RewardOverview.SpinCollapsed .CashoutMethodLayout {
  display: none;
}
.__RewardOverview > .__Col {
  flex: 1 1 0;
  min-width: 0;
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.__RewardOverview > .__Col.__ColPayout {
  flex: 1;
  padding: 1.25rem 1.4rem 0 1.4rem;
}
.__RewardOverview > .__Col.__ColPayout.__ColPayoutIsSpinned {
  padding: 1.25rem 1.4rem 1.25rem 1.4rem;
}
.__RewardOverview > .__Col.__ColExtra {
  flex: 1;
  padding: 1rem 0.5rem;
}
.__RewardOverview > .__Divider {
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0) 100%);
}
.__RewardOverview .__PayoutProgress {
  background: transparent;
  box-shadow: none !important;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
.__RewardOverview .__PayoutProgress:hover {
  box-shadow: none !important;
}
.__RewardOverview .__DailyTask {
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}
@media (max-width: 720px) {
  .__RewardOverview {
    flex-direction: column;
  }
  .__RewardOverview > .__Divider {
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0) 100%);
  }
}

.__RewardOverview .__ColDaily .DailyTaskTitle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}
.__RewardOverview .__ColDaily .DailyTaskTitle .__Title {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.25;
}
.__RewardOverview .__ColDaily .DailyTaskTitle .__Title span {
  font-size: 1.05rem;
  font-weight: 700;
  color: #14161e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.__RewardOverview .__ColDaily .DailyTaskTitle .__Action {
  flex: 0 0 auto;
}
.__RewardOverview .__ColDaily .DailyTaskTitle .__Action .ButtonPlay,
.__RewardOverview .__ColDaily .DailyTaskTitle .__Action .daily-login-collect,
.__RewardOverview .__ColDaily .DailyTaskTitle .__Action .daily-timer-container {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #ffb800 0%, #ff8a00 100%);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 138, 0, 0.28), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.12s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.__RewardOverview .__ColDaily .DailyTaskTitle .__Action .ButtonPlay:hover,
.__RewardOverview .__ColDaily .DailyTaskTitle .__Action .daily-login-collect:hover,
.__RewardOverview .__ColDaily .DailyTaskTitle .__Action .daily-timer-container:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}
.__RewardOverview .__ColDaily .DailyTaskTitle .__Action .ButtonPlay:active,
.__RewardOverview .__ColDaily .DailyTaskTitle .__Action .daily-login-collect:active,
.__RewardOverview .__ColDaily .DailyTaskTitle .__Action .daily-timer-container:active {
  transform: translateY(0);
}
.__RewardOverview .__ColDaily .DailyTaskTitle .__Action .daily-timer-container.activetimer {
  background: linear-gradient(135deg, #2a2f3a 0%, #14161e 100%);
  box-shadow: 0 3px 8px rgba(20, 22, 30, 0.22);
  cursor: default;
}
.__RewardOverview .__ColDaily .DailyTaskTitle .__Action .daily-timer-container.activetimer:hover {
  transform: none;
  filter: none;
}
.__RewardOverview .__ColDaily .DailyTaskTitle .__Action .daily-timer-container.activetimer #timer {
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
}
.__RewardOverview .__ColDaily .DailyTaskTitle .__Action .daily-timer-container.activetimer .login-timer-text {
  display: none;
}
@media (max-width: 480px) {
  .__RewardOverview .__ColDaily .DailyTaskTitle .__Action {
    flex: 1 1 100%;
  }
  .__RewardOverview .__ColDaily .DailyTaskTitle .__Action .ButtonPlay,
  .__RewardOverview .__ColDaily .DailyTaskTitle .__Action .daily-login-collect,
  .__RewardOverview .__ColDaily .DailyTaskTitle .__Action .daily-timer-container {
    width: 100%;
  }
}
.__RewardOverview .__ColDaily .__DailyTaskItems {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.__RewardOverview .__ColDaily .__DailyTaskItems .__DailyTaskItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.3rem 0.1rem;
  background: #f7f8fa;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: background 0.18s ease, border-color 0.18s ease;
  min-width: 0;
}
.__RewardOverview .__ColDaily .__DailyTaskItems .__DailyTaskItem .__Coin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}
.__RewardOverview .__ColDaily .__DailyTaskItems .__DailyTaskItem .__Coin img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain;
  filter: grayscale(0.55) opacity(0.7);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.__RewardOverview .__ColDaily .__DailyTaskItems .__DailyTaskItem .__Reward {
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  color: #b0b4ba;
  font-variant-numeric: tabular-nums;
  transition: color 0.18s ease;
}
.__RewardOverview .__ColDaily .__DailyTaskItems .__DailyTaskItem.checkedItem {
  background: linear-gradient(180deg, #e6f8ec 0%, #d2f1de 100%) !important;
  border-color: rgba(0, 168, 52, 0.22) !important;
}
.__RewardOverview .__ColDaily .__DailyTaskItems .__DailyTaskItem.checkedItem .__Coin img {
  filter: none;
  transform: scale(1.05);
}
.__RewardOverview .__ColDaily .__DailyTaskItems .__DailyTaskItem.checkedItem .__Reward {
  color: #00853a;
}
.__RewardOverview .__ColDaily .__DailyTaskItems .__DailyTaskItemsPlus {
  position: absolute;
  top: -1.85rem;
  right: 0;
  z-index: 2;
}

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