.rh-airdrop-page {
  min-height: 70vh;
}

.rh-airdrop {
  padding-top: clamp(36px, 4vw, 54px);
  scroll-margin-top: 92px;
  border-top: 0;
}

.rh-airdrop-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.rh-airdrop-heading h1,
.rh-airdrop-heading h2 {
  margin-bottom: 0;
}

.rh-airdrop-heading h1 {
  font-size: clamp(2.35rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.rh-airdrop-heading-copy .eyebrow {
  margin-bottom: 6px;
}

.rh-airdrop-actions,
.rh-airdrop-buttons {
  display: flex;
  align-items: center;
}

.rh-airdrop-actions {
  gap: 0;
}

.rh-airdrop-buttons {
  gap: 8px;
}

.rh-airdrop .claim-trigger:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.rh-airdrop-actions .button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  box-shadow: none;
  font-size: 0.75rem;
}

.rh-airdrop .snapshot-meta {
  margin: 8px 0 0;
  color: var(--rh-muted);
  font-size: 0.68rem;
}

.rh-airdrop .stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rh-airdrop .stat-card {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--rh-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.rh-airdrop .stat-card > span {
  display: block;
  color: var(--rh-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.rh-airdrop .stat-card strong {
  display: block;
  margin: 25px 0 6px;
  overflow: hidden;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rh-airdrop .stat-card small {
  color: var(--rh-muted);
  font-size: 0.72rem;
}

.rh-airdrop .stat-card-primary {
  border-color: rgba(52, 126, 22, 0.22);
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 255, 255, 0.42), transparent 11rem),
    linear-gradient(135deg, var(--rh-green-bright), var(--rh-green));
  color: var(--rh-ink);
  box-shadow: 0 16px 40px rgba(61, 126, 24, 0.14);
}

.rh-airdrop .stat-card-primary > span,
.rh-airdrop .stat-card-primary small {
  color: #2f651b;
}

.rh-airdrop .stat-card-countdown {
  border-color: rgba(52, 126, 22, 0.18);
  background:
    radial-gradient(circle at 10% 0%, rgba(117, 216, 47, 0.16), transparent 62%),
    #fbfdf8;
}

.rh-airdrop .stat-card-countdown strong {
  color: var(--rh-green-deep);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(1.05rem, 1.85vw, 1.5rem);
  letter-spacing: -0.045em;
}

.rh-airdrop .progress-card {
  margin-top: 14px;
  padding: 20px 22px;
  border: 1px solid var(--rh-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.rh-airdrop .progress-copy,
.rh-airdrop .progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.rh-airdrop .progress-copy {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
}

.rh-airdrop .progress-copy strong {
  color: var(--rh-green-deep);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
}

.rh-airdrop .progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5eae2;
}

.rh-airdrop .progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rh-green-deep), var(--rh-green));
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.rh-airdrop .progress-meta {
  margin-top: 10px;
  color: var(--rh-muted);
  font-size: 0.68rem;
}

.rh-airdrop .records {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--rh-line);
  border-radius: 18px;
  background: var(--rh-card);
  box-shadow: 0 18px 50px rgba(25, 39, 22, 0.07);
}

.rh-airdrop .records-controls {
  display: grid;
  min-height: 50px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid var(--rh-line);
}

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

.rh-airdrop .tabs {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  min-width: 0;
  padding: 0 12px;
  scrollbar-width: none;
}

.rh-airdrop .tabs::-webkit-scrollbar {
  display: none;
}

.rh-airdrop .tab {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--rh-muted);
  font-size: 0.77rem;
  font-weight: 700;
  white-space: nowrap;
}

.rh-airdrop .tab::after {
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 2px;
  background: transparent;
  content: "";
}

.rh-airdrop .tab span {
  min-width: 24px;
  padding: 3px 6px;
  border-radius: 999px;
  background: #f0f2ee;
  color: #747a71;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.61rem;
  text-align: center;
}

.rh-airdrop .tab.active {
  color: var(--rh-ink);
}

.rh-airdrop .tab.active::after {
  background: var(--rh-green);
}

.rh-airdrop .tab.active span {
  background: rgba(117, 216, 47, 0.14);
  color: var(--rh-green-deep);
}

.rh-airdrop .records-toolbar {
  display: flex;
  min-height: 0;
  align-items: center;
  padding: 6px 12px 6px 0;
}

.rh-airdrop .records-toolbar[hidden] {
  display: none;
}

.rh-airdrop .search-box {
  display: grid;
  width: clamp(220px, 24vw, 300px);
  min-height: 40px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid #cbd2c8;
  border-radius: 8px;
  background: #fff;
}

.rh-airdrop .search-box:focus-within {
  border-color: var(--rh-green-deep);
  box-shadow: 0 0 0 2px rgba(117, 216, 47, 0.12);
}

.rh-airdrop .search-box svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--rh-muted);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.rh-airdrop .search-box input {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--rh-ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
}

.rh-airdrop .search-box input::placeholder {
  color: #8a9187;
}

.rh-airdrop .table-wrap {
  min-height: 480px;
  overflow-x: auto;
}

.rh-airdrop table {
  width: 100%;
  border-collapse: collapse;
}

.rh-airdrop th,
.rh-airdrop td {
  padding: 15px 18px;
  border-bottom: 1px solid #edf0eb;
  text-align: left;
  white-space: nowrap;
}

.rh-airdrop th:first-child,
.rh-airdrop td:first-child {
  padding-left: 28px;
}

.rh-airdrop th:last-child,
.rh-airdrop td:last-child {
  padding-right: 28px;
}

.rh-airdrop th {
  height: 44px;
  background: #fafbf8;
  color: #858b82;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rh-airdrop td {
  color: #343a32;
  font-size: 0.74rem;
}

.rh-airdrop tbody tr {
  transition: background 140ms ease;
}

.rh-airdrop tbody tr:hover {
  background: #fbfcfa;
}

.rh-airdrop .rank-cell {
  width: 62px;
  color: #9ba198;
  font-family: "SFMono-Regular", Consolas, monospace;
}

.rh-airdrop .wallet-cell {
  max-width: 330px;
  overflow: hidden;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.68rem;
  text-overflow: ellipsis;
}

.rh-airdrop .evm-address-cell {
  max-width: none;
  overflow: visible;
  text-overflow: clip;
}

.rh-airdrop .address-link,
.airdrop-modal .address-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(16, 124, 65, 0.35);
  text-underline-offset: 3px;
}

.rh-airdrop .address-link:hover,
.airdrop-modal .address-link:hover {
  color: var(--rh-green-deep);
  text-decoration-color: currentColor;
}

.rh-airdrop .address-link:focus-visible,
.airdrop-modal .address-link:focus-visible {
  border-radius: 3px;
  outline: 2px solid rgba(16, 124, 65, 0.35);
  outline-offset: 3px;
}

.rh-airdrop .amount-cell {
  color: var(--rh-ink);
  font-weight: 700;
}

.rh-airdrop .subtle-cell {
  color: var(--rh-muted);
}

.rh-airdrop .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
}

.rh-airdrop .status-pill::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.rh-airdrop .status-verified,
.rh-airdrop .status-queued,
.rh-airdrop .status-submitted {
  background: #fff6e8;
  color: #c87514;
}

.rh-airdrop .status-confirmed {
  background: rgba(117, 216, 47, 0.14);
  color: var(--rh-green-deep);
}

.rh-airdrop .status-failed {
  background: #fff1f0;
  color: #b42318;
}

.rh-airdrop .tx-link {
  color: var(--rh-green-deep);
  font-weight: 800;
}

.rh-airdrop .table-message {
  height: 360px;
  color: var(--rh-muted);
  text-align: center;
}

.rh-airdrop .pagination {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 28px;
  border-top: 1px solid var(--rh-line);
}

.rh-airdrop .pagination button {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rh-line);
  border-radius: 9px;
  background: #fff;
  color: var(--rh-ink);
}

.rh-airdrop .pagination button:disabled {
  cursor: not-allowed;
  color: #bcc1ba;
}

.rh-airdrop .pagination span {
  min-width: 110px;
  color: var(--rh-muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.66rem;
  text-align: center;
}

body.airdrop-modal-open {
  overflow: hidden;
}

.airdrop-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.airdrop-modal[hidden] {
  display: none;
}

.airdrop-modal [hidden] {
  display: none !important;
}

.airdrop-modal .modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(12, 15, 11, 0.56);
  backdrop-filter: blur(4px);
}

.airdrop-modal .claim-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
  animation: airdrop-pop-in 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes airdrop-pop-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.airdrop-modal .claim-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rh-line);
}

.airdrop-modal .claim-header .eyebrow {
  margin-bottom: 8px;
}

.airdrop-modal .claim-header h2 {
  margin: 0;
  font-size: 1.75rem;
  letter-spacing: -0.045em;
}

.airdrop-modal .close-button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--rh-line);
  border-radius: 10px;
  background: #fff;
  color: var(--rh-ink);
  font-size: 1.45rem;
  line-height: 1;
}

.airdrop-modal .claim-status {
  margin-top: 20px;
  padding: 12px 14px;
  border: 1px solid var(--rh-line);
  border-radius: 10px;
  background: #f8f9f6;
  color: var(--rh-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.airdrop-modal .claim-status.error {
  border-color: #f0c9c5;
  background: #fff1f0;
  color: #b42318;
}

.airdrop-modal .claim-status.success {
  border-color: rgba(52, 126, 22, 0.25);
  background: rgba(117, 216, 47, 0.12);
  color: var(--rh-green-deep);
}

.airdrop-modal .claim-stage {
  padding-top: 26px;
}

.airdrop-modal .stage-heading {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 20px;
}

.airdrop-modal .stage-heading > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--rh-ink);
  color: #fff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.69rem;
}

.airdrop-modal .stage-heading h3 {
  margin: 1px 0 3px;
  font-size: 0.9rem;
}

.airdrop-modal .stage-heading p {
  margin: 0;
  color: var(--rh-muted);
  font-size: 0.7rem;
}

.airdrop-modal .wallet-options {
  display: grid;
  gap: 9px;
}

.airdrop-modal .wallet-options button {
  display: grid;
  width: 100%;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--rh-line);
  border-radius: 12px;
  background: #fafbf8;
  color: var(--rh-ink);
  text-align: left;
}

.airdrop-modal .wallet-options button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.airdrop-modal .wallet-options strong,
.airdrop-modal .wallet-options small {
  display: block;
}

.airdrop-modal .wallet-options strong {
  font-size: 0.78rem;
}

.airdrop-modal .wallet-options small {
  margin-top: 2px;
  color: var(--rh-muted);
  font-size: 0.65rem;
}

.airdrop-modal .wallet-logo {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #14f195, #9945ff);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.airdrop-modal .wallet-empty {
  margin: 0;
  padding: 20px;
  border: 1px dashed #cdd3ca;
  border-radius: 12px;
  color: var(--rh-muted);
  font-size: 0.75rem;
  line-height: 1.55;
  text-align: center;
}

.airdrop-modal .connected-wallet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(52, 126, 22, 0.25);
  border-radius: 12px;
  background: rgba(117, 216, 47, 0.12);
}

.airdrop-modal .connected-wallet span,
.airdrop-modal .connected-wallet code {
  display: block;
}

.airdrop-modal .connected-wallet span {
  margin-bottom: 3px;
  color: var(--rh-green-deep);
  font-size: 0.65rem;
  font-weight: 800;
}

.airdrop-modal .connected-wallet code {
  max-width: 270px;
  overflow: hidden;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.66rem;
  text-overflow: ellipsis;
}

.airdrop-modal .connected-wallet button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rh-green-deep);
  font-size: 0.67rem;
  font-weight: 800;
}

.airdrop-modal .eligibility-checking {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--rh-muted);
  font-size: 0.74rem;
}

.airdrop-modal .spinner {
  width: 15px;
  height: 15px;
  border: 2px solid var(--rh-line);
  border-top-color: var(--rh-green);
  border-radius: 50%;
  animation: airdrop-spin 700ms linear infinite;
}

.airdrop-modal .eligibility-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 15px;
  border: 1px solid rgba(52, 126, 22, 0.25);
  border-radius: 12px;
  background: rgba(117, 216, 47, 0.12);
}

.airdrop-modal .eligibility-result span,
.airdrop-modal .eligibility-result strong {
  color: var(--rh-green-deep);
}

.airdrop-modal .eligibility-result span {
  font-size: 0.69rem;
  font-weight: 700;
}

.airdrop-modal .eligibility-result strong {
  font-size: 0.88rem;
}

.airdrop-modal .input-label {
  display: block;
  margin-bottom: 7px;
  color: var(--rh-muted);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.airdrop-modal .address-input {
  display: grid;
  min-height: 48px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  border: 1px solid #cdd3ca;
  border-radius: 11px;
}

.airdrop-modal .address-input:focus-within {
  border-color: #8b9588;
  box-shadow: 0 0 0 3px rgba(52, 126, 22, 0.07);
}

.airdrop-modal .address-input.invalid {
  border-color: #e09c96;
}

.airdrop-modal .address-input > span,
.airdrop-modal .address-input input {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.73rem;
}

.airdrop-modal .address-input > span {
  color: var(--rh-muted);
}

.airdrop-modal .address-input input {
  width: 100%;
  height: 46px;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--rh-ink);
}

.airdrop-modal .address-input .valid-mark {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(117, 216, 47, 0.14);
  color: var(--rh-green-deep);
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
}

.airdrop-modal .field-error {
  min-height: 18px;
  margin: 5px 0 0;
  color: #b42318;
  font-size: 0.66rem;
}

.airdrop-modal .confirmation {
  display: flex;
  align-items: start;
  gap: 9px;
  margin: 13px 0 18px;
  color: var(--rh-muted);
  font-size: 0.71rem;
}

.airdrop-modal .confirmation input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  accent-color: var(--rh-ink);
}

.airdrop-modal .primary-button,
.airdrop-modal .secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 750;
}

.airdrop-modal .primary-button {
  border: 1px solid var(--rh-ink);
  background: var(--rh-ink);
  color: #fff;
}

.airdrop-modal .secondary-button {
  border: 1px solid var(--rh-line);
  background: #fff;
  color: var(--rh-ink);
}

.airdrop-modal .submit-button {
  width: 100%;
  justify-content: space-between;
}

.airdrop-modal .submit-button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.airdrop-modal .closed-stage,
.airdrop-modal .success-stage {
  padding: 58px 10px 20px;
  text-align: center;
}

.airdrop-modal .stage-icon,
.airdrop-modal .success-mark {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
}

.airdrop-modal .stage-icon {
  background: #fff6e8;
  color: #c87514;
  font-size: 1.25rem;
}

.airdrop-modal .success-mark {
  background: var(--rh-green);
  color: var(--rh-ink);
  font-size: 1.25rem;
  font-weight: 800;
}

.airdrop-modal .closed-stage h3,
.airdrop-modal .success-stage h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.airdrop-modal .closed-stage p,
.airdrop-modal .success-stage > p {
  max-width: 36ch;
  margin: 0 auto 18px;
  color: var(--rh-muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.airdrop-modal .closed-stage a,
.airdrop-modal .transaction-link {
  color: var(--rh-green-deep);
  font-size: 0.74rem;
  font-weight: 800;
}

.airdrop-modal .claim-result-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(117, 216, 47, 0.14);
  color: var(--rh-green-deep);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.airdrop-modal .receipt {
  margin: 26px 0 18px;
  border-top: 1px solid var(--rh-line);
}

.airdrop-modal .receipt div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rh-line);
  text-align: left;
}

.airdrop-modal .receipt dt {
  color: var(--rh-muted);
  font-size: 0.66rem;
}

.airdrop-modal .receipt dd {
  margin: 0;
  overflow: hidden;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.airdrop-modal #receipt-evm {
  overflow: visible;
  overflow-wrap: anywhere;
  text-overflow: clip;
  white-space: normal;
}

.airdrop-modal .success-stage .secondary-button {
  width: 100%;
  margin-top: 22px;
}

.airdrop-how-modal {
  width: min(620px, calc(100% - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  padding: 0;
  overflow: auto;
  border: 1px solid var(--rh-line);
  border-radius: 18px;
  background: #fff;
  color: var(--rh-ink);
  box-shadow: 0 30px 90px rgba(12, 18, 13, 0.24);
}

.airdrop-how-modal::backdrop {
  background: rgba(12, 15, 11, 0.58);
  backdrop-filter: blur(4px);
}

.airdrop-how-modal > header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px 22px;
  border-bottom: 1px solid var(--rh-line);
}

.airdrop-how-modal header .eyebrow {
  margin-bottom: 7px;
}

.airdrop-how-modal h2 {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.airdrop-how-modal .airdrop-how-deadline {
  margin: 0;
  padding: 18px 28px 14px;
  border-bottom: 1px solid #edf0eb;
  background: #fbfdf8;
  color: var(--rh-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.airdrop-how-modal .airdrop-how-deadline strong {
  color: var(--rh-green-deep);
}

.airdrop-how-modal header > button {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--rh-line);
  border-radius: 10px;
  background: #fff;
  color: var(--rh-ink);
  font-size: 1.4rem;
  line-height: 1;
}

.airdrop-how-modal ol {
  margin: 0;
  padding: 8px 28px 0;
  list-style: none;
}

.airdrop-how-modal li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rh-line);
}

.airdrop-how-modal li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(117, 216, 47, 0.14);
  color: var(--rh-green-deep);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 800;
}

.airdrop-how-modal li h3 {
  margin: 1px 0 5px;
  font-size: 0.86rem;
}

.airdrop-how-modal li p {
  margin: 0;
  color: var(--rh-muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.airdrop-how-modal > .button {
  width: calc(100% - 56px);
  margin: 22px 28px 28px;
}

@media (max-width: 980px) {
  .rh-airdrop .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rh-airdrop .stat-card {
    min-height: 146px;
  }

}

@media (max-width: 720px) {
  .rh-airdrop-heading {
    display: block;
  }

  .rh-airdrop-actions {
    align-items: flex-start;
    margin-top: 16px;
  }

  .rh-airdrop-buttons {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rh-airdrop-buttons .button {
    width: 100%;
  }

  .rh-airdrop-buttons .airdrop-contract-link {
    grid-column: 1 / -1;
  }

  .rh-airdrop .stat-grid {
    gap: 9px;
  }

  .rh-airdrop .stat-card {
    min-height: 130px;
    padding: 17px;
    border-radius: 14px;
  }

  .rh-airdrop .stat-card strong {
    margin-top: 21px;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .rh-airdrop .progress-card {
    padding: 17px;
    border-radius: 14px;
  }

  .rh-airdrop .records {
    border-radius: 15px;
  }

  .rh-airdrop .tabs {
    padding: 0 4px;
  }

  .rh-airdrop .records-toolbar {
    display: flex;
    padding: 6px 8px 6px 0;
  }

  .rh-airdrop .search-box {
    width: clamp(150px, 38vw, 220px);
    margin: 0;
  }

  .rh-airdrop .table-wrap {
    min-height: 460px;
  }

  .rh-airdrop th,
  .rh-airdrop td {
    padding: 14px 13px;
  }

  .rh-airdrop th:first-child,
  .rh-airdrop td:first-child {
    padding-left: 20px;
  }

  .rh-airdrop th:last-child,
  .rh-airdrop td:last-child {
    padding-right: 20px;
  }

  .rh-airdrop .pagination {
    justify-content: center;
    padding-inline: 18px;
  }

  .airdrop-modal {
    display: grid;
    padding: 16px;
  }

  .airdrop-modal .modal-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .airdrop-modal .claim-panel {
    position: relative;
    inset: auto;
    width: min(520px, 100%);
    height: auto;
    max-height: calc(100dvh - 32px);
    padding: 24px 20px;
    border-radius: 18px;
    animation-name: airdrop-pop-in;
  }
}

@media (max-width: 430px) {
  .rh-airdrop .stat-card > span,
  .rh-airdrop .stat-card small {
    font-size: 0.65rem;
  }

  .rh-airdrop .progress-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .airdrop-modal .receipt div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .airdrop-how-modal > header {
    padding: 22px 20px 18px;
  }

  .airdrop-how-modal .airdrop-how-deadline {
    padding-inline: 20px;
  }

  .airdrop-how-modal ol {
    padding-inline: 20px;
  }

  .airdrop-how-modal > .button {
    width: calc(100% - 40px);
    margin: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rh-airdrop *,
  .airdrop-modal * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
