:root {
  --earn-green: #59cc80;
  --earn-green-hover: #6be898;
  --earn-black: #000000;
  --earn-bg: #000000;
  --earn-surface: #1c1c1c;
  --earn-surface-2: #1c1c1c;
  --earn-border: rgba(255, 255, 255, 0.08);
  --earn-border-input: rgba(255, 255, 255, 0.08);
  --earn-text: #ffffff;
  --earn-text-muted: #9ca3af;
  --earn-text-secondary: rgba(255, 255, 255, 0.4);
  --earn-placeholder: rgba(255, 255, 255, 0.3);
  --earn-font:
    -apple-system, BlinkMacSystemFont, "Inter", system-ui, sans-serif;
  --earn-radius-pill: 100px;
  --earn-radius-card: 16px;
  --earn-radius-icon: 14px;
  --earn-radius-small: 10px;
  --earn-shadow-btn-hover: 0 0 20px rgba(107, 232, 152, 0.45);
  --earn-shadow-btn-active: 0 0 12px rgba(107, 232, 152, 0.3);
  --earn-shadow-card-hover:
    0 0 30px rgba(89, 204, 128, 0.08), 0 20px 50px rgba(0, 0, 0, 0.5);
  --earn-shadow-glow: 0 0 15px rgba(89, 204, 128, 0.35);
  --earn-shadow-modal:
    0 0 60px rgba(89, 204, 128, 0.1), 0 24px 48px rgba(0, 0, 0, 0.7);
  --earn-shadow-dropdown: 0 16px 48px rgba(0, 0, 0, 0.6);
}
.earn-card {
  background: var(--earn-surface);
  border: 1px solid var(--earn-border);
  border-radius: var(--earn-radius-card);
}
.earn-card-interactive {
  background: var(--earn-surface);
  border: 1px solid var(--earn-border);
  border-radius: var(--earn-radius-card);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}
.earn-card-interactive:hover {
  transform: translateY(-2px);
  border-color: rgba(89, 204, 128, 0.15);
  box-shadow: var(--earn-shadow-card-hover);
}
.earn-logo-tile {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
}
.earn-tile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: filter 0.2s ease;
}
.earn-tile-border {
  stroke: var(--earn-border);
  transition: stroke 0.2s ease;
}
.earn-tile-logo {
  position: relative;
  z-index: 1;
  width: 66%;
  height: auto;
  display: block;
  transform: translateX(-2px);
  transition: filter 0.2s ease;
}
.earn-logo-tile:hover .earn-tile-border {
  stroke: rgba(89, 204, 128, 0.25);
}
.earn-input {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  background: var(--earn-surface);
  border: 1px solid var(--earn-border);
  border-radius: var(--earn-radius-pill);
  color: var(--earn-text);
  font-size: 15px;
  font-family: var(--earn-font);
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.earn-input::placeholder {
  color: var(--earn-placeholder);
}
.earn-input:focus {
  border-color: var(--earn-green);
}
.earn-input:-webkit-autofill,
.earn-input:-webkit-autofill:hover,
.earn-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px #1c1c1c inset !important;
  -webkit-text-fill-color: #fff !important;
}
.earn-select {
  width: 100%;
  height: 44px;
  padding: 0 36px 0 16px;
  background: var(--earn-surface);
  border: 1px solid var(--earn-border);
  border-radius: var(--earn-radius-pill);
  color: var(--earn-text);
  font-size: 15px;
  font-family: var(--earn-font);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.earn-select:focus {
  border-color: var(--earn-green);
}
.earn-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--earn-text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.earn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 28px;
  background: var(--earn-green);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--earn-font);
  border: none;
  border-radius: var(--earn-radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.earn-btn:hover {
  background: var(--earn-green-hover);
  transform: translateY(-1px);
  box-shadow: var(--earn-shadow-btn-hover);
}
.earn-btn:active {
  background: #7df0a8;
  transform: translateY(0);
  box-shadow: var(--earn-shadow-btn-active);
}
.earn-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.earn-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 28px;
  background: var(--earn-surface);
  color: var(--earn-text);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--earn-font);
  border: 1px solid var(--earn-border);
  border-radius: var(--earn-radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.earn-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}
.earn-btn-secondary:active {
  transform: translateY(0);
}
.earn-muted {
  color: var(--earn-text-muted);
}
.earn-dim {
  color: var(--earn-text-secondary);
}
.earn-menu-card,
.offer-card,
.earn-logo-tile {
  transform-style: preserve-3d;
  perspective: 800px;
  will-change: transform;
}
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1;
  white-space: nowrap;
}
.offer-badge svg {
  width: 12px !important;
  height: 12px !important;
  max-width: 12px !important;
  max-height: 12px !important;
  min-width: 12px !important;
  min-height: 12px !important;
  fill: currentColor;
  display: block !important;
  flex-shrink: 0;
}
.offer-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}
.offer-time svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  fill: currentColor;
  display: block !important;
  flex-shrink: 0;
}
.offer-previews .offer-time::before {
  content: url(
    data:image/svg + xml,
    %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2020.2832%2019.9316%22%3E%3Cpath%20fill%3D%22rgba(
        255%2C255%2C255%2C.45
      )%22%20d%3D%22M9.96094%2019.9219C15.459%2019.9219%2019.9219%2015.459%2019.9219%209.96094C19.9219%204.46289%2015.459%200%209.96094%200C4.46289%200%200%204.46289%200%209.96094C0%2015.459%204.46289%2019.9219%209.96094%2019.9219ZM9.96094%2018.2617C5.37109%2018.2617%201.66016%2014.5508%201.66016%209.96094C1.66016%205.37109%205.37109%201.66016%209.96094%201.66016C14.5508%201.66016%2018.2617%205.37109%2018.2617%209.96094C18.2617%2014.5508%2014.5508%2018.2617%209.96094%2018.2617Z%22%2F%3E%3Cpath%20fill%3D%22rgba(
        255%2C255%2C255%2C.45
      )%22%20d%3D%22M4.85352%2011.0156L9.95117%2011.0156C10.332%2011.0156%2010.6348%2010.7227%2010.6348%2010.332L10.6348%203.75C10.6348%203.36914%2010.332%203.07617%209.95117%203.07617C9.57031%203.07617%209.27734%203.36914%209.27734%203.75L9.27734%209.6582L4.85352%209.6582C4.46289%209.6582%204.16992%209.95117%204.16992%2010.332C4.16992%2010.7227%204.46289%2011.0156%204.85352%2011.0156Z%22%2F%3E%3C%2Fsvg%3E
  );
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  line-height: 0;
}
.offer-badge-icon-top {
  display: inline-block !important;
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  max-width: 12px !important;
  min-height: 12px !important;
  max-height: 12px !important;
  flex-shrink: 0;
  background: url(
      data:image/svg + xml,
      %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2022.5124%2022.1608%22%3E%3Cpath%20fill%3D%22rgba(
          255%2C255%2C255%2C.92
        )%22%20d%3D%22M1.09505%2013.2337L8.91731%2021.056C10.3626%2022.5013%2011.7884%2022.5111%2013.224%2021.0853L21.0853%2013.2142C22.5111%2011.7884%2022.5013%2010.3529%2021.056%208.90755L13.2435%201.09505C11.7982-0.350264%2010.3724-0.369795%208.93685%201.06575L1.06575%208.92708C-0.369795%2010.3626-0.350264%2011.7884%201.09505%2013.2337Z%22%2F%3E%3C%2Fsvg%3E
    )
    center/contain no-repeat !important;
}
.offer-badge-icon-hot {
  display: inline-block !important;
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  max-width: 12px !important;
  min-height: 12px !important;
  max-height: 12px !important;
  flex-shrink: 0;
  background: url(
      data:image/svg + xml,
      %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2022.0527%2022.1191%22%3E%3Cpath%20fill%3D%22rgba(
          255%2C255%2C255%2C.92
        )%22%20d%3D%22M4.16109%2020.5469C4.56149%2020.8594%205.0693%2020.752%205.67477%2020.3125L10.8408%2016.5137L16.0166%2020.3125C16.622%2020.752%2017.1201%2020.8594%2017.5302%2020.5469C17.9306%2020.2441%2018.0185%2019.7461%2017.7744%2019.0332L15.7334%2012.959L20.9482%209.20898C21.5537%208.7793%2021.7978%208.33008%2021.6416%207.8418C21.4853%207.37305%2021.0263%207.14844%2020.2744%207.14844L13.8779%207.14844L11.9345%201.08398C11.7002%200.361328%2011.3486%200%2010.8408%200C10.3427%200%209.99117%200.361328%209.7568%201.08398L7.81344%207.14844L1.41695%207.14844C0.665001%207.14844%200.206017%207.37305%200.0497668%207.8418C-0.116249%208.33008%200.137657%208.7793%200.743126%209.20898L5.95797%2012.959L3.91695%2019.0332C3.67281%2019.7461%203.7607%2020.2441%204.16109%2020.5469Z%22%2F%3E%3C%2Fsvg%3E
    )
    center/contain no-repeat !important;
}
.offer-badge-icon-new {
  display: inline-block !important;
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  max-width: 12px !important;
  min-height: 12px !important;
  max-height: 12px !important;
  flex-shrink: 0;
  background: url(
      data:image/svg + xml,
      %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018.4277%2024.0723%22%3E%3Cpath%20fill%3D%22rgba(
          255%2C255%2C255%2C.92
        )%22%20d%3D%22M10.3809%2022.2754C10.6348%2022.2754%2010.8203%2022.0898%2010.8691%2021.8262C11.5625%2016.4844%2012.3145%2015.6641%2017.6074%2015.0781C17.8809%2015.0488%2018.0664%2014.8535%2018.0664%2014.5898C18.0664%2014.3359%2017.8809%2014.1406%2017.6074%2014.1113C12.3145%2013.5254%2011.5625%2012.7051%2010.8691%207.35352C10.8203%207.08984%2010.6348%206.91406%2010.3809%206.91406C10.127%206.91406%209.94141%207.08984%209.90234%207.35352C9.20898%2012.7051%208.44727%2013.5254%203.16406%2014.1113C2.88086%2014.1406%202.69531%2014.3359%202.69531%2014.5898C2.69531%2014.8535%202.88086%2015.0488%203.16406%2015.0781C8.4375%2015.7715%209.16992%2016.4844%209.90234%2021.8262C9.94141%2022.0898%2010.127%2022.2754%2010.3809%2022.2754Z%22%2F%3E%3C%2Fsvg%3E
    )
    center/contain no-repeat !important;
}
#earn-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000000;
  background: radial-gradient(
    circle,
    rgba(89, 204, 128, 0.08) 0%,
    rgba(89, 204, 128, 0.03) 30%,
    transparent 65%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.35s ease-out;
  will-change: transform;
}
#earn-cursor-glow.active {
  opacity: 1;
}
#nsl-redirect-overlay-container {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}
#nsl-redirect-overlay-container::before,
#nsl-redirect-overlay-container::after {
  content: none !important;
}
#nsl-redirect-overlay-spinner {
  width: 90px !important;
  height: 90px !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 50% !important;
  background: conic-gradient(
    rgba(89, 204, 128, 0) 0%,
    rgba(89, 204, 128, 0) 30%,
    rgba(89, 204, 128, 0.03) 44%,
    rgba(89, 204, 128, 0.1) 57%,
    rgba(89, 204, 128, 0.3) 70%,
    rgba(89, 204, 128, 0.65) 83%,
    rgba(107, 232, 152, 1) 94%,
    rgba(107, 232, 152, 0.4) 98%,
    rgba(89, 204, 128, 0) 100%
  ) !important;
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 6px),
    white calc(100% - 6px)
  ) !important;
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 6px),
    white calc(100% - 6px)
  ) !important;
  filter: drop-shadow(0 0 24px rgba(107, 232, 152, 1))
    drop-shadow(0 0 8px rgba(89, 204, 128, 0.5)) !important;
  animation-name: earn-um-spin !important;
  animation-duration: 0.85s !important;
  animation-timing-function: linear !important;
}
.um-popup.loading,
.um-modal.loading .um-modal-body {
  background-color: #111213 !important;
  background-image: none !important;
  border-radius: 16px !important;
  position: relative !important;
  min-height: 140px !important;
  overflow: hidden !important;
}
.um-popup.loading::before,
.um-modal.loading .um-modal-body::before {
  content: none !important;
}
.um-popup.loading::after,
.um-modal.loading .um-modal-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: conic-gradient(
    rgba(89, 204, 128, 0) 0%,
    rgba(89, 204, 128, 0) 30%,
    rgba(89, 204, 128, 0.03) 44%,
    rgba(89, 204, 128, 0.1) 57%,
    rgba(89, 204, 128, 0.3) 70%,
    rgba(89, 204, 128, 0.65) 83%,
    rgba(107, 232, 152, 1) 94%,
    rgba(107, 232, 152, 0.4) 98%,
    rgba(89, 204, 128, 0) 100%
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 5px),
    white calc(100% - 5px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 5px),
    white calc(100% - 5px)
  );
  filter: drop-shadow(0 0 20px rgba(107, 232, 152, 1))
    drop-shadow(0 0 6px rgba(89, 204, 128, 0.5));
  animation: earn-um-spin 0.85s linear infinite;
}
@keyframes earn-um-spin {
  to {
    transform: rotate(360deg);
  }
}
.um.um-login,
.um.um-register,
.um-8429.um,
.um-8232.um,
.um.um-login .um-form,
.um.um-register .um-form,
.um-8429.um .um-form,
.um-8232.um .um-form {
  max-width: 100% !important;
  width: 100% !important;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
