@charset "UTF-8";
/**
 * @copyright PlayToEarn Cash
 * @stevie
 */
.FilterActions {
  display: flex;
  height: 45px;
  min-width: 100px;
  border-radius: 100px;
  background: #f2f2f2;
}
.FilterActions .__Device input {
  width: 120px;
  height: 45px;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 16px;
}
.FilterActions .__Device:nth-child(2) {
  border-left: 1px solid #e2e2e2;
}
.FilterActions .__Device {
  font-weight: 600;
  gap: 0.6rem;
  padding: 0 1rem;
  display: flex;
  height: 45px;
  justify-content: center;
  align-items: center;
}

.SuperSelect {
  position: relative;
  display: inline-block;
  font-family: "Inter", sans-serif;
}
.SuperSelect .SuperSelectTrigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: 45px;
  min-width: 180px;
  padding: 0 1.1rem;
  border: 0;
  border-radius: 100px;
  background: #f2f2f2;
  color: #161823;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: background 0.15s ease;
}
.SuperSelect .SuperSelectTrigger:hover {
  background: rgb(234.35, 234.35, 234.35);
}
.SuperSelect .SuperSelectChevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  opacity: 0.7;
}
.SuperSelect.Open .SuperSelectChevron {
  transform: rotate(180deg);
}
.SuperSelect.Open .SuperSelectMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.SuperSelect .SuperSelectMenu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 50;
}
.SuperSelect .SuperSelectOption {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #161823;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.12s ease;
}
.SuperSelect .SuperSelectOption:hover {
  background: #f2f2f2;
}
.SuperSelect .SuperSelectOption.Active {
  background: #f2f2f2;
  font-weight: 600;
}

* {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  box-sizing: border-box;
}

a {
  color: #0c4bf2;
  text-decoration: none;
}

body {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  /**
    background:
            radial-gradient(ellipse at 20% 50%, rgba(255, 182, 193, 0.4) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 20%, rgba(186, 220, 255, 0.5) 0%, transparent 50%),
            radial-gradient(ellipse at 60% 80%, rgba(255, 223, 170, 0.4) 0%, transparent 50%),
            radial-gradient(ellipse at 10% 90%, rgba(200, 180, 255, 0.3) 0%, transparent 40%),
            radial-gradient(ellipse at 90% 70%, rgba(180, 255, 210, 0.3) 0%, transparent 40%),
            linear-gradient(135deg, #fef9f4 0%, #f0f4ff 50%, #fdf2f8 100%);
    background-attachment: fixed;

    background:
            radial-gradient(ellipse at 20% 50%, rgba(220, 220, 222, 0.5) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 20%, rgba(200, 200, 204, 0.4) 0%, transparent 50%),
            radial-gradient(ellipse at 60% 80%, rgba(230, 230, 232, 0.5) 0%, transparent 50%),
            radial-gradient(ellipse at 10% 90%, rgba(210, 210, 214, 0.3) 0%, transparent 40%),
            radial-gradient(ellipse at 90% 70%, rgba(225, 225, 228, 0.4) 0%, transparent 40%),
            linear-gradient(135deg, #f7f7f8 0%, #ededef 50%, #f1f1f2 100%);
  **/
  background-attachment: fixed;
}

img {
  vertical-align: middle;
}

.HotList {
  margin-bottom: 24px;
}

.DashboardTitle {
  padding-top: 1rem;
  font-weight: 700;
  font-size: 24px;
  color: #000;
}

.HotListTitle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 24px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 1.5rem;
  padding: 0 4px;
}

.HotListSwiper {
  width: 100%;
  padding-bottom: 8px !important;
}

.HotItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  width: 120px !important;
}

.HotItemImageView {
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid #ff6b35;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.5);
  border-radius: 20px;
  overflow: hidden;
  width: 100px;
  height: 100px;
}

.HotItemImage {
  width: 100%;
  padding: 0.5rem 0;
  justify-content: center;
  display: flex;
  flex-shrink: 0;
}
.HotItemImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.HotItemName {
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  width: 100%;
  padding-top: 0.4rem;
  color: #000;
  /**
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
   */
  opacity: 0.8;
}

.HotItemPayout {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

@keyframes hotSkeletonShimmer {
  0% {
    background-position: -600px 0;
  }
  100% {
    background-position: 600px 0;
  }
}
.HotItemSkeleton {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 120px !important;
  margin-right: 10px;
}
.HotItemSkeleton .SkeletonImageWrap {
  width: 100%;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
}
.HotItemSkeleton .SkeletonImage {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background: linear-gradient(90deg, #ececec 25%, #d8d8d8 50%, #ececec 75%);
  background-size: 1200px 100%;
  animation: hotSkeletonShimmer 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.HotItemSkeleton .SkeletonName {
  width: 70px;
  height: 9px;
  border-radius: 5px;
  margin: 0.4rem auto 0;
  background: linear-gradient(90deg, #ececec 25%, #d8d8d8 50%, #ececec 75%);
  background-size: 1200px 100%;
  animation: hotSkeletonShimmer 1.5s ease-in-out infinite;
}
.HotItemSkeleton .SkeletonPayout {
  width: 44px;
  height: 11px;
  border-radius: 5px;
  margin: 5px auto 0 auto;
  background: linear-gradient(90deg, #ececec 25%, #d8d8d8 50%, #ececec 75%);
  background-size: 1200px 100%;
  animation: hotSkeletonShimmer 1.5s ease-in-out infinite;
}
.HotItemSkeleton:nth-child(1) .SkeletonImage, .HotItemSkeleton:nth-child(1) .SkeletonName, .HotItemSkeleton:nth-child(1) .SkeletonPayout {
  animation-delay: 0s;
}
.HotItemSkeleton:nth-child(2) .SkeletonImage, .HotItemSkeleton:nth-child(2) .SkeletonName, .HotItemSkeleton:nth-child(2) .SkeletonPayout {
  animation-delay: 0.1s;
}
.HotItemSkeleton:nth-child(3) .SkeletonImage, .HotItemSkeleton:nth-child(3) .SkeletonName, .HotItemSkeleton:nth-child(3) .SkeletonPayout {
  animation-delay: 0.2s;
}
.HotItemSkeleton:nth-child(4) .SkeletonImage, .HotItemSkeleton:nth-child(4) .SkeletonName, .HotItemSkeleton:nth-child(4) .SkeletonPayout {
  animation-delay: 0.3s;
}
.HotItemSkeleton:nth-child(5) .SkeletonImage, .HotItemSkeleton:nth-child(5) .SkeletonName, .HotItemSkeleton:nth-child(5) .SkeletonPayout {
  animation-delay: 0.4s;
}
.HotItemSkeleton:nth-child(6) .SkeletonImage, .HotItemSkeleton:nth-child(6) .SkeletonName, .HotItemSkeleton:nth-child(6) .SkeletonPayout {
  animation-delay: 0.5s;
}
.HotItemSkeleton:nth-child(7) .SkeletonImage, .HotItemSkeleton:nth-child(7) .SkeletonName, .HotItemSkeleton:nth-child(7) .SkeletonPayout {
  animation-delay: 0.6s;
}
.HotItemSkeleton:nth-child(8) .SkeletonImage, .HotItemSkeleton:nth-child(8) .SkeletonName, .HotItemSkeleton:nth-child(8) .SkeletonPayout {
  animation-delay: 0.7s;
}

.OfferItemSkeleton {
  border-radius: 20px;
  background: #fff;
  border: 2px solid #e2e2e2;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.OfferItemSkeleton .SkeletonImageArea {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(90deg, #ececec 25%, #d8d8d8 50%, #ececec 75%);
  background-size: 1200px 100%;
  animation: hotSkeletonShimmer 1.5s ease-in-out infinite;
}
.OfferItemSkeleton .SkeletonOfferName {
  width: 60%;
  height: 16px;
  border-radius: 6px;
  margin: 1rem;
  background: linear-gradient(90deg, #ececec 25%, #d8d8d8 50%, #ececec 75%);
  background-size: 1200px 100%;
  animation: hotSkeletonShimmer 1.5s ease-in-out infinite;
}
.OfferItemSkeleton .SkeletonOfferTags {
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem;
}
.OfferItemSkeleton .SkeletonOfferTags span {
  height: 26px;
  border-radius: 100px;
  background: linear-gradient(90deg, #ececec 25%, #d8d8d8 50%, #ececec 75%);
  background-size: 1200px 100%;
  animation: hotSkeletonShimmer 1.5s ease-in-out infinite;
}
.OfferItemSkeleton .SkeletonOfferTags span:nth-child(1) {
  width: 50px;
}
.OfferItemSkeleton .SkeletonOfferTags span:nth-child(2) {
  width: 68px;
}
.OfferItemSkeleton .SkeletonOfferTags span:nth-child(3) {
  width: 104px;
}
.OfferItemSkeleton .SkeletonOfferButton {
  height: 44px;
  border-radius: 12px;
  margin: 1rem 1rem 1rem 1rem;
  background: linear-gradient(90deg, #ececec 25%, #d8d8d8 50%, #ececec 75%);
  background-size: 1200px 100%;
  animation: hotSkeletonShimmer 1.5s ease-in-out infinite;
}
.OfferItemSkeleton:nth-child(1) .SkeletonImageArea,
.OfferItemSkeleton:nth-child(1) .SkeletonOfferName,
.OfferItemSkeleton:nth-child(1) .SkeletonOfferTags span,
.OfferItemSkeleton:nth-child(1) .SkeletonOfferButton {
  animation-delay: 0s;
}
.OfferItemSkeleton:nth-child(2) .SkeletonImageArea,
.OfferItemSkeleton:nth-child(2) .SkeletonOfferName,
.OfferItemSkeleton:nth-child(2) .SkeletonOfferTags span,
.OfferItemSkeleton:nth-child(2) .SkeletonOfferButton {
  animation-delay: 0.12s;
}
.OfferItemSkeleton:nth-child(3) .SkeletonImageArea,
.OfferItemSkeleton:nth-child(3) .SkeletonOfferName,
.OfferItemSkeleton:nth-child(3) .SkeletonOfferTags span,
.OfferItemSkeleton:nth-child(3) .SkeletonOfferButton {
  animation-delay: 0.24s;
}
.OfferItemSkeleton:nth-child(4) .SkeletonImageArea,
.OfferItemSkeleton:nth-child(4) .SkeletonOfferName,
.OfferItemSkeleton:nth-child(4) .SkeletonOfferTags span,
.OfferItemSkeleton:nth-child(4) .SkeletonOfferButton {
  animation-delay: 0.36s;
}
.OfferItemSkeleton:nth-child(5) .SkeletonImageArea,
.OfferItemSkeleton:nth-child(5) .SkeletonOfferName,
.OfferItemSkeleton:nth-child(5) .SkeletonOfferTags span,
.OfferItemSkeleton:nth-child(5) .SkeletonOfferButton {
  animation-delay: 0.48s;
}
.OfferItemSkeleton:nth-child(6) .SkeletonImageArea,
.OfferItemSkeleton:nth-child(6) .SkeletonOfferName,
.OfferItemSkeleton:nth-child(6) .SkeletonOfferTags span,
.OfferItemSkeleton:nth-child(6) .SkeletonOfferButton {
  animation-delay: 0.6s;
}

.CashoutItems {
  display: flex;
  flex-direction: column;
}
.CashoutItems .__Items {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}
.CashoutItems .__Items .__Item {
  display: flex;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 0.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 100px;
}
.CashoutItems .__Items .__Item .__ItemName {
  font-size: 9px;
  justify-content: center;
}
.CashoutItems .__Items .__Item .__ItemAmount {
  display: flex;
  justify-content: center;
  font-weight: 600;
}
.CashoutItems .__Items .__Item .__ItemImage img {
  width: 48px;
  height: 48px;
}
.CashoutItems .Item {
  display: flex;
  padding: 1rem;
  align-items: center;
  gap: 1rem;
}
.CashoutItems .Item .__CardName {
  font-weight: 600;
}
.CashoutItems .Item .__CardImage {
  border-radius: 10px;
  overflow: hidden;
}

.ModalGallery {
  display: flex;
  width: 100%;
  max-height: 300px;
}
.ModalGallery > video {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}
.ModalGallery > img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}
.ModalGallery .ScreenshotSwiper {
  width: 100%;
  padding: 0 0 24px;
}
.ModalGallery .ScreenshotSwiper .swiper-slide {
  width: auto;
  display: flex;
}
.ModalGallery .ScreenshotSwiper .swiper-slide img {
  height: 260px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  background: #f2f2f2;
}
.ModalGallery .ScreenshotSwiper .swiper-button-prev,
.ModalGallery .ScreenshotSwiper .swiper-button-next {
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  width: 36px;
  height: 36px;
  border-radius: 100px;
}
.ModalGallery .ScreenshotSwiper .swiper-button-prev::after,
.ModalGallery .ScreenshotSwiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}
.ModalGallery .ScreenshotSwiper .swiper-pagination {
  bottom: 0;
}
.ModalGallery .ScreenshotSwiper .swiper-pagination .swiper-pagination-bullet {
  background: #888;
  opacity: 0.5;
}
.ModalGallery .ScreenshotSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0012FF;
  opacity: 1;
}

.ModalActionBar {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ModalActionBar .ButtonBlueStandard {
  width: 100%;
}

.CashPlayQR {
  padding: 1.5rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.CashPlayQR .__Header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.CashPlayQR .__Header .__Back {
  appearance: none;
  border: 0;
  background: #f2f2f2;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0f172a;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.CashPlayQR .__Header .__Back:hover {
  background: #e4e4e7;
}
.CashPlayQR .__Header .__Title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}
.CashPlayQR .__QRWrap {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}
.CashPlayQR .__QRCode {
  padding: 16px;
  background: #fff;
  border: 3px solid #f2f2f1;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 252px;
  min-height: 252px;
}
.CashPlayQR .__QRCode img, .CashPlayQR .__QRCode canvas {
  display: block;
}
.CashPlayQR .__Platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 13px;
  color: #64748b;
}
.CashPlayQR .__Platforms .__PlatformsLabel {
  font-weight: 600;
  color: #0f172a;
}
.CashPlayQR .__Platforms .__PlatformBadge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  background: #f2f2f2;
  color: #0f172a;
  font-size: 12px;
  font-weight: 600;
}
.CashPlayQR .__Platforms .__PlatformBadge svg {
  width: 14px;
  height: 14px;
}
.CashPlayQR .__OfferRow {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem;
  border: 1px solid #f2f2f2;
  border-radius: 14px;
}
.CashPlayQR .__OfferRow .__OfferIcon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  background: #f2f2f2;
  flex-shrink: 0;
}
.CashPlayQR .__OfferRow .__OfferIcon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.CashPlayQR .__OfferRow .__OfferInfo {
  flex: 1;
  min-width: 0;
}
.CashPlayQR .__OfferRow .__OfferInfo .__OfferName {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.CashPlayQR .__OfferRow .__OfferInfo .__OfferDesc {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.CashPlayQR .__OfferRow .__OfferPayout {
  font-size: 16px;
  font-weight: 800;
  color: #0012FF;
  flex-shrink: 0;
}

.CashoutView {
  padding: 0.5rem 0 0;
}
.CashoutView .CashoutBalance {
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid #f2f2f2;
}
.CashoutView .CashoutBalance .__Label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #64748b;
  margin-bottom: 4px;
}
.CashoutView .CashoutBalance .__Amount {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.CashoutView .CashoutBalance .__Bar {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 8px;
  margin: 0 auto;
  background: #f2f2f2;
  border-radius: 100px;
  overflow: hidden;
}
.CashoutView .CashoutBalance .__Bar .__Fill {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  border-radius: 100px;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.45);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.CashoutView .CashoutBalance .__LockText {
  margin-top: 10px;
  font-size: 13px;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.CashoutView .CashoutBalance .__LockText svg {
  color: #94a3b8;
}
.CashoutView .CashoutBalance .__LockText b {
  color: #0f172a;
}
.CashoutView.is-locked .CashoutBalance .__Fill {
  background: linear-gradient(90deg, #94a3b8 0%, #64748b 100%);
  box-shadow: none;
}
.CashoutView .CashoutStep {
  display: none;
  padding: 1.25rem;
}
.CashoutView .CashoutStep.is-active {
  display: block;
}
.CashoutView .CashoutStep .CashoutStepTitle {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.875rem;
}
.CashoutView .CashoutStep .CashoutStepHeader {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.CashoutView .CashoutStep .CashoutStepHeader .CashoutBack {
  appearance: none;
  border: 0;
  background: #f2f2f2;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0f172a;
  transition: background 0.15s ease;
}
.CashoutView .CashoutStep .CashoutStepHeader .CashoutBack:hover {
  background: #e4e4e7;
}
.CashoutView .CashoutStep .CashoutStepHeader .__SelectedMethod {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
.CashoutView .CashoutStep .CashoutStepHeader .__SelectedMethod img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  background: #f2f2f2;
}
.CashoutView .CashoutMethods {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.CashoutView .CashoutMethod {
  appearance: none;
  text-align: left;
  border: 1px solid #f2f2f2;
  background: #fff;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.CashoutView .CashoutMethod:hover {
  border-color: #0012FF;
  background: #fafbff;
}
.CashoutView .CashoutMethod:active {
  transform: scale(0.99);
}
.CashoutView .CashoutMethod.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.CashoutView .CashoutMethod.is-disabled:hover {
  border-color: #f2f2f2;
  background: #fff;
}
.CashoutView .CashoutMethod .__Icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  background: #f2f2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.CashoutView .CashoutMethod .__Icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.CashoutView .CashoutMethod .__Info {
  flex: 1;
  min-width: 0;
}
.CashoutView .CashoutMethod .__Info .__Name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}
.CashoutView .CashoutMethod .__Info .__Range {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}
.CashoutView .CashoutMethod .__Chevron {
  color: #94a3b8;
  flex-shrink: 0;
}
.CashoutView .CashoutAmounts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5rem;
}
.CashoutView .CashoutAmount {
  appearance: none;
  border: 1.5px solid #f2f2f2;
  background: #fff;
  border-radius: 12px;
  padding: 0.875rem 0.5rem;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.CashoutView .CashoutAmount .__AmountValue {
  display: block;
}
.CashoutView .CashoutAmount:hover {
  border-color: #0012FF;
}
.CashoutView .CashoutAmount.is-selected {
  border-color: #0012FF;
  background: #f0f3ff;
  color: #0012FF;
}
.CashoutView .CashoutAmount.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.CashoutView .CashoutAmount.is-disabled:hover {
  border-color: #f2f2f2;
}
.CashoutView .CashoutReview {
  border: 1px solid #f2f2f2;
  border-radius: 14px;
  overflow: hidden;
}
.CashoutView .CashoutReview .__Row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #f2f2f2;
  font-size: 14px;
  color: #64748b;
}
.CashoutView .CashoutReview .__Row:last-child {
  border-bottom: 0;
}
.CashoutView .CashoutReview .__Row b {
  color: #0f172a;
  font-weight: 700;
}
.CashoutView .CashoutReview .__Row.__Muted {
  background: #fafafa;
}
.CashoutView .CashoutReview .__Row.__Muted span:last-child {
  color: #64748b;
}
.CashoutView .CashoutReview .__Row .__MethodCell {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.CashoutView .CashoutReview .__Row .__MethodCell img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: cover;
  background: #f2f2f2;
}

@keyframes bulb-pulse {
  0%, 100% {
    fill: #f5a623;
    filter: drop-shadow(0 0 2px rgba(245, 166, 35, 0.4));
  }
  50% {
    fill: #ffe066;
    filter: drop-shadow(0 0 7px rgba(255, 220, 80, 0.9));
  }
}
.bulb-icon {
  animation: bulb-pulse 2.4s ease-in-out infinite;
}

.CashBlockedNotice {
  max-width: 560px;
  margin: 4rem auto 2rem;
  padding: 2.5rem 2rem;
  text-align: center;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 18px;
  grid-column: 1/-1;
}
.CashBlockedNotice .__Image {
  display: inline-flex;
  padding-bottom: 1rem;
}
.CashBlockedNotice .__Image img {
  width: 150px;
}
.CashBlockedNotice .__Icon img {
  width: 100%;
}
.CashBlockedNotice .__Icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 100px;
  background: #FEE2E2;
  color: #DC2626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.CashBlockedNotice .__Title {
  font-size: 20px;
  font-weight: 800;
  color: #7F1D1D;
  margin-bottom: 0.5rem;
}
.CashBlockedNotice .__Text {
  font-size: 14px;
  line-height: 1.5;
  color: #991B1B;
}
.CashBlockedNotice.CashBlockedNotice--empty {
  background: #F8FAFC;
  border-color: #E2E8F0;
  margin: 0 auto;
}
.CashBlockedNotice.CashBlockedNotice--empty .__Icon {
  background: #E0F2FE;
  color: #0284C7;
}
.CashBlockedNotice.CashBlockedNotice--empty .__Title {
  color: #0F172A;
}
.CashBlockedNotice.CashBlockedNotice--empty .__Text {
  color: #475569;
}

.NewUsersOnlyLayout {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: #FEF3C7;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  color: #78350F;
}
.NewUsersOnlyLayout .__Icon {
  flex-shrink: 0;
  color: #D97706;
  line-height: 0;
  padding-top: 1px;
}
.NewUsersOnlyLayout .__Icon svg {
  width: 22px;
  height: 22px;
}
.NewUsersOnlyLayout .__Text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  line-height: 1.45;
}
.NewUsersOnlyLayout .__Text b {
  font-size: 14px;
  font-weight: 700;
  color: #78350F;
}
.NewUsersOnlyLayout .__Text span {
  color: #92400E;
}

.TipLayout.Big {
  align-items: center;
}
.TipLayout.Big span {
  font-size: 14px;
}
.TipLayout {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #eee;
  padding: 1rem;
  gap: 0.4rem;
}
.TipLayout svg {
  min-width: 24px;
}
.TipLayout span {
  font-size: 14px;
}

.OfferEarnedSummary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 1rem 0.5rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, #EAFFE6 0%, #D6F7CF 100%);
  border-radius: 12px;
}
.OfferEarnedSummary .__Left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.OfferEarnedSummary .__Label {
  font-size: 12px;
  font-weight: 600;
  color: #155200;
  opacity: 0.75;
}
.OfferEarnedSummary .__Amount {
  font-size: 22px;
  font-weight: 800;
  color: #0d3a00;
  line-height: 1;
}
.OfferEarnedSummary .__Count {
  background: #fff;
  color: #155200;
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
}

.RewardTaskItems {
  display: flex;
  flex-direction: column;
}
.RewardTaskItems .TaskStopHint {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  background: #FFF7E6;
  border-top: 1px dashed #E9A319;
  border-bottom: 1px dashed #E9A319;
  color: #5C3A00;
  font-size: 13px;
  line-height: 1.35;
}
.RewardTaskItems .TaskStopHint .bulb-icon {
  display: flex;
  color: #E9A319;
}
.RewardTaskItems .TaskItem {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #eee;
  padding: 1rem;
}
.RewardTaskItems .TaskItem .__AmountBox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 80px;
}
.RewardTaskItems .TaskItem .__Amount {
  font-size: 14px;
  font-weight: 700;
  background: #EAFFE6;
  color: #155200;
  border-radius: 100px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.8rem;
  gap: 0.4rem;
}
.RewardTaskItems .TaskItem .__Name {
  display: flex;
  flex: 1;
  font-size: 14px;
}
.RewardTaskItems .TaskItem .__Icon {
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -1px;
  display: flex;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #f2f2f1;
  border-radius: 10px;
}
.RewardTaskItems .TaskItem.is-done .__Icon {
  background: #2BB673;
  color: #fff;
}
.RewardTaskItems .TaskItem.is-done .__Name {
  color: #888;
  text-decoration: line-through;
}

.TabSwitch {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #e2e2e2;
  padding: 0 1rem;
  gap: 1.5rem;
}
.TabSwitch .Tab {
  display: flex;
  align-items: center;
  height: 50px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
}
.TabSwitch .Tab.Active, .TabSwitch .Tab:hover {
  font-weight: 500;
  border-bottom: 1px solid #666;
}

.TabContent {
  display: none;
}
.TabContent.Active {
  display: block;
}

.DetailDescription {
  padding: 1rem;
  font-size: 14px;
  line-height: 1.55;
  color: #333;
}
.DetailDescription ol {
  margin: 0 !important;
}

.DetailList {
  display: flex;
  flex-direction: column;
  padding: 0 1rem 1rem;
  gap: 2px;
}
.DetailList .DetailRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.DetailList .DetailRow:last-child {
  border-bottom: 0;
}
.DetailList .DetailRow .DetailLabel {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.DetailList .DetailRow .DetailValue {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.DetailList .DetailRow .DetailValue svg {
  flex-shrink: 0;
}
.DetailList .DetailRow .DetailValue.DifficultyStars {
  gap: 2px;
}
.DetailList .DetailRow .DetailValue.DifficultyStars span {
  margin-left: 6px;
  color: #666;
  font-weight: 500;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-top: 1px solid #eee;
  justify-content: center;
}
footer .__EndView {
  border-top: 1px solid #eee;
  width: 1068px;
  padding: 1rem 0;
  justify-content: space-between;
  display: flex;
}
footer .__EndView .__PageLinks .__PageLeft {
  display: flex;
  gap: 1rem;
}
footer .__EndView .__PageLinks .__PageLeft abbr a {
  color: unset;
}
footer .__EndView .__PageLinks .__PageLeft abbr {
  font-size: 12px;
}
footer .__EndView .__PageLinks {
  width: 100%;
  gap: 1rem;
  justify-content: space-between;
  display: flex;
  align-items: center;
  font-size: 16px;
}
footer .__EndView ol {
  margin: 0;
  width: auto;
  padding: 0;
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 1rem;
}
footer .__EndView ol li {
  list-style: none;
}
footer .__EndView ol li a {
  font-weight: 600;
  color: #000;
}
footer .__View {
  padding: 2rem 0;
  display: flex;
  width: 1068px;
  gap: 4rem;
}
footer .__View .__Links {
  display: flex;
  flex: 1;
  width: 100%;
  gap: 2rem;
}
footer .__View .__Links .__LinkBlock .__LinkItems {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
footer .__View .__Links .__LinkBlock .__LinkItems a {
  font-weight: 600;
  font-size: 20px;
  color: #000;
}
footer .__View .__Links .__LinkBlock .__LinkBlockItem a {
  color: unset;
}
footer .__View .__Links .__LinkBlock .__LinkBlockItem .__BlockTag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
footer .__View .__Links .__LinkBlock .__LinkBlockItem {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}
footer .__View .__Links .__LinkBlock .__LinkBlockItem img {
  width: 24px;
}
footer .__View .__Links .__LinkBlock {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1rem;
}
footer .__View .__Links .__LinkBlock b {
  font-weight: 400;
  font-size: 18px;
}
footer .__View .__Logo {
  width: 200px;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
footer .__View .__Logo .PageDescription {
  color: #000;
  font-weight: 200;
  font-size: 20px;
}
footer .__View .__Logo .__LogoImage {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
footer .__View .__Logo .__LogoImage span {
  font-size: 20px;
}

.DashboardLayoutWide {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.DashboardLayoutWide .FilterInnerView {
  display: flex;
  width: 100%;
  align-self: flex-start;
  justify-content: center;
}
.DashboardLayoutWide .FilterLayout {
  padding: 2rem 0;
  width: 1180px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.DashboardLayoutWide .FilterLayout .FilterView .FilterName {
  font-weight: 700;
  font-size: 20px;
}
.DashboardLayoutWide .FilterLayout .FilterView.Clear {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
}
.DashboardLayoutWide .FilterLayout .FilterView.Center {
  text-align: center;
  gap: 0.75rem;
  justify-content: center;
  flex-direction: column;
}
.DashboardLayoutWide .FilterLayout .FilterView {
  display: flex;
  align-items: center;
}
.DashboardLayoutWide .FilterLayout .FilterView .Available {
  justify-content: center;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
}
.DashboardLayoutWide .FilterLayout .FilterView .Available .Offer {
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
}
.DashboardLayoutWide .FilterLayout .FilterView .BalanceProgress {
  display: block;
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 14px;
  text-decoration: none;
  color: #1e293b;
  transition: transform 0.15s ease;
  cursor: pointer;
}
.DashboardLayoutWide .FilterLayout .FilterView .BalanceProgress:hover {
  transform: translateY(-1px);
}
.DashboardLayoutWide .FilterLayout .FilterView .BalanceProgress .BalanceProgressHeader {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 6px;
}
.DashboardLayoutWide .FilterLayout .FilterView .BalanceProgress .BalanceProgressHeader .BalanceAmount {
  font-size: 14px;
  color: #1e293b;
}
.DashboardLayoutWide .FilterLayout .FilterView .BalanceProgress .BalanceProgressHeader .BalanceAmount b {
  font-size: 16px;
  font-weight: 800;
}
.DashboardLayoutWide .FilterLayout .FilterView .BalanceProgress .BalanceProgressHeader .BalanceAmount small {
  color: #94a3b8;
  font-size: 12px;
  margin-left: 2px;
}
.DashboardLayoutWide .FilterLayout .FilterView .BalanceProgress .BalanceProgressBar {
  position: relative;
  width: 100%;
  height: 8px;
  background: #f2f2f2;
  border-radius: 100px;
  overflow: hidden;
}
.DashboardLayoutWide .FilterLayout .FilterView .BalanceProgress .BalanceProgressBar .BalanceProgressFill {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  border-radius: 100px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.45);
}
.DashboardLayoutWide .FilterLayout .FilterView .BalanceProgress .BalanceProgressFooter {
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
  text-align: center;
}
.DashboardLayoutWide .FilterLayout .FilterView .BalanceProgress .BalanceProgressFooter .BalanceReady {
  color: #16a34a;
  font-weight: 700;
}
.DashboardLayoutWide .FilterLayout .FilterView.__Right {
  justify-content: flex-end;
}
.DashboardLayoutWide .DashboardLayoutMenu {
  width: 240px;
  height: 100dvh;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  justify-content: space-between;
}
.DashboardLayoutWide .DashboardLayoutMenu .AppLogoMenu {
  gap: 0.6rem;
  padding: 0.5rem 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.DashboardLayoutWide .DashboardLayoutMenu .AppLogoMenu b {
  color: #000;
}
.DashboardLayoutWide .DashboardLayoutMenu .AppLogoMenu b abbr {
  font-weight: 400;
}
.DashboardLayoutWide .DashboardLayoutMenu .AppLogoMenu b {
  font-weight: 600;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuSearch {
  display: flex;
  width: 100%;
  padding: 0.5rem 0;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuItems {
  display: flex;
  flex-direction: column;
  padding: 0.4rem 0.8rem;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuItems .MenuItemTitle {
  display: flex;
  color: rgba(0, 0, 0, 0.4);
  padding: 1rem 0.8rem 0.4rem 0.8rem;
  font-size: 11px;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuItems .MenuItemFavorite:hover span:nth-child(3) {
  display: inline-flex;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuItems .MenuItemFavorite span:nth-child(3) {
  display: none;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuItems .MenuItem.Center {
  justify-content: center;
  text-align: center;
  align-items: center;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuItems .MenuItem span:nth-child(1) svg {
  width: 28px !important;
  height: 28px !important;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuItems .MenuItem span {
  display: inline-flex;
  align-items: center;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuItems .MenuItem span:nth-child(2) {
  flex: 1;
  font-weight: 600;
  font-size: 15px;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuItems .MenuItem span:nth-child(2) b {
  width: 130px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  font-weight: 600;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuItems .MenuItem:hover {
  background: #fafafa;
  cursor: pointer;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuItems .MenuItem {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  vertical-align: middle;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  border-radius: 100px;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuFooter {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  width: 100%;
  gap: 0.5rem;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuFooter .MenuLinks ol {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuFooter .MenuLinks ol li a {
  color: #000;
  font-size: 11px;
  font-weight: 500;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuFooter .MenuLinks ol li {
  list-style: none;
}
.DashboardLayoutWide .DashboardLayoutMenu .MenuFooter .MenuCopyright {
  color: #666;
  font-size: 11px;
}
.DashboardLayoutWide .DashboardLayoutContent {
  display: flex;
  flex: 1;
  justify-content: center;
  padding: 2rem 0;
}

.DashboardLayout {
  width: 1180px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.DashboardLayout .OfferItems {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.5rem;
  width: 100%;
}
.DashboardLayout .OfferItems .OfferItem.Yellow {
  border: 2px solid #ffc700;
}
.DashboardLayout .OfferItems .OfferItem:hover {
  box-shadow: 0 0 0 6px rgba(255, 199, 0, 0.08);
  border: 1px solid #ffc700;
}
.DashboardLayout .OfferItems .OfferItem {
  transition: all 0.2s ease-in-out;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e2e2e2;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.DashboardLayout .OfferItems .OfferItem .OfferButton {
  padding: 1rem;
}
.DashboardLayout .OfferItems .OfferItem .OfferDevice {
  gap: 0.5rem;
  align-items: center;
  padding: 0 1rem;
  display: flex;
  color: #666;
}
.DashboardLayout .OfferItems .OfferItem .OfferDevice svg {
  width: 18px;
}
.DashboardLayout .OfferItems .OfferItem .OfferTags {
  padding: 0 1rem;
  display: flex;
  gap: 0.5rem;
}
.DashboardLayout .OfferItems .OfferItem .OfferTags .OfferTag.Pink {
  border: 1px solid #FF2079;
  background: #FF2079;
  color: #FFE6F0;
}
.DashboardLayout .OfferItems .OfferItem .OfferTags .OfferTag.Black {
  background: rgba(204, 255, 144, 0.1);
  border: 1px solid rgba(204, 255, 144, 0.1);
  color: #33691E;
}
.DashboardLayout .OfferItems .OfferItem .OfferTags .OfferTag.Yellow {
  border: 1px solid #FFE600;
  background: #FFE600;
  color: #5C4400;
}
.DashboardLayout .OfferItems .OfferItem .OfferTags .OfferTag.Amount {
  background: #EAFFE6;
  color: #155200;
}
.DashboardLayout .OfferItems .OfferItem .OfferTags .OfferTag.Violet {
  background: #fe2c55;
  border: 1px solid #fe2c55;
  color: #fff;
}
.DashboardLayout .OfferItems .OfferItem .OfferTags .OfferTag {
  display: flex;
  font-weight: 700;
  font-size: 14px;
}
.DashboardLayout .OfferItems .OfferItem .OfferTags .OfferTag svg {
  color: #161823;
  width: 14px;
}
.DashboardLayout .OfferItems .OfferItem .OfferTags .OfferTag:hover {
  opacity: 1;
}
.DashboardLayout .OfferItems .OfferItem .OfferTags .OfferTag {
  cursor: pointer;
  gap: 0.3rem;
  background: #f1f1f2;
  border-radius: 100px;
  color: #161823;
  height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 0.7rem;
}
.DashboardLayout .OfferItems .OfferItem .OfferName {
  flex: 1;
  display: flex;
  width: 100%;
  color: #000;
  padding: 0.4rem 1rem 1rem;
  font-size: 18px;
  font-weight: 600;
}
.DashboardLayout .OfferItems .OfferItem .OfferImageView .Favorite {
  cursor: pointer;
}
.DashboardLayout .OfferItems .OfferItem .OfferImageView .Favorite:hover, .DashboardLayout .OfferItems .OfferItem .OfferImageView .Favorite.active {
  color: #e00b41;
  border: 1px solid #e00b41;
  background: rgba(252, 230, 236, 0.9);
}
.DashboardLayout .OfferItems .OfferItem .OfferImageView .Favorite:hover svg path, .DashboardLayout .OfferItems .OfferItem .OfferImageView .Favorite.active svg path {
  stroke: #e00b41;
}
.DashboardLayout .OfferItems .OfferItem .OfferImageView .Favorite {
  position: absolute;
  top: 1rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 1rem;
  display: flex;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  color: #000;
}
.DashboardLayout .OfferItems .OfferItem .OfferImageView .BadgeStars svg {
  width: 16px;
  height: 16px;
}
.DashboardLayout .OfferItems .OfferItem .OfferImageView .BadgeStars {
  position: absolute;
  left: 1rem;
  align-items: center;
  top: 1rem;
  display: flex;
  gap: 0.3rem;
  padding: 0.3rem 0.6rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  border-radius: 100px;
  color: #000;
  font-size: 12px;
  font-weight: 600;
}
.DashboardLayout .OfferItems .OfferItem .OfferImageView .BadgeStars span {
  display: inline-flex;
  color: #000;
}
.DashboardLayout .OfferItems .OfferItem .OfferImageView .BadgeStars img {
  height: 16px;
  width: 16px;
}
.DashboardLayout .OfferItems .OfferItem .OfferImageView {
  position: relative;
  display: flex;
  width: 100%;
  padding: 0.5rem;
}
.DashboardLayout .OfferItems .OfferItem .OfferImageView img, .DashboardLayout .OfferItems .OfferItem .OfferImageView video {
  border-radius: 16px 16px 0 0;
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
}
.DashboardLayout .Available {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.DashboardLayout .Available span {
  color: rgba(0, 0, 0, 0.6);
}
.DashboardLayout .Available .Offer {
  color: #000;
  font-weight: 800;
  font-size: 30px;
}

.SearchBar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 100px;
  background: rgba(242, 242, 242, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(242, 242, 242, 0.1);
  width: 100%;
  position: relative;
}
.SearchBar .SearchIcon {
  position: absolute;
  left: 14px;
  top: 11px;
  color: rgba(0, 0, 0, 0.5);
}
.SearchBar input {
  width: 100%;
  border: 0;
  height: 42px;
  outline: none;
  background: transparent;
  padding: 0 1rem 0 3rem;
  font-size: 16px;
}

.NoPaddingTopMain {
  padding-top: 0 !important;
}

.SuperLinks {
  display: flex;
  height: 60px;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}
.SuperLinks .__LinksLeft {
  display: flex;
  gap: 1.5rem;
}
.SuperLinks {
  width: 100%;
}
.SuperLinks a {
  color: unset;
}
.SuperLinks .SuperLinkItem svg {
  width: 24px;
  height: 24px;
}
.SuperLinks .SuperLinkItem:hover, .SuperLinks .SuperLinkItem.Active {
  border-bottom: 2px solid #666;
  cursor: pointer;
}
.SuperLinks .SuperLinkItem {
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
  display: flex;
  height: 60px;
  align-items: center;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
}

.IconHolderTextView {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 100px;
  box-sizing: border-box;
  background: #eee;
  border: 0;
}
.IconHolderTextView.ProfileHolder {
  position: relative;
  cursor: pointer;
}
.IconHolderTextView.ProfileHolder .ProfileDropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: -4px;
  width: 220px;
  max-width: calc(100vw - 16px);
  background: #fff;
  border-radius: 12px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
  display: none;
  z-index: 1000;
  cursor: default;
  color: #1a1a1a;
  padding: 6px;
}
.IconHolderTextView.ProfileHolder .ProfileDropdown:after {
  bottom: 100%;
  left: 80%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 8px;
  margin-left: -8px;
}
.IconHolderTextView.ProfileHolder .ProfileDropdown .ProfileDropdownList {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.IconHolderTextView.ProfileHolder .ProfileDropdown .ProfileDropdownDivider {
  height: 1px;
  background: #eee;
  margin: 4px 6px;
}
.IconHolderTextView.ProfileHolder .ProfileDropdown .ProfileDropdownItem {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
}
.IconHolderTextView.ProfileHolder .ProfileDropdown .ProfileDropdownItem svg {
  flex-shrink: 0;
  color: #666;
}
.IconHolderTextView.ProfileHolder .ProfileDropdown .ProfileDropdownItem:hover {
  background: #f3f4f6;
}
.IconHolderTextView.ProfileHolder.is-open .ProfileDropdown {
  display: block;
}
.IconHolderTextView .ProfileAccount .ProfileUserIcon {
  position: relative;
  width: 50px;
  height: 42px;
}
.IconHolderTextView .ProfileAccount .ProfileUserIcon img {
  position: absolute;
  bottom: 0;
  height: 50px;
}
.IconHolderTextView .ProfileAccount .ProfileUserName {
  padding-left: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}
.IconHolderTextView .ProfileAccount {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 0.6rem 0 0;
}
.IconHolderTextView .Amount {
  cursor: pointer;
}
.IconHolderTextView .Amount .AmountImage img {
  width: 100%;
}
.IconHolderTextView .Amount .AmountImage {
  border-radius: 100px;
  overflow: hidden;
  width: 36px;
  height: 36px;
}
.IconHolderTextView .Amount {
  display: flex;
  height: 42px;
  color: #161823;
  font-weight: 700;
  padding: 0 0.8rem 0 0.3rem;
  align-items: center;
  gap: 0.4rem;
}
.IconHolderTextView .Payout {
  font-weight: 600;
  display: flex;
  padding: 0 1rem;
}

.IconHolder.Profile {
  overflow: hidden;
  justify-content: center;
  padding-top: 0.2rem;
  background: #F7CE68 !important;
}
.IconHolder {
  cursor: pointer;
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  width: 42px;
  height: 42px;
  border-radius: 100px;
  background: #eee;
}
.IconHolder.AsIcon {
  color: #666;
}
.IconHolder.Center {
  justify-content: center;
  align-items: center;
}
.IconHolder.NotificationIcon {
  position: relative;
}
.IconHolder.NotificationIcon .NotificationBadge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  padding: 0;
  box-sizing: border-box;
  border-radius: 100px;
  background: #E41E3F;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  border: 2px solid #fff;
  pointer-events: none;
}
.IconHolder.NotificationIcon .NotificationBadge.is-hidden {
  display: none;
}
.IconHolder.NotificationIcon .NotificationDropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: -4px;
  width: 340px;
  max-width: calc(100vw - 16px);
  background: #fff;
  border-radius: 12px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
  display: none;
  z-index: 1000;
  cursor: default;
  color: #1a1a1a;
}
.IconHolder.NotificationIcon .NotificationDropdown:after {
  bottom: 100%;
  left: 93%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 8px;
  margin-left: -8px;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationDropdownHeader {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationDropdownHeader b {
  font-weight: 700;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationDropdownHeader .NotificationMarkAll {
  background: none;
  border: 0;
  color: #6c5ce7;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationDropdownHeader .NotificationMarkAll:hover {
  background: #f3f0ff;
  text-decoration: underline;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationDropdownList {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 0 0 12px 12px;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationEmpty {
  padding: 2rem 1rem;
  text-align: center;
  color: #888;
  font-size: 14px;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationItem {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.7rem 0.9rem 0.7rem 1.6rem;
  cursor: pointer;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  transition: background 0.12s ease;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationItem:last-child {
  border-bottom: 0;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationItem:hover {
  background: #f7f7f8;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationItem.is-unread {
  background: #f6f3ff;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationItem.is-unread:hover {
  background: #efeaff;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationItem.is-unread:before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #6c5ce7;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationItem.is-chargeback .__Payout {
  background: #ffe6e6;
  color: #8a0b0b;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationItem.is-chargeback .__Event {
  color: #8a0b0b;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationItem .NotificationItemHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationItem .NotificationItemHeader b {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationItem .NotificationItemHeader .__Time {
  font-size: 11px;
  color: #999;
  flex-shrink: 0;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationItem .NotificationItemBody {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationItem .NotificationItemBody .__Event {
  font-size: 12px;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.IconHolder.NotificationIcon .NotificationDropdown .NotificationItem .NotificationItemBody .__Payout {
  background: #EAFFE6;
  color: #155200;
  border-radius: 100px;
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  white-space: nowrap;
}
.IconHolder.NotificationIcon.is-open .NotificationDropdown {
  display: block;
}
.IconHolder.BoostIcon {
  position: relative;
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  animation: boostPulse 2s ease-out infinite;
}
.IconHolder.BoostIcon .BoostImg {
  filter: brightness(0) invert(1);
  opacity: 1;
  animation: boostWiggle 3.2s ease-in-out infinite;
  transform-origin: 50% 55%;
}
.IconHolder.BoostIcon.is-open {
  animation: none;
  box-shadow: none;
}
.IconHolder.BoostIcon.is-open .BoostImg {
  animation: none;
}
.IconHolder.BoostIcon .BoostBadge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  padding: 0;
  box-sizing: border-box;
  border-radius: 100px;
  background: #fff;
  color: #000;
  display: flex;
  box-shadow: 0 2px 0 0px rgba(0, 0, 0, 0.2);
  justify-content: center;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  pointer-events: none;
}
.IconHolder.BoostIcon .BoostBadge.is-hidden {
  display: none;
}
.IconHolder.BoostIcon .BoostDropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: -4px;
  width: 380px;
  max-width: calc(100vw - 16px);
  background: #fff;
  border-radius: 12px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
  display: none;
  z-index: 1000;
  cursor: default;
  color: #1a1a1a;
}
.IconHolder.BoostIcon .BoostDropdown:after {
  bottom: 100%;
  left: 94%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 8px;
  margin-left: -8px;
}
.IconHolder.BoostIcon .BoostDropdown .BoostDropdownHeader {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #eee;
  font-size: 18px;
}
.IconHolder.BoostIcon .BoostDropdown .BoostDropdownHeader b {
  font-weight: 700;
}
.IconHolder.BoostIcon .BoostDropdown .BoostDropdownList {
  max-height: 420px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 0 0 12px 12px;
}
.IconHolder.BoostIcon .BoostDropdown .BoostEmpty {
  padding: 2rem 1rem;
  text-align: center;
  color: #888;
  font-size: 14px;
}
.IconHolder.BoostIcon .BoostDropdown .BoostItem {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.12s ease;
}
.IconHolder.BoostIcon .BoostDropdown .BoostItem:last-child {
  border-bottom: 0;
}
.IconHolder.BoostIcon .BoostDropdown .BoostItem:hover {
  background: #f7f7f8;
}
.IconHolder.BoostIcon .BoostDropdown .BoostItem .BoostItemImage {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f2f2f2;
}
.IconHolder.BoostIcon .BoostDropdown .BoostItem .BoostItemImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.IconHolder.BoostIcon .BoostDropdown .BoostItem .BoostItemName {
  flex: 1;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  color: #111;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-width: 0;
}
.IconHolder.BoostIcon .BoostDropdown .BoostItem .BoostItemPayout {
  background: #EAFFE6;
  color: #155200;
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  white-space: nowrap;
}
.IconHolder.BoostIcon .BoostDropdown .BoostLoading {
  padding: 0;
}
.IconHolder.BoostIcon .BoostDropdown .BoostItemSkeleton {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid #f2f2f2;
}
.IconHolder.BoostIcon .BoostDropdown .BoostItemSkeleton .__img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(90deg, #ececec 25%, #d8d8d8 50%, #ececec 75%);
  background-size: 1200px 100%;
  animation: hotSkeletonShimmer 1.5s ease-in-out infinite;
}
.IconHolder.BoostIcon .BoostDropdown .BoostItemSkeleton .__text {
  flex: 1;
}
.IconHolder.BoostIcon .BoostDropdown .BoostItemSkeleton .__text .__line {
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, #ececec 25%, #d8d8d8 50%, #ececec 75%);
  background-size: 1200px 100%;
  animation: hotSkeletonShimmer 1.5s ease-in-out infinite;
  margin-bottom: 6px;
}
.IconHolder.BoostIcon .BoostDropdown .BoostItemSkeleton .__text .__line.short {
  width: 40%;
}
.IconHolder.BoostIcon .BoostDropdown .BoostItemSkeleton .__pill {
  width: 56px;
  height: 22px;
  border-radius: 100px;
  background: linear-gradient(90deg, #ececec 25%, #d8d8d8 50%, #ececec 75%);
  background-size: 1200px 100%;
  animation: hotSkeletonShimmer 1.5s ease-in-out infinite;
}
.IconHolder.BoostIcon.is-open .BoostDropdown {
  display: block;
}

@keyframes boostPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.65), 0 0 14px rgba(139, 92, 246, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(139, 92, 246, 0), 0 0 18px rgba(139, 92, 246, 0.35);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0), 0 0 14px rgba(139, 92, 246, 0.55);
  }
}
@keyframes boostWiggle {
  0%, 88%, 100% {
    transform: rotate(0);
  }
  90% {
    transform: rotate(-12deg);
  }
  93% {
    transform: rotate(10deg);
  }
  96% {
    transform: rotate(-5deg);
  }
}
header.HeaderInGame {
  background: #fff;
  backdrop-filter: unset;
}
header .HeaderInnerView a {
  color: unset;
}
header .HeaderInnerView.Logged {
  width: 1180px;
}
header .HeaderInnerView {
  width: 1068px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.FixedRight {
  position: fixed;
  z-index: 1000;
  right: 0.5rem;
  top: 0.5rem;
  padding: 0 0.6rem;
  width: auto;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 0;
}
header.FixedRight .Amount {
  border-right: 0px;
}
header.FixedRight .IconHolderTextView, header.FixedRight .IconHolder {
  background: #f1f1f2;
  cursor: pointer;
  box-shadow: none;
  color: #161823;
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  height: 65px;
  border-bottom: 1px solid #eee;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.4);
  padding: 0 1rem;
  align-items: center;
  justify-content: center;
}
header .Account {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
header .Logo .MainLogo {
  display: flex;
  gap: 0.6rem;
  height: 65px;
  align-items: center;
  padding-right: 1rem;
  border-right: 1px solid #e2e2e2;
}
header .Logo .AppLogo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 22px;
}
header .Logo .AppLogo b {
  font-size: 20px;
}
header .Logo .AppLogo abbr {
  font-size: 20px;
  font-weight: 300;
}
header .Logo span {
  background: #2ee865;
  color: #000;
  font-weight: 700;
  font-size: 20px;
  border-radius: 10px;
  display: inline-flex;
  height: 30px;
  align-items: center;
  padding: 0 0.4rem;
}
header .Logo b {
  font-weight: 700;
  font-size: 18px;
}
header .Logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

main .__PayoutMethods {
  display: flex;
  width: 100%;
  background: #f2f2f1;
  padding: 3rem 0;
  align-items: center;
  flex-direction: column;
}
main .__PayoutMethods .__GiftCards {
  width: 100%;
  display: flex;
}
main .__PayoutMethods .__InnerViewTitle {
  display: flex;
  width: 1068px;
  flex-direction: column;
  align-items: center;
}
main .__PayoutMethods .__InnerViewTitle h2 {
  margin: 0.5rem 0;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
}
main .__PayoutMethods .__InnerViewTitle h3 {
  font-weight: 500;
  font-size: 22px;
  margin: 0;
}
main .__InnerView {
  width: 1068px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
main.Normal {
  padding: 0 !important;
}
main {
  width: 100%;
  align-items: center;
  display: inline-flex;
  padding: 2rem 0;
  flex-direction: column;
  gap: 2rem;
}
main .__DiscoverBlock .BlockItem:last-child {
  border-right: 0;
}
main .__DiscoverBlock .BlockItem {
  border-right: 1px solid #e2e2e2;
  gap: 1rem;
}
main .__DiscoverBlock .BlockItem span:nth-child(2) {
  padding: 0 2rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  font-weight: 500;
}
main .__DiscoverBlock .BlockItem span:nth-child(1) {
  letter-spacing: 1px;
  font-weight: 800;
  font-size: 32px;
}
main .__DiscoverBlock .BlockItem {
  flex-direction: column;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
main .__DiscoverBlock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  background: #f2f2f1;
  margin: 2rem 0;
  border-radius: 20px;
  min-height: 200px;
}
main .__HowToView {
  display: flex;
  width: 100%;
  gap: 6rem;
}
main .__HowToView .__Left {
  display: flex;
  padding-bottom: 4rem;
  width: 360px;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  align-self: flex-start;
  top: 60px;
}
main .__HowToView .__Left .__LeftTitle {
  display: flex;
  flex-direction: column;
}
main .__HowToView .__Left .__LeftTitle h2 {
  display: flex;
  flex-direction: column;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
}
main .__HowToView .__Left .__LeftTitle h2 b {
  letter-spacing: -1px;
  font-weight: 800;
}
main .__HowToView .__Viewer {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 4rem;
}
main .__HowToView .__Viewer .__HowToBlockItem {
  display: flex;
  width: 100%;
  gap: 1rem;
  flex-direction: column;
}
main .__HowToView .__Viewer .__HowToBlockItem .__ImageView.Yelp {
  background: #E8E8E8 url("https://assets.playtoearn.com/__cards10_x4.png") center no-repeat;
  background-size: cover;
}
main .__HowToView .__Viewer .__HowToBlockItem .__ImageView.Violet {
  background: rgb(150, 145, 255);
  background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
  background: linear-gradient(62deg, #E8E8E8 0%, #F5F5F5 100%);
  background: #ffc862;
  overflow: hidden;
}
main .__HowToView .__Viewer .__HowToBlockItem .__ImageView.Yellow {
  background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
  background: linear-gradient(62deg, #E8E8E8 0%, #F5F5F5 100%);
  background: linear-gradient(62deg, #D4D4D4 0%, #EFEFEF 100%);
  background: rgb(89, 160, 246);
}
main .__HowToView .__Viewer .__HowToBlockItem .__ImageView.Hidden {
  overflow: hidden;
}
main .__HowToView .__Viewer .__HowToBlockItem .__ImageView {
  display: flex;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 16/10;
  background: #f2f2f1;
  border-radius: 20px;
}
main .__HowToView .__Viewer .__HowToBlockItem .__Description {
  font-size: 20px;
}
main .__HowToView .__Viewer .__HowToBlockItem .__Title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -1px;
  font-weight: 800;
  font-size: 30px;
}
main .PageRegisterView {
  display: flex;
  width: 100%;
  gap: 2rem;
  align-items: center;
}
main .PageRegisterView .__Info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4rem;
}
main .PageRegisterView .__Info .__InfoCardItems {
  display: flex;
  gap: 1rem;
  align-items: center;
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem:hover {
  transform: scale(1.02);
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem {
  transition: all 0.2s ease-in-out;
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem:nth-child(2) {
  width: 200px;
  min-height: 260px;
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem {
  width: 160px;
  min-height: 220px;
  background: #f2f2f1;
  border-radius: 20px;
  padding: 1rem;
  flex-direction: column;
  display: flex;
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem .CashBlock {
  display: flex;
  padding-top: 0.8rem;
  justify-content: space-between;
  align-items: flex-start;
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem .CashBlock .StarRating svg {
  fill: #ffcd1d;
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem .CashBlock .StarRating {
  padding-top: 0.5rem;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  align-items: center;
  gap: 0.2rem;
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem .CashBlock .CashAmount {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem .CashBlock .CashAmount span:nth-child(2) {
  font-weight: 700;
  font-size: 14px;
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem .CashBlock .CashAmount span:nth-child(1) {
  text-transform: uppercase;
  font-size: 9px;
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem .CardDescription {
  color: #666;
  font-size: 11px;
  font-weight: 500;
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem .CardTitle {
  padding-top: 0.5rem;
  font-size: 12px;
  font-weight: 700;
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem .CardImageView {
  display: flex;
  overflow: hidden;
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem .CardImageView img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .PageRegisterView .__Info .__InfoCardItems .CardItem .CardImageView {
  width: 100%;
  background: #fff;
  aspect-ratio: 1/1;
  border-radius: 10px;
  box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.01);
}
main .PageRegisterView .__Info .__InfoTrustPilot {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
main .PageRegisterView .__Info .__InfoTrustPilot span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
main .PageRegisterView .__RegisterView {
  display: flex;
  width: 450px;
  border-radius: 20px;
  min-height: 500px;
  background: #f2f2f1;
  padding: 2rem;
}
main .PageRegisterView .__RegisterView .LastSign {
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
main .PageRegisterView .__RegisterView .SignButtons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main .PageRegisterView .__RegisterView .ViewTitle {
  padding-bottom: 1rem;
  justify-content: center;
  display: flex;
  flex: 1;
  width: 100%;
  letter-spacing: -1px;
  font-weight: 800;
  font-size: 32px;
}
main .PageTitle {
  display: flex;
  padding-top: 2rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
}
main .PageTitle .GiftcardLogo {
  display: flex;
  width: 100%;
  padding: 2rem 0;
  justify-content: center;
}
main .PageTitle .GiftcardLogo img {
  width: 60%;
  border-radius: 30px;
}
main .PageTitle h2 {
  text-align: center;
  display: inline-flex;
  font-size: 18px;
}
main .PageTitle h1 {
  margin: 0;
  letter-spacing: -2px;
  display: inline-flex;
  text-align: center;
  max-width: 80%;
  font-size: 60px;
  font-weight: 800;
}

.ButtonBlues {
  height: 50px;
  appearance: button;
  background-color: #0012FF;
  border: 1px solid #0012FF;
  border-radius: 10px;
  width: 100%;
  box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset, rgba(0, 10, 80, 0.075) 0 1px 1px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  margin: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 0 1rem;
  text-align: center;
  text-transform: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}
.ButtonBlues:focus:not(:focus-visible), .ButtonBlues:focus {
  outline: 0;
}
.ButtonBlues:hover {
  background-color: #0010E0;
  border-color: #0010E0;
}
.ButtonBlues:focus {
  background-color: #0011CC;
  border-color: #0010BF;
  box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset, rgba(0, 10, 80, 0.075) 0 1px 1px, rgba(0, 60, 255, 0.5) 0 0 0 0.2rem;
}
.ButtonBlues:active {
  background-color: #0010BF;
  background-image: none;
  border-color: #000FAD;
  box-shadow: rgba(0, 10, 80, 0.125) 0 3px 5px inset;
}
.ButtonBlues:active:focus {
  box-shadow: rgba(0, 10, 80, 0.125) 0 3px 5px inset, rgba(0, 60, 255, 0.5) 0 0 0 0.2rem;
}
.ButtonBlues:disabled {
  background-image: none;
  box-shadow: none;
  opacity: 0.65;
  pointer-events: none;
}

.ButtonYellow {
  height: 50px;
  appearance: button;
  background-color: #ffc700;
  border: 1px solid #ffc700;
  border-radius: 10px;
  width: 100%;
  box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset, rgba(0, 10, 80, 0.075) 0 1px 1px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  margin: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 0 1rem;
  text-align: center;
  text-transform: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}
.ButtonYellow:focus:not(:focus-visible), .ButtonYellow:focus {
  outline: 0;
}
.ButtonYellow:hover {
  background-color: #0010E0;
  border-color: #0010E0;
}
.ButtonYellow:focus {
  background-color: #0011CC;
  border-color: #0010BF;
  box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset, rgba(0, 10, 80, 0.075) 0 1px 1px, rgba(0, 60, 255, 0.5) 0 0 0 0.2rem;
}
.ButtonYellow:active {
  background-color: #0010BF;
  background-image: none;
  border-color: #000FAD;
  box-shadow: rgba(0, 10, 80, 0.125) 0 3px 5px inset;
}
.ButtonYellow:active:focus {
  box-shadow: rgba(0, 10, 80, 0.125) 0 3px 5px inset, rgba(0, 60, 255, 0.5) 0 0 0 0.2rem;
}
.ButtonYellow:disabled {
  background-image: none;
  box-shadow: none;
  opacity: 0.65;
  pointer-events: none;
}

.ButtonBlue.Round {
  border-radius: 100px;
}
.ButtonBlue.Big {
  font-size: 18px;
  height: 50px;
}
.ButtonBlue {
  cursor: pointer;
  padding: 0 26px;
  height: 42px;
  color: #fff;
  background-image: linear-gradient(180deg, #0781FD 0%, #0346ED 100%);
  border-radius: 8px;
  border: 0;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07), inset 0 1px 0 0px rgba(255, 255, 255, 0.15);
  transition: all 150ms ease-in-out;
  display: inline-flex;
  align-items: center;
}
.ButtonBlue:hover {
  filter: brightness(1.1);
}
.ButtonBlue:active {
  transform: scale(0.95);
}

.ButtonViolet {
  appearance: button;
  background-color: #4D4AE8;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  border: 1px solid #4D4AE8;
  border-radius: 1rem;
  box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset, rgba(46, 54, 80, 0.075) 0 1px 1px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding: 0.5rem 1rem;
  text-align: center;
  text-transform: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}
.ButtonViolet:focus:not(:focus-visible), .ButtonViolet:focus {
  outline: 0;
}
.ButtonViolet:hover {
  background-color: #3733E5;
  border-color: #3733E5;
}
.ButtonViolet:focus {
  background-color: #413FC5;
  border-color: #3E3BBA;
  box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset, rgba(46, 54, 80, 0.075) 0 1px 1px, rgba(104, 101, 235, 0.5) 0 0 0 0.2rem;
}
.ButtonViolet:active {
  background-color: #3E3BBA;
  background-image: none;
  border-color: #3A38AE;
  box-shadow: rgba(46, 54, 80, 0.125) 0 3px 5px inset;
}
.ButtonViolet:active:focus {
  box-shadow: rgba(46, 54, 80, 0.125) 0 3px 5px inset, rgba(104, 101, 235, 0.5) 0 0 0 0.2rem;
}
.ButtonViolet:disabled {
  background-image: none;
  box-shadow: none;
  opacity: 0.65;
  pointer-events: none;
}

.ButtonGray.Round {
  border-radius: 100px;
}
.ButtonGray {
  appearance: button;
  background: #eee;
  border: 0;
  border-radius: 1rem;
  box-sizing: border-box;
  color: #1E293B;
  cursor: pointer;
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding: 0.5rem 1rem;
  text-align: center;
  text-transform: none;
  transition: background-color 0.15s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}
.ButtonGray:focus:not(:focus-visible), .ButtonGray:focus {
  outline: 0;
}
.ButtonGray:hover {
  background: #e2e2e2;
}
.ButtonGray:active {
  background: #d4d4d4;
}
.ButtonGray:disabled {
  opacity: 0.65;
  pointer-events: none;
}

.CashBreadcrumb {
  width: 1068px;
  max-width: 100%;
  margin: 1.25rem auto 0;
  padding: 0 1rem;
  box-sizing: border-box;
  font-size: 14px;
  color: #94a3b8;
}
.CashBreadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.CashBreadcrumb li {
  display: inline-flex;
  align-items: center;
}
.CashBreadcrumb li + li::before {
  content: "›";
  margin-right: 0.5rem;
  color: #94a3b8;
}
.CashBreadcrumb li[aria-current=page] {
  color: #1E293B;
  font-weight: 500;
}
.CashBreadcrumb a {
  color: #64748b;
  text-decoration: none;
}
.CashBreadcrumb a:hover {
  color: #0012FF;
  text-decoration: underline;
}

.GiftcardCtaWrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.ButtonBlueStandard.Round {
  border-radius: 100px;
}
.ButtonBlueStandard.Big {
  font-size: 18px;
  padding: 0.85rem 1.75rem;
}
.ButtonBlueStandard {
  appearance: button;
  background: #0012FF;
  border: 0;
  border-radius: 1rem;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding: 0.5rem 1rem;
  text-align: center;
  text-transform: none;
  transition: background-color 0.15s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}
.ButtonBlueStandard:focus:not(:focus-visible), .ButtonBlueStandard:focus {
  outline: 0;
}
.ButtonBlueStandard:hover {
  background: #000EDB;
}
.ButtonBlueStandard:active {
  background: #000AB8;
}
.ButtonBlueStandard:disabled {
  opacity: 0.65;
  pointer-events: none;
}

.ButtonGreen.Round {
  border-radius: 100px;
}
.ButtonGreen {
  appearance: button;
  background-color: #22C55E;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  border: 1px solid #22C55E;
  border-radius: 1rem;
  box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset, rgba(46, 54, 80, 0.075) 0 1px 1px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding: 0.5rem 1rem;
  text-align: center;
  text-transform: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}
.ButtonGreen:focus:not(:focus-visible), .ButtonGreen:focus {
  outline: 0;
}
.ButtonGreen:hover {
  background-color: #16A34A;
  border-color: #16A34A;
}
.ButtonGreen:focus {
  background-color: #15803D;
  border-color: #166534;
  box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0 inset, rgba(46, 54, 80, 0.075) 0 1px 1px, rgba(34, 197, 94, 0.5) 0 0 0 0.2rem;
}
.ButtonGreen:active {
  background-color: #166534;
  background-image: none;
  border-color: #14532D;
  box-shadow: rgba(46, 54, 80, 0.125) 0 3px 5px inset;
}
.ButtonGreen:active:focus {
  box-shadow: rgba(46, 54, 80, 0.125) 0 3px 5px inset, rgba(34, 197, 94, 0.5) 0 0 0 0.2rem;
}
.ButtonGreen:disabled {
  background-image: none;
  box-shadow: none;
  opacity: 0.65;
  pointer-events: none;
}

.swiper-payout {
  width: 100%;
  overflow: hidden;
  margin: 2rem 0;
}

.swiper-payout .swiper-slide {
  width: 100%;
  flex-shrink: 0;
}

.PayoutCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.PayoutCard {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  user-select: none;
}

.PayoutCard .PayoutIcon {
  font-size: 28px;
  line-height: 1;
}

.PayoutCard .PayoutLabel {
  font-size: 13px;
  font-weight: 600;
  color: #e0e0f0;
  text-align: center;
}

.PlayToEarnPageQuestions {
  display: flex;
  padding-top: 2rem;
  justify-content: center;
  width: 100%;
}
.PlayToEarnPageQuestions .__View {
  display: flex;
  width: 1068px;
  flex-direction: column;
}
.PlayToEarnPageQuestions .__View .__Title {
  font-weight: 800;
  font-size: 40px;
}

.faq-wrapper {
  display: inline-flex;
  padding-top: 0rem;
  flex-direction: column;
  width: 1068px;
}
.faq-wrapper h2 {
  margin-bottom: 1rem;
}
.faq-wrapper .faq-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border-bottom: 1px solid #e2e2e2;
}
.faq-wrapper .faq-item:last-child {
  border-bottom: none;
}
.faq-wrapper .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-wrapper .faq-item .faq-question {
  width: 100%;
  text-align: left;
  padding: 10px 0px;
  font-size: 24px;
  font-weight: 600;
  border: none;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-wrapper .faq-item .faq-question:hover {
  color: #0A84FF;
}
.faq-wrapper .faq-item .faq-question .faq-icon {
  transition: transform 0.1s ease;
}
.faq-wrapper .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.15s ease;
}
.faq-wrapper .faq-item .faq-answer p {
  padding-bottom: 1rem;
  margin: 5px 0;
  font-size: 20px;
  font-weight: 500;
  color: #444;
}

.shiny-btn {
  position: relative;
  overflow: hidden;
  padding: 12px 48px;
  text-align: center;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 0 1px #fff;
  color: #1a1000;
  background: linear-gradient(102deg, rgb(255, 199, 0) 16.73%, rgb(255, 225, 119) 42.67%, rgb(255, 199, 0) 81.59%, rgb(255, 246, 214) 163.24%);
  box-shadow: none;
}

.shiny-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-18deg);
  animation: shine 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.shiny-btn-blue {
  position: relative;
  overflow: hidden;
  padding: 12px 48px;
  text-align: center;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #0012ff;
  box-shadow: none;
}

.shiny-btn-blue::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  transform: skewX(-18deg);
  animation: shine 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  55% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
.AppBottomBar a {
  color: unset;
}
.AppBottomBar {
  position: fixed;
  z-index: 100;
  display: flex;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  height: 60px;
  border-top: 1px solid #e2e2e2;
  grid-template-columns: repeat(4, 1fr);
}
.AppBottomBar .BarItem {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.AppBottomBar .BarItem span:nth-child(2) {
  font-size: 9px;
  font-weight: 600;
}
.AppBottomBar .BarItem {
  width: 100%;
  justify-content: center;
  align-items: center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.Favorite svg {
  transition: fill 0.15s;
}

input[type=checkbox],
input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  border: 1.5px solid #ccc !important;
  background: var(--color-background-primary);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}

input[type=checkbox] {
  border-radius: 8px;
}

input[type=radio] {
  border-radius: 50%;
}

input[type=checkbox]:checked,
input[type=radio]:checked {
  background-color: #0012ff;
  border-color: #0012ff !important;
}

input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 13 13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,7 5.5,10.5 11,3' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
}

input[type=radio]:checked {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='5' cy='5' r='3.5' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

.group {
  background: var(--color-background-primary);
  border: 0.5px solid var(--color-border-tertiary);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 0.5px solid var(--color-border-tertiary);
  cursor: pointer;
  font-size: 15px;
  color: var(--color-text-primary);
  transition: background 0.1s;
}

label:last-child {
  border-bottom: none;
}

label:hover {
  background: var(--color-background-secondary);
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-tertiary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px 4px;
}

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