.s37-cashback-root {
  position: fixed;
  top: 49px;
  bottom: 64px;
  left: 50%;
  z-index: 70;
  width: 100%;
  max-width: 405px;
  transform: translateX(-50%);
  overflow: hidden;
  background: #0d1017;
  color: #f4f5f7;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0;
}

.s37-cashback-root,
.s37-cashback-root * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.s37-cashback-summary {
  display: flex;
  min-height: 37px;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #a8aab2;
  background: #0f1219;
}

.s37-cashback-summary strong {
  color: #f6d94e;
  font-size: 13px;
  font-weight: 700;
}

.s37-cashback-layout {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  height: calc(100% - 37px);
  min-height: 0;
}

.s37-cashback-sidebar {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 7px;
  padding: 6px 7px 8px;
  overflow-y: auto;
  background: #11151d;
  scrollbar-width: none;
}

.s37-cashback-sidebar::-webkit-scrollbar,
.s37-cashback-list::-webkit-scrollbar,
.s37-cashback-subview__body::-webkit-scrollbar {
  display: none;
}

.s37-cashback-category,
.s37-cashback-action {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 7px;
  color: #f6f7f9;
  font: inherit;
  cursor: pointer;
}

.s37-cashback-category {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  min-height: 39px;
  align-items: center;
  gap: 5px;
  padding: 4px 6px;
  background: #20252e;
  text-align: left;
}

.s37-cashback-category img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.s37-cashback-category span {
  overflow-wrap: anywhere;
  font-size: 11px;
  line-height: 1.15;
}

.s37-cashback-category.is-active {
  background: #ed4a93;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.s37-cashback-actions {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.s37-cashback-action {
  min-height: 29px;
  padding: 4px 5px;
  border: 1px solid #e9418f;
  background: transparent;
  color: #f06aa7;
  font-size: 11px;
  line-height: 1.1;
}

.s37-cashback-action--receive {
  border-color: #20c922;
  background: #20c922;
  color: #fff;
  font-weight: 700;
}

.s37-cashback-action:disabled {
  cursor: default;
  opacity: 0.45;
}

.s37-cashback-action__icon {
  display: inline-block;
  margin-right: 3px;
  font-size: 13px;
  line-height: 1;
  vertical-align: -1px;
}

.s37-cashback-action.is-loading .s37-cashback-action__icon {
  animation: s37-cashback-spin 0.8s linear infinite;
}

.s37-cashback-list {
  min-width: 0;
  min-height: 0;
  padding: 6px 8px 12px 5px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

.s37-cashback-card {
  position: relative;
  display: grid;
  grid-template-columns: 47px minmax(0, 1fr) 13px;
  min-height: 63px;
  width: 100%;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px;
  padding: 7px 5px 7px 8px;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  background: #1b2029;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.24);
  color: #f7f8fa;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.s37-cashback-card__logo {
  display: flex;
  width: 47px;
  height: 38px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.s37-cashback-card__logo img {
  display: block;
  width: 45px;
  max-height: 31px;
  object-fit: contain;
}

.s37-cashback-card__center {
  min-width: 0;
}

.s37-cashback-card__metrics {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(78px, 0.8fr);
  gap: 8px;
}

.s37-cashback-metric {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3px;
  min-width: 0;
  color: #969aa4;
  font-size: 10px;
  line-height: 1.14;
}

.s37-cashback-metric span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.s37-cashback-metric strong {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.s37-cashback-card__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
}

.s37-cashback-progress {
  position: relative;
  height: 13px;
  overflow: hidden;
  border-radius: 7px;
  background: #777d87;
  color: #fff;
  font-size: 9px;
  line-height: 13px;
  text-align: center;
  white-space: nowrap;
}

.s37-cashback-progress::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--cashback-progress, 0%);
  max-width: 100%;
  border-radius: inherit;
  background: #ed4a93;
  content: "";
}

.s37-cashback-progress span {
  position: relative;
  z-index: 1;
}

.s37-cashback-collectible {
  color: #979ba4;
  font-size: 10px;
  white-space: nowrap;
}

.s37-cashback-collectible strong {
  margin-left: 2px;
  color: #f4cd31;
  font-size: 11px;
}

.s37-cashback-card__arrow {
  color: #9ca1ab;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

.s37-cashback-empty,
.s37-cashback-loading {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #7f8490;
  font-size: 12px;
  text-align: center;
}

.s37-cashback-skeleton {
  height: 63px;
  margin-bottom: 8px;
  border-radius: 7px;
  background: linear-gradient(100deg, #191e27 15%, #252b36 40%, #191e27 65%);
  background-size: 220% 100%;
  animation: s37-cashback-shimmer 1.15s linear infinite;
}

.s37-cashback-subview {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  background: #0d1017;
}

.s37-cashback-subview__header {
  position: relative;
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 0 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #141820;
}

.s37-cashback-subview__header h2 {
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.s37-cashback-back {
  position: absolute;
  left: 8px;
  top: 5px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #a5a9b2;
  font-size: 30px;
  font-weight: 300;
  line-height: 30px;
  cursor: pointer;
}

.s37-cashback-subview__body {
  flex: 1;
  min-height: 0;
  padding: 11px;
  overflow-y: auto;
  scrollbar-width: none;
}

.s37-cashback-rate-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.s37-cashback-rate-summary div {
  padding: 8px 5px;
  background: #181d26;
  color: #969aa4;
  font-size: 10px;
  text-align: center;
}

.s37-cashback-rate-summary strong,
.s37-cashback-rate-summary img {
  display: block;
  margin: 4px auto 0;
  color: #fff;
  font-size: 12px;
}

.s37-cashback-rate-summary img {
  width: 46px;
  height: 20px;
  object-fit: contain;
}

.s37-cashback-rate-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 7px;
}

.s37-cashback-rate-table th {
  padding: 2px 7px;
  color: #8f949f;
  font-size: 10px;
  font-weight: 500;
  text-align: left;
}

.s37-cashback-rate-table td {
  padding: 10px 8px;
  background: #191e27;
  color: #fff;
  font-size: 12px;
}

.s37-cashback-rate-table td:first-child {
  border-radius: 6px 0 0 6px;
}

.s37-cashback-rate-table td:last-child {
  border-radius: 0 6px 6px 0;
  color: #f3cb34;
  font-weight: 700;
  text-align: right;
}

.s37-cashback-rate-table tr.is-current td {
  box-shadow: inset 0 0 0 1px #ed4a93;
}

.s37-cashback-history-card {
  margin-bottom: 9px;
  overflow: hidden;
  border-radius: 7px;
  background: #191e27;
}

.s37-cashback-history-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #9499a3;
  font-size: 10px;
}

.s37-cashback-history-card__head strong {
  color: #f3cf36;
  font-size: 13px;
}

.s37-cashback-history-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #9ba0aa;
  font-size: 10px;
}

.s37-cashback-history-item:last-child {
  border-bottom: 0;
}

.s37-cashback-history-item strong {
  display: block;
  margin-bottom: 2px;
  color: #f5f6f8;
  font-size: 11px;
}

.s37-cashback-history-item span:last-child {
  color: #f3cf36;
  font-size: 11px;
  font-weight: 700;
}

.s37-cashback-toast {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  max-width: calc(100% - 36px);
  transform: translateX(-50%) translateY(12px);
  padding: 9px 13px;
  border-radius: 6px;
  background: rgba(9, 11, 16, 0.96);
  box-shadow: 0 7px 24px rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 11px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.s37-cashback-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.s37-cashback-award {
  position: absolute;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.52);
  pointer-events: none;
}

.s37-cashback-award__value {
  position: relative;
  z-index: 2;
  min-width: 150px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 220, 83, 0.55);
  border-radius: 8px;
  background: #191e27;
  box-shadow: 0 0 34px rgba(255, 209, 57, 0.28);
  color: #ffd83d;
  font-size: 25px;
  font-weight: 800;
  text-align: center;
  animation: s37-cashback-award-pop 0.38s ease both;
}

.s37-cashback-award__value small {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

.s37-cashback-coin {
  position: absolute;
  top: -30px;
  left: var(--coin-x);
  width: 18px;
  height: 18px;
  border: 3px solid #f3b51f;
  border-radius: 50%;
  background: #ffe067;
  box-shadow: inset 0 0 0 2px #fff1a4;
  animation: s37-cashback-coin-fall var(--coin-duration) linear var(--coin-delay) both;
}

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

@keyframes s37-cashback-shimmer {
  to { background-position-x: -220%; }
}

@keyframes s37-cashback-award-pop {
  0% { transform: scale(0.55); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes s37-cashback-coin-fall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(calc(100vh + 60px)) rotate(760deg); opacity: 0.92; }
}

@media (min-width: 501px) {
  .s37-cashback-layout {
    grid-template-columns: 92px minmax(0, 1fr);
    padding-left: 11px;
  }

  .s37-cashback-sidebar {
    gap: 11px;
    padding: 0 11px 8px 0;
  }

  .s37-cashback-category {
    grid-template-columns: 18px minmax(0, 1fr);
    min-height: 38px;
    gap: 4px;
    padding: 0 3px 0 2px;
  }

  .s37-cashback-category img {
    width: 18px;
    height: 18px;
  }

  .s37-cashback-category span {
    overflow-wrap: normal;
    font-size: 11px;
    white-space: nowrap;
  }

  .s37-cashback-actions {
    margin: 2px 8px 0;
  }

  .s37-cashback-list {
    padding: 0 10px 12px 0;
  }

  .s37-cashback-card {
    grid-template-columns: 29px minmax(0, 1fr) 13px;
    min-height: 61px;
    gap: 5px;
    margin-bottom: 11px;
    padding: 6px 4px 6px 5px;
  }

  .s37-cashback-card__logo {
    width: 29px;
    height: 32px;
  }

  .s37-cashback-card__logo img {
    width: 30px;
    max-height: 24px;
  }
}

@media (max-width: 500px) {
  .s37-cashback-root {
    left: 0;
    max-width: none;
    transform: none;
  }
}

@media (max-width: 360px) {
  .s37-cashback-root {
    top: 40px;
    bottom: 54px;
    font-size: 9.6px;
  }

  .s37-cashback-summary {
    min-height: 30px;
    gap: 4px;
    padding: 0 9px;
  }

  .s37-cashback-summary strong {
    font-size: 10.4px;
  }

  .s37-cashback-layout {
    grid-template-columns: 74px minmax(0, 1fr);
    height: calc(100% - 30px);
    padding-left: 8px;
  }

  .s37-cashback-sidebar {
    gap: 9px;
    padding: 0 9px 6px 0;
  }

  .s37-cashback-category {
    grid-template-columns: 15px minmax(0, 1fr);
    min-height: 30px;
    gap: 3px;
    padding: 0 2px;
  }

  .s37-cashback-category img {
    width: 15px;
    height: 15px;
  }

  .s37-cashback-category span {
    overflow-wrap: normal;
    font-size: 9px;
    white-space: nowrap;
  }

  .s37-cashback-actions {
    gap: 6px;
    margin: 2px 6px 0;
  }

  .s37-cashback-action {
    min-height: 23px;
    padding: 3px 4px;
    font-size: 9px;
  }

  .s37-cashback-action__icon {
    margin-right: 2px;
    font-size: 10px;
  }

  .s37-cashback-list {
    padding: 0 8px 10px 0;
  }

  .s37-cashback-card {
    grid-template-columns: 23px minmax(0, 1fr) 10px;
    min-height: 49px;
    gap: 4px;
    margin-bottom: 9px;
    padding: 5px 3px 5px 4px;
  }

  .s37-cashback-card__logo {
    width: 23px;
    height: 26px;
  }

  .s37-cashback-card__logo img {
    width: 24px;
    max-height: 19px;
  }

  .s37-cashback-card__metrics {
    grid-template-columns: minmax(0, 1.2fr) minmax(62px, 0.8fr);
    gap: 6px;
  }

  .s37-cashback-metric {
    gap: 2px;
    font-size: 8px;
  }

  .s37-cashback-metric strong {
    font-size: 9px;
  }

  .s37-cashback-card__bottom {
    gap: 5px;
    margin-top: 4px;
  }

  .s37-cashback-progress {
    height: 10px;
    border-radius: 5px;
    font-size: 7px;
    line-height: 10px;
  }

  .s37-cashback-collectible {
    font-size: 8px;
  }

  .s37-cashback-collectible strong {
    font-size: 9px;
  }

  .s37-cashback-card__arrow {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .s37-cashback-skeleton,
  .s37-cashback-action.is-loading .s37-cashback-action__icon,
  .s37-cashback-award__value,
  .s37-cashback-coin {
    animation: none;
  }
}
