:root {
  --bg-main: #030712;
  --panel-bg: rgba(7, 18, 34, .78);
  --panel-border: rgba(74, 144, 226, .28);
  --text-main: #f5f9ff;
  --text-muted: #9db2ce;
  --accent-blue: #38a3ff;
  --accent-purple: #7c4dff;
  --accent-green: #36d399;
}

html,
body {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 52% 16% at 52% 73%, rgba(65, 180, 255, .62), rgba(20, 107, 255, .2) 32%, transparent 68%),
    radial-gradient(ellipse 45% 12% at 51% 75%, rgba(0, 20, 54, .86), transparent 70%),
    radial-gradient(900px 460px at 50% 112%, rgba(57, 163, 255, .28), transparent 66%),
    radial-gradient(620px 380px at 82% 18%, rgba(124, 77, 255, .12), transparent 58%),
    radial-gradient(580px 320px at 18% 12%, rgba(54, 211, 153, .08), transparent 55%),
    linear-gradient(135deg, #02050d 0%, #071224 47%, #030712 100%) !important;
  color: var(--text-main);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    linear-gradient(rgba(86, 161, 255, .034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 161, 255, .028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 72%, #000 0%, rgba(0,0,0,.4) 42%, transparent 74%);
  opacity: .75;
}

body::after {
  background:
    radial-gradient(ellipse 76% 30% at 50% 104%, rgba(0, 133, 255, .33), transparent 54%),
    radial-gradient(ellipse 78% 20% at 50% 100%, rgba(56, 163, 255, .22), transparent 72%),
    repeating-linear-gradient(14deg, transparent 0 32px, rgba(117, 174, 255, .035) 33px 34px),
    radial-gradient(circle at 61% 8%, rgba(116, 188, 255, .9) 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 11%, rgba(116, 188, 255, .7) 0 1px, transparent 1.5px);
  background-size: auto, auto, auto, 360px 260px, 440px 300px;
  opacity: .7;
}

.eqsl-shell {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0 30px !important;
}

.eqsl-public-header,
.eqsl-public-main,
.eqsl-status-bar,
.eqsl-public-footer {
  position: relative;
  z-index: 1;
}

.eqsl-public-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(16px, 2.6vh, 30px);
}

.eqsl-logo-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  text-decoration: none;
}

.eqsl-logo-mark {
  display: inline-flex;
  width: 56px;
  height: 66px;
  color: #ff4048;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .45));
}

.eqsl-logo-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.eqsl-logo-mark path,
.eqsl-logo-mark circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
}

.eqsl-logo-mark text {
  fill: currentColor;
  font: 900 18px/1 Inter, system-ui, sans-serif;
  text-anchor: middle;
}

.eqsl-logo-text {
  display: block;
}

.eqsl-logo-text strong,
.eqsl-logo-text em {
  display: block;
  font-style: normal;
}

.eqsl-logo-text strong {
  color: #fff;
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.eqsl-logo-text em {
  margin-top: 7px;
  color: rgba(165, 184, 214, .82);
  font-size: clamp(.7rem, .9vw, .9rem);
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
}

.eqsl-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 24px;
  border: 1px solid rgba(127, 176, 255, .26);
  border-radius: 8px;
  background: rgba(8, 20, 37, .5);
  color: #ddecff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.eqsl-about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: .95rem;
  line-height: 1;
}

.eqsl-about-btn:hover {
  color: #fff;
  border-color: rgba(88, 168, 255, .54);
  background: rgba(25, 72, 122, .34);
}

.eqsl-public-main {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.eqsl-hero-copy {
  padding: 8px 0;
}

.eqsl-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(56, 163, 255, .36);
  border-radius: 999px;
  background: rgba(56, 163, 255, .08);
  color: #8fccff;
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.eqsl-title {
  max-width: 760px;
  margin: 0 0 18px !important;
  color: var(--text-main);
  font-size: 1.6vw !important;
  font-weight: 850 !important;
  line-height: .96;
  letter-spacing: 0;
}

.eqsl-subtitle {
  max-width: 660px !important;
  margin: 0 0 30px !important;
  color: var(--text-muted) !important;
  font-size: clamp(1rem, 1.5vw, 1.22rem) !important;
  line-height: 1.72 !important;
  text-align: left !important;
}

.eqsl-step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 540px;
}

.eqsl-step-card,
.eqsl-search-card,
.eqsl-status-bar,
.eqsl-about-card {
  border: 1px solid var(--panel-border) !important;
  background: linear-gradient(180deg, rgba(11, 29, 53, .76), rgba(5, 14, 28, .68)) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35), 0 0 0 1px rgba(84, 170, 255, .04) inset !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.eqsl-step-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 18px 20px;
  border-radius: 12px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.eqsl-step-card--secure {
  min-height: 112px;
}

.eqsl-step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(82, 173, 255, .48) !important;
  background: linear-gradient(180deg, rgba(13, 39, 70, .86), rgba(6, 17, 33, .76)) !important;
}

.eqsl-step-icon,
.eqsl-form-icon,
.eqsl-input-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.eqsl-step-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(56, 163, 255, .12);
  color: var(--accent-blue);
  overflow: hidden;
}

.eqsl-step-card--preview .eqsl-step-icon {
  background: rgba(124, 77, 255, .18);
  color: #8b5cff;
}

.eqsl-step-card--download .eqsl-step-icon {
  background: rgba(54, 211, 153, .16);
  color: #31e98c;
}

.eqsl-step-card--secure .eqsl-step-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(51, 118, 255, .12);
  color: #4d87ff;
}

.eqsl-step-icon svg,
.eqsl-form-icon svg,
.eqsl-input-icon svg,
.eqsl-btn-icon svg,
.eqsl-about-card-icon svg,
.eqsl-status-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.eqsl-step-card h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0;
}

.eqsl-step-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.55;
}

.eqsl-search-card {
  width: 100%;
  padding: clamp(28px, 3vw, 36px) !important;
  border-radius: 14px !important;
  margin-top: 0;
  margin-bottom: 30px;
  top: 50px;
}

.eqsl-form-intro {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

.eqsl-form-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.24), transparent 30%),
    linear-gradient(135deg, rgba(56, 163, 255, .28), rgba(124, 77, 255, .16));
  color: #cfeaff;
  border: 1px solid rgba(104, 186, 255, .32);
  box-shadow: 0 16px 38px rgba(20, 119, 219, .22);
  overflow: hidden;
}

.eqsl-form-intro h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 820;
  letter-spacing: 0;
}

.eqsl-form-intro p {
  margin: 0;
  color: var(--text-muted);
}

.eqsl-search-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: end;
}

.eqsl-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  grid-column: 1 / -1;
}

.eqsl-field {
  min-width: 0;
}

.form-label {
  margin-bottom: 8px !important;
  color: #dfeeff !important;
  font-size: .84rem;
  font-weight: 800 !important;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eqsl-input-wrap {
  position: relative;
}

.eqsl-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 22px;
  height: 22px;
  color: rgba(143, 204, 255, .82);
  transform: translateY(-50%);
  z-index: 2;
  overflow: hidden;
}

.eqsl-search-card .form-control {
  min-height: 64px !important;
  padding-left: 52px !important;
  border: 1px solid rgba(88, 145, 207, .3) !important;
  border-radius: 14px !important;
  background: rgba(3, 12, 25, .72) !important;
  color: var(--text-main) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.eqsl-search-card .form-control:focus {
  border-color: rgba(56, 163, 255, .72) !important;
  box-shadow: 0 0 0 4px rgba(56, 163, 255, .15), inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.eqsl-search-card .form-control::placeholder {
  color: rgba(157, 178, 206, .64) !important;
}

.recaptcha-wrap {
  justify-content: flex-start !important;
  margin-top: 0 !important;
  overflow: hidden;
}

.eqsl-security-field .g-recaptcha {
  transform-origin: left top;
}

.eqsl-form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  gap: 22px;
  align-items: center;
  width: 100%;
  grid-column: 2;
  grid-row: 2;
 align-self: start;
}

.eqsl-form-actions .btn,
#loadMoreBtn,
.eqsl-actions .btn {
  min-height: 64px !important;
  border-radius: 8px !important;
}

.eqsl-form-actions .btn-primary,
.eqsl-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  border: 0 !important;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)) !important;
  color: #fff !important;
  box-shadow: 0 18px 38px rgba(57, 134, 255, .27) !important;
  overflow: hidden;
}

.eqsl-form-actions .btn-primary:hover,
.eqsl-actions .btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.eqsl-btn-icon {
  display: inline-flex;
  color: #fff;
  flex: 0 0 auto;
  overflow: hidden;
}

.eqsl-form-actions .btn-outline-light,
#loadMoreBtn,
.eqsl-actions .btn-outline-warning,
.eqsl-actions .btn-outline-light {
  border-color: rgba(124, 170, 226, .28) !important;
  background: rgba(7, 18, 34, .5) !important;
  color: #dcecff !important;
}

.status {
  margin-top: 16px !important;
  color: var(--text-muted) !important;
}

.text-danger {
  color: #ff8c9d !important;
}

.text-success {
  color: var(--accent-green) !important;
}

.badge-hint {
  border-color: rgba(56, 163, 255, .32) !important;
  background: rgba(56, 163, 255, .1) !important;
  color: #bfe3ff !important;
}

.eqsl-about-card {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 34px 0 0;
  border: 0 !important;
  border-top: 1px solid rgba(151, 180, 220, .22) !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.eqsl-about-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(151, 127, 255, .44);
  background: rgba(124, 77, 255, .12);
  color: #b59cff;
  flex: 0 0 auto;
  overflow: hidden;
}

.eqsl-about-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
}

.eqsl-about-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.62;
}

#results {
  margin-top: 28px;
}

.eqsl-result-card {
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(10, 28, 52, .84), rgba(5, 14, 28, .78)) !important;
}

.thumb {
  border-radius: 14px !important;
  border-color: rgba(93, 155, 220, .36) !important;
  background: rgba(2, 8, 18, .82) !important;
}

.return-panel {
  border-radius: 14px !important;
  border-color: rgba(56, 163, 255, .26) !important;
  background: rgba(6, 18, 34, .72) !important;
}

.eqsl-status-bar {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  margin-top: clamp(26px, 4vh, 46px);
  padding: 22px;
  border-radius: 10px;
}

.eqsl-status-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 6px 24px;
}

.eqsl-status-item + .eqsl-status-item {
  border-left: 1px solid rgba(151, 180, 220, .24);
}

.eqsl-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex: 0 0 auto;
  overflow: hidden;
}

.eqsl-status-item--trusted .eqsl-status-icon {
  border: 1px solid rgba(72, 128, 255, .38);
  background: rgba(58, 100, 255, .16);
  color: #4d87ff;
}

.eqsl-status-item--downloads .eqsl-status-icon {
  background: transparent;
  color: #ffc943;
}

.eqsl-status-item--expiry .eqsl-status-icon {
  border: 1px solid rgba(255, 112, 92, .32);
  background: rgba(255, 82, 82, .14);
  color: #ff765f;
}

.eqsl-status-bar strong,
.eqsl-status-bar span {
  display: block;
}

.eqsl-status-bar strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.eqsl-status-number {
  display: inline !important;
  margin-right: 9px;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  vertical-align: -2px;
}

.eqsl-status-bar span {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: .92rem;
}

.eqsl-public-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 22px;
  padding-top: 22px;
  color: rgba(157, 178, 206, .82);
  font-size: .9rem;
}

.eqsl-public-footer a + a,
.eqsl-public-footer span + a {
  position: relative;
}

.eqsl-public-footer a {
  color: #c9e4ff;
  text-decoration: none;
}

.eqsl-public-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .eqsl-public-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .eqsl-search-card {
    order: -1;
    margin-top: 0;
  }

  .eqsl-title,
  .eqsl-subtitle {
    max-width: 100% !important;
  }

  .eqsl-form-actions {
    margin-top: 0;
    margin-left: 0;
    width: auto;
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .eqsl-shell {
    width: min(100% - 24px, 1480px);
    padding-top: 18px !important;
  }

  .eqsl-public-header {
    margin-bottom: 18px;
  }

  .eqsl-about-btn {
    min-height: 38px;
    padding: 0 13px;
    font-size: .82rem;
  }

  .eqsl-logo-link {
    gap: 11px;
  }

  .eqsl-logo-mark {
    width: 48px;
    height: 56px;
  }

  .eqsl-logo-text strong {
    font-size: 1.35rem;
  }

  .eqsl-logo-text em {
    font-size: .58rem;
    white-space: normal;
  }

  .eqsl-step-grid,
  .eqsl-status-bar,
  .eqsl-form-actions,
  .eqsl-search-grid,
  .eqsl-form-row {
    grid-template-columns: 1fr;
  }

  .eqsl-title {
    font-size: clamp(2.6rem, 15vw, 4rem) !important;
  }

  .eqsl-step-card {
    min-height: auto;
  }

  .eqsl-search-card {
    padding: 18px !important;
  }

  .eqsl-form-intro {
    align-items: flex-start;
  }

  .eqsl-form-icon {
    width: 48px;
    height: 48px;
  }

  .eqsl-security-field .g-recaptcha {
    transform: scale(.92);
  }
}

@media (max-width: 380px) {
  .eqsl-security-field .g-recaptcha {
    transform: scale(.84);
  }
}

/* Hard locks for inline SVGs. Some global stylesheets set bare svg dimensions,
   so these page-scoped rules must be last. */
.eqsl-shell svg[viewBox="0 0 24 24"] {
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  color: inherit !important;
}

.eqsl-shell svg[viewBox="0 0 24 24"] path {
  fill: currentColor !important;
}

.eqsl-shell .eqsl-logo-mark,
.eqsl-shell .eqsl-step-icon,
.eqsl-shell .eqsl-form-icon,
.eqsl-shell .eqsl-input-icon,
.eqsl-shell .eqsl-btn-icon,
.eqsl-shell .eqsl-about-card-icon,
.eqsl-shell .eqsl-status-icon {
  overflow: hidden;
}

.eqsl-shell .eqsl-logo-mark svg {
  display: block !important;
  width: 56px !important;
  height: 66px !important;
  max-width: 56px !important;
  max-height: 66px !important;
}

.eqsl-shell .eqsl-step-icon svg,
.eqsl-shell .eqsl-form-icon svg,
.eqsl-shell .eqsl-input-icon svg,
.eqsl-shell .eqsl-btn-icon svg,
.eqsl-shell .eqsl-about-card-icon svg,
.eqsl-shell .eqsl-status-icon svg {
  display: block !important;
  flex: 0 0 auto !important;
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  color: inherit !important;
}

.eqsl-shell .eqsl-form-icon svg {
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
}

.eqsl-shell .eqsl-about-card-icon svg,
.eqsl-shell .eqsl-status-icon svg {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
}

.eqsl-shell .eqsl-btn-icon,
.eqsl-shell .eqsl-btn-icon svg {
  width: 22px !important;
  height: 22px !important;
}

.eqsl-shell .eqsl-step-icon svg path,
.eqsl-shell .eqsl-form-icon svg path,
.eqsl-shell .eqsl-input-icon svg path,
.eqsl-shell .eqsl-btn-icon svg path,
.eqsl-shell .eqsl-about-card-icon svg path,
.eqsl-shell .eqsl-status-icon svg path {
  fill: currentColor !important;
}

.eqsl-shell .eqsl-logo-mark svg path,
.eqsl-shell .eqsl-logo-mark svg circle {
  fill: none !important;
  stroke: currentColor !important;
}

.eqsl-shell .eqsl-logo-mark svg text {
  fill: currentColor !important;
}

.eqsl-shell .eqsl-form-actions .btn-primary {
  min-width: 0 !important;
}

@media (max-width: 720px) {
  .eqsl-shell .eqsl-logo-mark svg {
    width: 48px !important;
    height: 56px !important;
    max-width: 48px !important;
    max-height: 56px !important;
  }
}
/* Status bar icon alignment fix */
.eqsl-shell .eqsl-status-icon {
  display: inline-grid !important;
  place-items: center !important;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  padding: 0 !important;
  line-height: 0 !important;
  text-align: center !important;
  vertical-align: middle !important;
}

.eqsl-shell .eqsl-status-icon svg {
  display: block !important;
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  margin: 0 !important;
  transform: none !important;
}

.eqsl-shell .eqsl-status-icon svg path,
.eqsl-shell .eqsl-status-icon svg circle,
.eqsl-shell .eqsl-status-icon svg line,
.eqsl-shell .eqsl-status-icon svg polyline,
.eqsl-shell .eqsl-status-icon svg polygon {
  vector-effect: non-scaling-stroke;
}
/* Footer heart accent */
.eqsl-public-footer .footer-heart {
  color: #ff3b4f !important;
  text-shadow: 0 0 10px rgba(255, 59, 79, .45);
}
.eqsl-logo-image-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .42);
}

.eqsl-logo-image {
  display: block;
  width: 85px;
  height: 85px;
  object-fit: contain;
}

@media (max-width: 720px) {
  .eqsl-logo-image-wrap,
  .eqsl-logo-image {
    width: 58px;
    height: 58px;
  }
}
.eqsl-logo-text .logo-red {
  color: #ff3038;
  text-shadow: 0 0 12px rgba(255, 48, 56, .35);
}
/* Visually hide Google reCAPTCHA's bright outer border */
.eqsl-security-field .recaptcha-wrap {
  display: inline-flex;
  width: 304px;
  height: 78px;
  overflow: hidden;
  border-radius: 10px;
  background: #202020;
  border: 1px solid rgba(88, 145, 207, .24);
}

.eqsl-security-field .g-recaptcha {
  transform: translate(-1px, -1px);
  transform-origin: left top;
  border: 2px solid #071224 !important;
}
.rc-anchor-dark.rc-anchor-compact, .rc-anchor-dark.rc-anchor-normal
 {
    border: 1px solid #071325 !important;
}
/* Align Find eQSL + Reset with the reCAPTCHA box, not the label */
.eqsl-form-actions {
  align-self: start !important;
  margin-top: 30px !important;
}
html {
  scroll-behavior: smooth;
}

#about-eqsl {
  scroll-margin-top: 120px;
}

#about-eqsl:target {
  border-radius: 16px;
  animation: eqslAboutPulse 1.6s ease;
}

@keyframes eqslAboutPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 163, 255, .0);
    background: rgba(56, 163, 255, .0);
  }

  35% {
    box-shadow: 0 0 0 4px rgba(56, 163, 255, .16), 0 0 38px rgba(56, 163, 255, .24);
    background: rgba(56, 163, 255, .08);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(56, 163, 255, .0);
    background: transparent;
  }
}
/* About eQSL premium modal */
.eqsl-about-btn {
  border: 1px solid rgba(127, 176, 255, .26);
  cursor: pointer;
}

.eqsl-info-modal .modal-dialog {
  max-width: 620px;
}

.eqsl-info-modal-content {
  border: 1px solid rgba(74, 144, 226, .34) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 20% 0%, rgba(56, 163, 255, .22), transparent 36%),
    linear-gradient(180deg, rgba(11, 29, 53, .96), rgba(5, 14, 28, .98)) !important;
  color: #f5f9ff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .58), 0 0 45px rgba(56, 163, 255, .12);
  overflow: hidden;
}

.eqsl-info-modal-header {
  border-bottom: 1px solid rgba(151, 180, 220, .18) !important;
  padding: 26px 28px 20px !important;
}

.eqsl-info-modal-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 10px;
  border: 1px solid rgba(56, 163, 255, .34);
  border-radius: 999px;
  background: rgba(56, 163, 255, .08);
  color: #8fccff;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .16em;
}

.eqsl-info-modal-header .modal-title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 850;
}

.eqsl-info-modal-close {
  filter: invert(1) grayscale(1);
  opacity: .82;
}

.eqsl-info-modal-body {
  padding: 24px 28px !important;
}

.eqsl-info-modal-body p {
  margin: 0 0 22px;
  color: #b7c8e2;
  font-size: 1rem;
  line-height: 1.72;
}

.eqsl-info-list {
  display: grid;
  gap: 12px;
}

.eqsl-info-item {
  padding: 16px 18px;
  border: 1px solid rgba(88, 145, 207, .24);
  border-radius: 14px;
  background: rgba(3, 12, 25, .48);
}

.eqsl-info-item strong,
.eqsl-info-item span {
  display: block;
}

.eqsl-info-item strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: .98rem;
  font-weight: 850;
}

.eqsl-info-item span {
  color: #9db2ce;
  line-height: 1.55;
}

.eqsl-info-modal-footer {
  border-top: 1px solid rgba(151, 180, 220, .18) !important;
  padding: 18px 28px 26px !important;
}

.eqsl-info-modal-footer .btn-primary {
  min-height: 50px;
  padding: 0 26px;
  border: 0 !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)) !important;
  color: #fff !important;
  font-weight: 800;
}