/* Extracted from sign-up.html block 1. */
* {
  box-sizing: border-box;
}
.earn-top-bar {
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:90px;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 28px;
  z-index:999999;
  pointer-events:none;
}
.earn-top-bar-logo,
.earn-top-bar-right {
  pointer-events:auto;
}
.earn-top-bar-logo {
  flex-shrink:0;
  text-decoration:none;
}
.earn-logo-tile {
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:65px;
  height:65px;
  transform-style:preserve-3d;
  perspective:800px;
  will-change:transform;
}
.earn-tile-bg {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  transition:filter 0.2s ease;
}
.earn-tile-border {
  stroke:rgba(255, 255, 255, 0.08);
  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-top-bar-right {
  display:flex;
  align-items:center;
  gap:8px;
  position:relative;
  height:100%;
}
.earn-points-container {
  display:none;
}
body.logged-in .earn-points-container {
  display:flex;
  align-items:center;
}
.earn-auth-buttons {
  display:flex;
  align-items:center;
  gap:8px;
}
body.logged-in .earn-auth-buttons {
  display:none;
}
.points-display {
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 20px;
  background:linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border:1px solid #1a1a1a;
  border-radius:999px;
  font-size:14px;
  font-weight:500;
  color:#fff;
  text-decoration:none;
  transition:border-color 0.2s ease, background 0.2s ease;
}
.points-display:hover {
  background:linear-gradient(180deg, #252525 0%, #111 100%);
  border-color:rgba(255, 255, 255, 0.18);
}
.points-dot {
  width:10px;
  height:10px;
  border-radius:50%;
  background:#59CC80;
  box-shadow:0 0 8px rgba(90, 222, 134, 0.6);
}
.earn-auth-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 24px;
  font-size:14px;
  font-weight:600;
  font-family:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  text-decoration:none;
  border-radius:100px;
  cursor:pointer;
  transition:all 0.2s ease;
  white-space:nowrap;
}
.earn-auth-btn-primary {
  background:#59CC80;
  color:#000;
  border:none;
}
.earn-auth-btn-primary:hover {
  background:#6BE898;
  transform:translateY(-1px);
  box-shadow:0 0 20px rgba(107, 232, 152, 0.45);
}
.earn-auth-btn-secondary {
  background:#1c1c1c;
  color:#fff;
  border:1px solid rgba(255, 255, 255, 0.08);
}
.earn-auth-btn-secondary:hover {
  border-color:rgba(255, 255, 255, 0.15);
  transform:translateY(-1px);
}
.earn-menu-toggle {
  width:44px;
  height:44px;
  border-radius:50%;
  background:#1c1c1c;
  border:1px solid rgba(255, 255, 255, 0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex-shrink:0;
  transition:border-color 0.2s ease, transform 0.2s ease;
}
.earn-menu-toggle:hover {
  border-color:rgba(255, 255, 255, 0.15);
  transform:translateY(-1px);
}
.earn-menu-toggle-inner {
  position:relative;
  width:20px;
  height:14px;
}
.earn-menu-toggle-line {
  position:absolute;
  left:0;
  width:20px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:all 0.25s ease;
}
.earn-menu-toggle-line:nth-child(1) {
  top:0;
}
.earn-menu-toggle-line:nth-child(2) {
  top:6px;
}
.earn-menu-toggle-line:nth-child(3) {
  top:12px;
}
.earn-menu-toggle.open .earn-menu-toggle-line:nth-child(1) {
  top:6px;
  transform:rotate(45deg);
}
.earn-menu-toggle.open .earn-menu-toggle-line:nth-child(2) {
  opacity:0;
}
.earn-menu-toggle.open .earn-menu-toggle-line:nth-child(3) {
  top:6px;
  transform:rotate(-45deg);
}
.earn-menu-overlay {
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:999998;
  background:#000;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity 0.25s ease, visibility 0.25s ease;
}
.earn-menu-overlay.open {
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.earn-menu-container {
  height:100%;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:90px 70px;
}
.earn-menu-cards {
  display:grid;
  grid-template-columns:repeat(3, 275px);
  grid-template-rows:repeat(2, 275px);
  gap:16px;
}
.earn-menu-card,
button.earn-menu-card {
  font-family:'Inter', inherit;
  text-align:center;
  border-radius:20px;
  padding:40px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  cursor:pointer;
  background:#1c1c1c;
  border:1px solid rgba(255, 255, 255, 0.08);
  opacity:0;
  transition:opacity 0.25s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  outline:none;
  pointer-events:auto;
  transform-style:preserve-3d;
  will-change:transform;
}
.earn-menu-overlay.open .earn-menu-card {
  opacity:1;
}
.earn-menu-card:hover {
  border-color:rgba(89, 204, 128, 0.15);
  box-shadow:0 0 30px rgba(89, 204, 128, 0.08), 0 20px 50px rgba(0, 0, 0, 0.5);
}
.earn-menu-card-icon {
  width:72px;
  height:72px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
  background:rgba(255, 255, 255, 0.05);
  border:1px solid rgba(255, 255, 255, 0.06);
  color:#59CC80;
  transition:background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.earn-menu-card-icon svg {
  width:32px;
  height:32px;
  fill:currentColor;
}
.earn-menu-card:hover .earn-menu-card-icon {
  background:rgba(89, 204, 128, 0.12);
  border-color:rgba(89, 204, 128, 0.25);
  box-shadow:0 0 24px rgba(107, 232, 152, 0.25);
  color:#6Be898;
}
.earn-menu-card-title {
  font-size:16px;
  font-weight:600;
  margin-bottom:14px;
  display:flex;
  align-items:center;
  gap:4px;
}
.earn-menu-card-title-arrow {
  display:inline-flex;
  align-items:center;
  transition:transform 0.2s ease;
}
.earn-menu-card-title-arrow svg {
  height:10px;
  width:auto;
  fill:currentColor;
  display:block;
}
.earn-menu-card:hover .earn-menu-card-title-arrow {
  transform:translateX(3px);
}
.earn-menu-card-desc {
  font-size:13px;
  font-weight:400;
  color:#9ca3af;
  text-align:center;
  line-height:1.5;
  max-width:220px;
}
button.earn-menu-card {
  font-size:inherit;
  width:100%;
}
#earn-cursor-glow {
  position:fixed;
  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%);
  transform:translate(-50%, -50%);
  mix-blend-mode:screen;
  opacity:0;
  transition:opacity 0.35s ease-out;
}
#earn-cursor-glow.active {
  opacity:1;
}
#earn-contact-overlay {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0, 0, 0, 0.8);
  backdrop-filter:blur(8px);
  z-index:1000000;
  align-items:center;
  justify-content:center;
  padding:1rem;
}
#earn-contact-overlay.open {
  display:flex;
}
#earn-contact-popup {
  background:#111;
  border:1px solid #222;
  border-radius:20px;
  padding:2.5rem 2rem;
  width:100%;
  max-width:480px;
  position:relative;
  box-shadow:0 0 60px rgba(57, 214, 140, 0.1), 0 24px 48px rgba(0, 0, 0, 0.7);
  animation:popupIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popupIn {
  from {
    opacity:0;
    transform:scale(0.92) translateY(14px)
  }
  to {
    opacity:1;
    transform:scale(1) translateY(0)
  }
}
#earn-contact-close {
  position:absolute;
  top:1rem;
  right:1rem;
  background:#1e1e1e;
  border:none;
  color:#666;
  width:30px;
  height:30px;
  border-radius:50%;
  font-size:1rem;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.15s, color 0.15s;
}
#earn-contact-close:hover {
  background:#2a2a2a;
  color:#fff;
}
.ep-eyebrow {
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:#39d68c;
  margin-bottom:.35rem
}
.ep-title {
  font-size:1.8rem;
  font-weight:800;
  color:#fff;
  line-height:1.1;
  margin-bottom:.35rem
}
.ep-title span {
  color:#39d68c
}
.ep-sub {
  font-size:.85rem;
  color:#666;
  margin-bottom:1.5rem;
  line-height:1.5
}
.ep-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.65rem
}
.ep-group {
  margin-bottom:.65rem
}
.ep-group label {
  display:block;
  font-size:.72rem;
  font-weight:600;
  color:#888;
  margin-bottom:.3rem;
  text-transform:uppercase;
  letter-spacing:.05em
}
.ep-group input,
.ep-group textarea,
.ep-group select {
  width:100%;
  padding:.65rem .85rem;
  background:#181818;
  border:1.5px solid #252525;
  border-radius:10px;
  color:#fff;
  font-size:.88rem;
  font-family:inherit;
  outline:none;
  transition:border-color .15s, box-shadow .15s;
  appearance:none;
  box-sizing:border-box
}
.ep-group input::placeholder,
.ep-group textarea::placeholder {
  color:#3a3a3a
}
.ep-group input:focus,
.ep-group textarea:focus,
.ep-group select:focus {
  border-color:#39d68c;
  box-shadow:0 0 0 3px rgba(57, 214, 140, 0.1)
}
.ep-group textarea {
  resize:vertical;
  min-height:85px
}
#ep-submit {
  width:100%;
  padding:.85rem;
  background:#39d68c;
  color:#000;
  font-weight:800;
  font-size:.92rem;
  border:none;
  border-radius:50px;
  cursor:pointer;
  margin-top:.4rem;
  transition:background .15s, transform .1s;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.5rem
}
#ep-submit:hover {
  background:#4ae89d
}
#ep-submit:disabled {
  opacity:.45;
  cursor:not-allowed
}
.ep-spinner {
  width:14px;
  height:14px;
  border:2px solid rgba(0, 0, 0, 0.25);
  border-top-color:#000;
  border-radius:50%;
  animation:ep-spin .65s linear infinite;
  display:none
}
#ep-submit.loading .ep-spinner {
  display:block
}
#ep-submit.loading .ep-btn-text {
  display:none
}
@keyframes ep-spin {
  to {
    transform:rotate(360deg)
  }
}
.ep-alert {
  padding:.7rem .9rem;
  border-radius:10px;
  font-size:.82rem;
  font-weight:600;
  margin-top:.65rem;
  display:none
}
.ep-alert.show {
  display:block
}
.ep-success {
  background:rgba(57, 214, 140, 0.1);
  color:#39d68c;
  border:1px solid rgba(57, 214, 140, 0.2)
}
.ep-error {
  background:rgba(239, 68, 68, 0.08);
  color:#f87171;
  border:1px solid rgba(239, 68, 68, 0.18)
}
@media(max-width:900px) {
  .earn-menu-cards {
    grid-template-columns:repeat(2, 275px)
  }
}
@media(max-width:600px) {
  .earn-top-bar {
    height:72px;
    padding:0 16px
  }
  .earn-logo-tile {
    width:56px;
    height:56px
  }
  .earn-auth-buttons {
    gap:8px
  }
  .earn-menu-container {
    align-items:flex-start;
    justify-content:flex-start;
    padding:88px 16px 40px;
    overflow-y:auto;
    height:100%;
    box-sizing:border-box
  }
  .earn-menu-cards {
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    grid-template-rows:repeat(3, 180px);
    gap:12px;
    width:100%
  }
  .earn-menu-card, button.earn-menu-card {
    border-radius:16px;
    padding:0;
    width:100%;
    height:180px
  }
  .earn-menu-card-icon {
    width:48px;
    height:48px;
    border-radius:12px;
    margin-bottom:10px;
    flex-shrink:0
  }
  .earn-menu-card-title {
    font-size:13px;
    margin-bottom:5px
  }
  .earn-menu-card-desc {
    font-size:10.5px;
    line-height:1.35;
    max-width:90%;
    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical
  }
  #earn-contact-popup {
    padding:1.75rem 1.25rem
  }
  .ep-row {
    grid-template-columns:1fr
  }
  .ep-title {
    font-size:1.45rem
  }
}

/* Extracted from sign-up.html block 2. */
.login-card,
.login-card * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.login-card {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
/* -- Hide WP chrome -- */
header,
.site-header,
#masthead,
footer,
.site-footer,
#colophon,
.wp-site-blocks > header,
.entry-header,
.page-header,
hr,
.wp-block-separator,
.wp-block-post-title {
  display: none !important;
}
.entry-content,
.page-content,
.site-content,
.wp-site-blocks {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}
/* -- Kill native datepicker -- */
#ui-datepicker-div,
.ui-datepicker,
div[id^="ui-datepicker"] {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  position: fixed !important;
  left: -99999px !important;
}
/* -- iOS-style wheel date picker -- */
.ep-dp-trigger {
  width: 100%;
  height: 48px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
}
.ep-dp-trigger:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.ep-dp-trigger.ep-dp-empty {
  color: #555;
}
.ep-dp-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ep-fade-in 0.18s ease;
}
@keyframes ep-fade-in {
  from {
    opacity:0;
  }
  to {
    opacity:1;
  }
}
.ep-dp-sheet {
  width: calc(100% - 32px);
  max-width: 480px;
  background: #1c1c1c;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  animation: ep-pop-in 0.22s cubic-bezier(0.32, 0.72, 0, 1);
}
@keyframes ep-pop-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.ep-dp-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ep-dp-bar-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-family: 'Inter', sans-serif;
  padding: 4px 0;
}
.ep-dp-bar-btn.cancel {
  color: #888;
}
.ep-dp-bar-btn.done {
  color: #59CC80;
  font-weight: 600;
}
.ep-dp-bar-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
.ep-dp-cols {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  position: relative;
}
.ep-dp-cols::before,
.ep-dp-cols::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 44px;
  pointer-events: none;
  z-index: 2;
}
.ep-dp-cols::before {
  top: 0;
  background: linear-gradient(to bottom, #1c1c1c 0%, transparent 100%);
}
.ep-dp-cols::after {
  bottom: 0;
  background: linear-gradient(to top, #1c1c1c 0%, transparent 100%);
}
.ep-dp-selector {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  height: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}
.ep-wc {
  flex: 1;
  height: 220px;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 88px 0;
  box-sizing: border-box;
}
.ep-wc::-webkit-scrollbar {
  display: none;
}
.ep-wc-item {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Inter', sans-serif;
  scroll-snap-align: start;
  transition: color 0.15s, font-size 0.15s;
  cursor: pointer;
  user-select: none;
}
.ep-wc-item.selected {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}
html,
body {
  background: #000000 !important;
}
.wp-site-blocks,
.wp-block-post-content,
.wp-block-group,
.wp-block-group.is-layout-constrained,
.wp-block-group.is-layout-flow,
.wp-block-post-content > * {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
  padding: 100px 0 60px;
  -webkit-font-smoothing: antialiased;
  color: #fff;
}
/* -- Ambient glow -- */
.ambient {
  position: fixed;
  top: 0;
  left: 50%;
  width: 800px;
  height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(89, 204, 128, 0.06) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  animation: ambIn 1s ease-out 0.6s forwards;
}
@keyframes ambIn {
  to {
    opacity: 1;
  }
}
/* -- Card -- */
.login-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  padding: 40px 24px 60px 24px !important;
}
/* -- Logo -- */
.logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.login-logo {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.3s forwards;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(89, 204, 128, 0.3));
}
.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(89, 204, 128, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.3s forwards, logoPulse 2s ease-in-out 0.9s infinite;
}
@keyframes logoPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.6;
  }
}
/* -- Title / Subtitle -- */
.login-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.4s forwards;
}
.login-subtitle {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.5s forwards;
}
.login-form {
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.6s forwards;
}
.login-footer {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  animation: fadeUp 0.5s ease-out 0.75s forwards;
}
.login-footer a {
  color: #59CC80;
  text-decoration: none;
  font-weight: 500;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ----------------------------------------
     UM OVERRIDES - ULTRA-MINIMAL
     ----------------------------------------
     CRITICAL: We ONLY style leaf-level elements
     (inputs, labels, buttons). We do NOT touch
     ANY container elements (.um-field, .um-field-area,
     .um-row, .um-col-*, etc.) via CSS at all.
     Container cleanup is done via JS *without*
     !important so UM's validation JS can still
     set styles as needed.
     ---------------------------------------- */
/* Top-level UM wrapper only */
.login-form .um,
.login-form div.um,
.login-form .um-form,
.login-form div.um-form,
.login-form .um-register {
  font-family: 'Inter', sans-serif !important;
  padding: 0 !important;
  max-width: 100% !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  overflow: visible !important;
  background: transparent !important;
}
/* HIDE UM's original submit button - replaced by #earn-fake-submit
     below it. Without this, both buttons would show stacked. */
#um-submit-btn,
.login-form input.um-button[type="submit"],
.login-form input.um-button[type="button"][data-earn-neutralized] {
  display: none !important;
}
.login-form .um-header {
  display: none !important;
}
/* Hide original NSL buttons - replaced by custom .earn-social-btn */
.login-form .um-social-login-buttons,
.login-form .nsl-container {
  display: none !important;
}
/* -- Custom social login buttons -- */
.earn-social-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 4px;
}
.earn-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  background: #1a1a1a;
  border-radius: 14px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  border: none;
  box-shadow: none;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.15s ease;
}
.earn-social-btn:hover {
  opacity: 0.78;
}
.earn-social-btn:active {
  opacity: 0.55;
}
.earn-social-btn span {
  letter-spacing: -0.1px;
}
.earn-social-icon {
  flex-shrink: 0;
  display: block;
}
.earn-social-apple .earn-social-icon {
  width: 18px;
  height: 22px;
  fill: #fff;
}
.earn-social-google .earn-social-icon {
  width: 20px;
  height: 20px;
}
/* Labels - ONLY the label elements themselves */
.login-form .um label,
.login-form .um .um-field-label label {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-bottom: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}
/* Text inputs - ONLY the <input> elements */
.login-form .um input[type="text"],
.login-form .um input[type="email"],
.login-form .um input[type="password"],
.login-form .um input[type="tel"] {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  color: #fff !important;
  background: #1a1a1a !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  outline: none !important;
  box-shadow: none !important;
  width: 100% !important;
  -webkit-appearance: none !important;
}
.login-form .um input[type="text"]:focus,
.login-form .um input[type="email"]:focus,
.login-form .um input[type="password"]:focus,
.login-form .um input[type="tel"]:focus {
  border-color: #59CC80 !important;
  background: #1a1a1a !important;
  box-shadow: none !important;
  outline: none !important;
}
.login-form .um input::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}
.login-form .um input:-webkit-autofill,
.login-form .um input:-webkit-autofill:hover,
.login-form .um input:-webkit-autofill:focus,
.login-form .um input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #1a1a1a inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff !important;
  transition: background-color 9999s ease-in-out 0s !important;
}
/* Field spacing */
.login-form .um .um-field {
  margin-bottom: 16px !important;
  padding: 0 !important;
}
/* First + Last name side by side */
.login-form .um .um-field[data-key="first_name"],
.login-form .um .um-field[data-key="last_name"] {
  display: inline-block !important;
  width: calc(50% - 5px) !important;
  vertical-align: top !important;
}
.login-form .um .um-field[data-key="first_name"] {
  margin-right: 10px !important;
}
.login-form .um .um-field[data-key="last_name"] {
  margin-right: 0 !important;
}
/* Submit button */
.login-form .um input[type="submit"],
.login-form .um .um-button {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #000000 !important;
  background: #59CC80 !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 32px !important;
  width: 100% !important;
  cursor: pointer !important;
  text-transform: none !important;
  margin-top: 8px !important;
  transition: all 0.2s ease !important;
}
.login-form .um input[type="submit"]:hover {
  background: #6BE898 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 0 20px rgba(107, 232, 152, 0.45) !important;
}
.login-form .um input[type="submit"]:active {
  background: #7DF0A8 !important;
  transform: translateY(0) !important;
  box-shadow: 0 0 12px rgba(107, 232, 152, 0.3) !important;
}
.login-form .um input[type="submit"].earn-disabled {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
}
/* UM links (non-social) */
.login-form .um a:not([class*="social"]) {
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 13px !important;
  text-decoration: none !important;
}
.login-form .um a:not([class*="social"]):hover {
  color: #59CC80 !important;
}
/* Dividers */
.login-form .um .um-divider,
.login-form [class*="divider"] {
  color: rgba(255, 255, 255, 0.25) !important;
  font-size: 13px !important;
}
.login-form .um .um-divider::before,
.login-form .um .um-divider::after,
.login-form [class*="divider"]::before,
.login-form [class*="divider"]::after {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}
/* reCAPTCHA dark-mode filter + perfect centering.
     Scope tightly to .g-recaptcha only - broader selectors like
     [class*="captcha"] or .um-field-c hit shared UM wrappers (incl. the
     submit button's column) and break unrelated layout. */
.login-form .g-recaptcha {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 14px auto !important;
  transform: none !important;
}
.login-form .g-recaptcha > div,
.login-form .g-recaptcha iframe {
  margin: 0 auto !important;
}
.login-form .g-recaptcha > div > div {
  filter: invert(0.85) hue-rotate(180deg) !important;
}
/* On narrow screens scale down the widget proportionally and keep
     it centered (origin: top center, so it shrinks toward the middle
     instead of pulling left). */
@media (max-width: 360px) {
  .login-form .g-recaptcha > div {
    transform: scale(0.92);
    transform-origin: top center;
  }
}
/* UM error/notice - style the text but DO NOT touch containers */
.login-form .um .um-field-error p,
.login-form .um .um-notice p,
.login-form .um .um-field-error span {
  color: #EF4444 !important;
  font-size: 13px !important;
}
/* Column / Row resets - only layout, no border/bg overrides */
.login-form .um .um-col-alt,
.login-form .um .um-col-alt-b {
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  float: none !important;
}
.login-form .um .um-row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.login-form .um .um-col-1,
.login-form .um .um-col-2,
.login-form .um .um-col-3 {
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
}
/* ----------------------------------------
     CUSTOM CHECKBOX ROWS - Privacy & Terms
     ---------------------------------------- */
/* Hide UM's native checkbox fields */
.login-form .um .um-field-checkbox,
.login-form .um .um-field-type_checkbox,
.login-form .um .um-misc-form-condition,
/* Hide UM's GDPR / Terms-and-Conditions blocks entirely. The
     "Show privacy policy" / "Show Terms and Conditions" toggle links
     and the inline I-agree-to-Earn's-Privacy-Policy checkboxes that
     follow them are no longer presented on the form - that consent is
     now collected exclusively in the post-sign-up "One More Step"
     modal. The field DOM stays so JS can still auto-check the
     underlying inputs for UM's submit-time validation. */
.login-form .um .um-field-type_terms_conditions,
.login-form .um a.um-toggle-gdpr,
.login-form .um a.um-toggle-terms,
.login-form .um .um-gdpr-content,
.login-form .um .um-terms-conditions-content,
/* Hide the phone number field on the form - phone is now collected
     exclusively in the post-sign-up phone-verification modal
     (#eph-overlay). After the user verifies the SMS code, the modal
     calls /wp-json/earn/v1/save-phone to persist the number to user
     meta. Asking for it on the form too means the user types it twice
     for no reason. The field is `not-required` in UM so hiding it is
     safe - UM's submit validator passes with an empty value. */
.login-form .um .um-field[data-key="mobile_number"] {
  display: none !important;
}
/* -- Hide UM password-field chrome that renders as white bars --------------
     UM injects a show/hide toggle button (.um-show-hide-pw, .um-icon-eye) and
     a password-strength bar list (.um-field-pw-strength) next to every password
     input. When the UM icon-font fails to load, the icon chars render as thin
     white vertical bars. Our custom strength checklist replaces both.
     IMPORTANT: every selector below is scoped to UM-specific class prefixes
     (`um-` / `show-hide`). Do NOT use loose patterns like `span[class*="pw"]`
     here - they collateral-hit our own .earn-pw-reqs__icon / __label spans
     and the entire password-rules checklist becomes invisible. */
.login-form .um .um-show-hide-pw,
.login-form .um [class*="um-show-hide"],
.login-form .um [class*="um-icon-eye"],
.login-form .um [class*="um-icon-eye-blocked"],
.login-form .um .um-field-pw-strength,
.login-form .um .um-pw-strength,
.login-form .um span[class*="um-pw"],
.login-form .um i[class*="um-icon"] {
  display: none !important;
}
.earn-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  margin-bottom: 20px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.earn-checkbox-row .earn-cb-box {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  transition: all 0.15s ease;
}
.earn-checkbox-row:hover .earn-cb-box {
  border-color: rgba(255, 255, 255, 0.25);
}
.earn-checkbox-row.checked .earn-cb-box {
  background: #59CC80;
  border-color: #59CC80;
}
.earn-checkbox-row.checked .earn-cb-box::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 10px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.earn-cb-content {
  flex: 1;
}
.earn-cb-title {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin-bottom: 4px !important;
  line-height: 1.4 !important;
}
.earn-cb-desc {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.35) !important;
  line-height: 1.6 !important;
}
.earn-cb-desc a {
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: underline !important;
}
.earn-cb-desc a:hover {
  color: #59CC80 !important;
}
.earn-checkbox-row.earn-shake .earn-cb-box {
  border-color: #EF4444 !important;
  animation: cbShake 0.4s ease;
}
@keyframes cbShake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
}
.earn-cb-validation {
  font-size: 12px;
  color: #EF4444;
  margin: -10px 0 16px 36px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, height 0.2s ease;
}
.earn-cb-validation.visible {
  opacity: 1;
  height: 18px;
}
/* -- Responsive -- */
@media (max-width: 480px) {
  .login-card {
    padding: 0 20px;
  }
  .logo-wrap {
    margin-bottom: 36px;
  }
  .login-logo {
    width: 120px;
  }
  .login-title {
    font-size: 22px;
  }
  .login-subtitle {
    margin-bottom: 32px;
  }
}

/* Extracted from sign-up.html block 3. */
#earn-pre-consent-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000002;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', system-ui, sans-serif;
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#earn-pre-consent-backdrop.epc-open {
  display: flex;
}
#earn-pre-consent-backdrop.epc-visible {
  opacity: 1;
}
#earn-pre-consent-modal {
  background: #1c1c1e;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 36px 28px 32px;
  max-width: 460px;
  width: 100%;
  color: #fff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
  animation: epcIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes epcIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.epc-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.epc-logo svg {
  width: 58%;
  height: auto;
  display: block;
}
.epc-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  text-align: center;
  margin: 0 0 8px;
}
.epc-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 1.6;
  margin: 0 0 20px;
}
.epc-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0 -28px 20px;
}
.epc-cb-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s;
}
.epc-cb-row:hover {
  background: rgba(255, 255, 255, 0.03);
}
.epc-cb-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.epc-cb-box {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  transition: background 0.15s, border-color 0.15s;
  position: relative;
  margin-top: 1px;
}
.epc-cb-row.epc-checked .epc-cb-box {
  background: #59CC80;
  border-color: #59CC80;
}
.epc-cb-row.epc-checked .epc-cb-box::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #000;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.epc-cb-content {
  flex: 1;
}
.epc-cb-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.epc-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}
.epc-cb-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}
.epc-cb-desc a {
  color: #59CC80;
  text-decoration: none;
}
.epc-cb-desc a:hover {
  text-decoration: underline;
}
.epc-cb-row.epc-shake {
  animation: epcShake 0.5s;
}
@keyframes epcShake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-6px);
  }
  40%, 80% {
    transform: translateX(6px);
  }
}
#epc-error {
  display: none;
  padding: 10px 14px;
  margin: 8px 0 0;
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 10px;
  color: #FF8B86;
  font-size: 13px;
  text-align: center;
}
#epc-submit {
  width: 100%;
  height: 50px;
  margin-top: 22px;
  background: #59CC80;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s, opacity 0.2s;
}
#epc-submit:hover:not(:disabled) {
  background: #6BE898;
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(107, 232, 152, 0.4);
}
#epc-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Extracted from sign-up.html block 4. */
.earn-pw-reqs {
  margin: 8px 2px 0;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.earn-pw-reqs__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(235, 235, 245, 0.55);
  transition: color 0.2s ease;
}
.earn-pw-reqs__row + .earn-pw-reqs__row {
  margin-top: 1px;
}
.earn-pw-reqs__icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.4px solid rgba(235, 235, 245, 0.30);
  background: transparent;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
}
.earn-pw-reqs__icon svg {
  width: 9px;
  height: 9px;
  opacity: 0;
  transition: opacity 0.18s ease;
}
.earn-pw-reqs__row[data-met="1"] {
  color: rgba(235, 235, 245, 0.92);
}
.earn-pw-reqs__row[data-met="1"] .earn-pw-reqs__icon {
  background: #30D158;
  border-color: #30D158;
  transform: scale(1.04);
}
.earn-pw-reqs__row[data-met="1"] .earn-pw-reqs__icon svg {
  opacity: 1;
}
.earn-pw-reqs__row[data-met="1"] .earn-pw-reqs__icon svg path {
  stroke: #000;
}
/* Subtle pulse on submit-with-invalid - draws attention without yelling */
@keyframes earnPwPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 159, 10, 0.0);
    border-color: rgba(255, 255, 255, 0.06);
  }
  25% {
    box-shadow: 0 0 0 4px rgba(255, 159, 10, 0.18);
    border-color: rgba(255, 159, 10, 0.55);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 159, 10, 0.0);
    border-color: rgba(255, 255, 255, 0.06);
  }
}
.earn-pw-reqs.earn-pw-pulse {
  animation: earnPwPulse 0.9s ease-out;
}
/* Field shake - Apple's standard incorrect-password cue */
@keyframes earnPwShake {
  10%, 90% {
    transform: translateX(-1px);
  }
  20%, 80% {
    transform: translateX(2px);
  }
  30%, 50%, 70% {
    transform: translateX(-3px);
  }
  40%, 60% {
    transform: translateX(3px);
  }
}
.earn-pw-shake {
  animation: earnPwShake 0.42s cubic-bezier(.36, .07, .19, .97) both;
}
/* Remove the aggressive red border the form had on shaky fields */
.login-form .um input[type="password"].earn-pw-shake {
  border-color: rgba(255, 255, 255, 0.18) !important;
}

/* Extracted from sign-up.html block 5. */
/* -- Respondent form fields - identical style to existing form inputs -- */
.earn-resp-field {
  margin-bottom: 16px !important;
}
.earn-resp-lbl {
  display: block !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 6px !important;
}
.earn-resp-select {
  display: block !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  color: #fff !important;
  background-color: #1a1a1a !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba%28255%2C255%2C255%2C0.4%29' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  padding: 12px 40px 12px 16px !important;
  height: 46px !important;
  width: 100% !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  transition: border-color 0.15s ease !important;
}
.earn-resp-select:focus {
  border-color: #59CC80 !important;
}
.earn-resp-select option {
  background: #1a1a1a !important;
  color: #fff !important;
}
/* -- Respondent Welcome Popup -- */
#earn-resp-welcome-backdrop.erw-open {
  display: flex !important;
}
#earn-resp-welcome-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000010;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', system-ui, sans-serif;
}
#earn-resp-welcome-backdrop.erw-open {
  display: flex;
}
#earn-resp-welcome-modal {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  max-width: 400px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  animation: erwIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes erwIn {
  from {
    opacity: 0;
    transform: scale(0.86) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.erw-header {
  padding: 26px 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.erw-logo-earn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.erw-logo-earn img {
  width: 28px;
  height: auto;
  display: block;
}
.erw-logo-x {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  line-height: 1;
}
.erw-logo-offers {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(90, 222, 134, 0.1);
  border: 1px solid rgba(90, 222, 134, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.erw-logo-offers svg {
  width: 22px;
  height: 22px;
}
.erw-body {
  padding: 22px 28px 28px;
}
.erw-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(90, 222, 134, 0.1);
  border: 1px solid rgba(90, 222, 134, 0.2);
  border-radius: 100px;
  padding: 4px 12px 4px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #5ade86;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.erw-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5ade86;
  flex-shrink: 0;
}
.erw-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}
.erw-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  margin: 0 0 18px;
}
.erw-offer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.erw-offer-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.35;
}
.erw-offer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
}
.erw-offer-reward {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #5ade86;
}
.erw-cta {
  width: 100%;
  height: 52px;
  background: #5ade86;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.2px;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}
.erw-cta:hover {
  background: #6be898;
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(90, 222, 134, 0.4);
}
.erw-cta:active {
  transform: translateY(0);
  box-shadow: none;
}
