:root {
  --green: #68ff94;
  --green-border: rgba(104, 255, 148, 0.14);
  --green-dim: rgba(104, 255, 148, 0.08);
  --green-glow: rgba(104, 255, 148, 0.35);
  --border: rgba(255, 255, 255, 0.06);
  --border-hi: rgba(104, 255, 148, 0.28);
  --text: #bcc0c3;
  --text-dim: rgba(188, 192, 195, 0.45);
  --text-dimmer: rgba(188, 192, 195, 0.25);
  --bg-card: rgba(255, 255, 255, 0.018);
  --font-mono: 'JetBrains Mono', monospace;
  --font-display: 'Orbitron', monospace;
  --radius: 8px;
  --red: #ff6b6b;
  --link: #8ad4ff;
  --yellow: #ffd580;
  --baby-blue: #aee0ff;
  --baby-blue-soft: #cfeeff;
  --baby-blue-glow: rgba(174, 224, 255, 0.45);
  --baby-blue-dim: rgba(174, 224, 255, 0.1);
  --baby-blue-border: rgba(174, 224, 255, 0.22);
  --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --orange-yellow-crayola: hsl(144.3, 100%, 72%);
  --smoky-black: hsl(0, 0%, 7%);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #070707;
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  cursor: crosshair;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(20, 83, 45, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 83, 45, 0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(69, 190, 108, 0.1) 1px, transparent 1px),
    linear-gradient(45deg, rgba(69, 190, 108, 0.02) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(69, 190, 108, 0.02) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px, 20px 20px, 80px 80px, 80px 80px;
  z-index: -1;
  pointer-events: none;
}

#ambientGlow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 10%, rgba(104, 255, 148, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse 50% 30% at 85% 90%, rgba(138, 212, 255, 0.025) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

#cursorOrb {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(104, 255, 148, 0.045) 0%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: opacity 0.4s;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--green-border);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green-glow);
}

#page {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 22px 40px;
  flex: 1;
  width: 100%;
}

#siteHeader {
  padding: 20px 0 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.logo-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.logo-xrav {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 48px);
  color: var(--green);
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(104, 255, 148, 0.5), 0 0 80px rgba(104, 255, 148, 0.15);
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {

  0%,
  100% {
    text-shadow: 0 0 30px rgba(104, 255, 148, 0.5), 0 0 80px rgba(104, 255, 148, 0.15);
  }

  50% {
    text-shadow: 0 0 40px rgba(104, 255, 148, 0.7), 0 0 100px rgba(104, 255, 148, 0.25);
  }
}

.logo-tools {
  font-family: 'Orbitron', monospace;
  font-weight: 400;
  font-size: clamp(12px, 2.5vw, 20px);
  color: rgba(188, 192, 195, 0.55);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-left: 4px;
}

.logo-cursor {
  display: inline-block;
  width: clamp(5px, 1vw, 8px);
  height: clamp(18px, 3.5vw, 30px);
  background: var(--green);
  margin-left: 4px;
  animation: blink 1.05s step-end infinite;
  vertical-align: bottom;
  box-shadow: 0 0 12px rgba(104, 255, 148, 0.7);
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.slogan-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.slogan {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--green);
  text-shadow: 0 0 5px var(--green);
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.slogan i {
  font-size: 13px;
  opacity: 0.7;
}

.search-section {
  margin: 20px 0 18px;
}

.search-wrapper {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}

.search-input-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search-input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  opacity: 0.5;
  font-size: 14px;
}

.search-input-wrap i {
  transform: translateY(-50%) !important;
  will-change: transform;
  position: absolute;
  left: 14px;
  top: 50%;
}


.search-input-wrap i.shaking {
  transform: translateY(-50%) translateX(0px) !important;
}

#queryInput {
  width: 100%;
  height: 100%;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px 12px 42px;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}

#queryInput::placeholder {
  color: rgba(188, 192, 195, 0.25);
  font-size: 12px;
}

#queryInput:focus {
  border-color: var(--border-hi);
  background: rgba(104, 255, 148, 0.02);
  box-shadow: 0 0 0 3px rgba(104, 255, 148, 0.05);
}

.type-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 6px;
  min-height: 48px;
  flex-wrap: wrap;
}

.type-selector label {
  font-size: 9px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-dimmer);
  letter-spacing: 0.06em;
  padding: 0 6px;
}

.type-btn {
  padding: 6px 10px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--text-dimmer);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  cursor: pointer;
  transition: all 0.18s;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.type-btn:hover {
  color: var(--text);
  border-color: var(--border);
}

.type-btn.active {
  background: var(--green-dim);
  border-color: var(--green-border);
  color: var(--green);
}

.type-btn.active:hover {
  background: rgba(104, 255, 148, 0.14);
}

.search-actions {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}

.btn-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  min-height: 48px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  color: var(--green);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.btn-search:hover {
  background: rgba(104, 255, 148, 0.14);
  border-color: rgba(104, 255, 148, 0.5);
  box-shadow: 0 0 18px rgba(104, 255, 148, 0.1);
  transform: translateY(-1px);
}

.btn-search:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-clear-cache {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  min-height: 48px;
  background: rgba(255, 107, 107, 0.05);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: var(--radius);
  color: var(--red);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.btn-clear-cache.visible {
  display: inline-flex;
}

.btn-clear-cache:hover {
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 0 18px rgba(255, 107, 107, 0.08);
  transform: translateY(-1px);
}

.btn-clear-cache i {
  font-size: 13px;
}

.disclaimer {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.7;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.disclaimer i {
  color: var(--green);
  opacity: 0.6;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.disclaimer-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.disclaimer-content .main-text {
  color: var(--text);
}

.disclaimer-content .main-text strong {
  color: var(--green);
  font-weight: 600;
}

.disclaimer-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 2px;
}

.disclaimer-footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.disclaimer-footer i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  flex-shrink: 0;
  font-size: 10px;
  line-height: 1;
  opacity: 0.6;
  color: var(--text-dimmer);
}

.result-area {
  margin-top: 24px;
  display: none;
}

.result-area.visible {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-card {
  background: var(--bg-card);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: 0 0 0 1px rgba(104, 255, 148, 0.03);
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.result-title {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  color: var(--green);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.result-title i {
  font-size: 20px;
  opacity: 0.8;
}

.result-title .query-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.result-status {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.result-status.error {
  background: rgba(255, 107, 107, 0.08);
  border-color: rgba(255, 107, 107, 0.3);
  color: var(--red);
}

.result-status.warning {
  background: rgba(255, 213, 128, 0.08);
  border-color: rgba(255, 213, 128, 0.3);
  color: var(--yellow);
}

.api-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
}

.api-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.api-info-status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.api-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.api-info-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 10px 14px 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.api-info-card:hover,
.api-info-card:focus-visible {
  background: var(--green-dim);
  border-color: var(--border-hi);
  transform: translateX(2px);
  outline: none;
}

.api-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green-glow);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px 0 0 50px;
}

.api-info-card:hover::before,
.api-info-card:focus-visible::before {
  opacity: 1;
}

.api-info-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(104, 255, 148, 0.06);
  border: 1px solid var(--green-border);
  z-index: 1;
}

.api-info-card-icon i {
  color: var(--green);
  font-size: 12px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

.api-info-card:hover .api-info-card-icon i {
  transform: scale(1.12) rotate(5deg);
  filter: drop-shadow(0 0 4px var(--green-glow));
}

.api-info-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
  z-index: 1;
}

.api-info-card-label {
  color: var(--text-dimmer);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.api-info-card-value {
  color: var(--text);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.api-info-card:hover .api-info-card-value {
  color: #ffffff;
  text-shadow: 0 0 4px var(--green-glow);
}

.api-info-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.api-info-card-arrow i {
  color: var(--text-dimmer);
  font-size: 10px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.result-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-extract-txt {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--baby-blue-dim);
  border: 1px solid var(--baby-blue-border);
  border-radius: var(--radius);
  color: var(--baby-blue);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-extract-txt.visible {
  display: inline-flex;
}

.btn-extract-txt i {
  font-size: 11px;
}

.btn-extract-txt:hover {
  background: rgba(174, 224, 255, 0.16);
  border-color: rgba(174, 224, 255, 0.5);
  box-shadow: 0 0 18px rgba(174, 224, 255, 0.14);
  transform: translateY(-1px);
}

.btn-extract-txt:active {
  transform: translateY(0);
}

.btn-extract-txt.is-exporting {
  animation: extractBtnPulse 0.6s var(--ease-snap) infinite;
}

@keyframes extractBtnPulse {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

.api-info-card:hover .api-info-card-arrow i {
  transform: translateX(4px);
  color: var(--green);
}

.api-info .limit-info {
  color: var(--text-dimmer);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.api-info .api-badge {
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 20px;
  padding: 4px 12px;
  color: var(--green);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.api-info .cache-badge {
  background: rgba(255, 213, 128, 0.08);
  border: 1px solid rgba(255, 213, 128, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  color: var(--yellow);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: none;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.api-info .cache-badge.visible {
  display: inline-flex;
}

.proxy-badge {
  background: rgba(174, 224, 255, 0.12);
  border: 1px solid var(--baby-blue-border);
  border-radius: 20px;
  padding: 4px 12px;
  color: var(--baby-blue);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: none;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.proxy-badge i {
  font-size: 11px;
  color: var(--baby-blue);
  opacity: 0.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.stat-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, transparent 85%);
  opacity: 0.55;
}

.stat-card::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(104, 255, 148, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.stat-card:hover {
  border-color: var(--border-hi);
  background: linear-gradient(150deg, rgba(104, 255, 148, 0.055) 0%, rgba(104, 255, 148, 0.012) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -12px rgba(104, 255, 148, 0.22);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(104, 255, 148, 0.09);
  border: 1px solid var(--green-border);
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.08);
}

.stat-icon i {
  font-size: 12.5px;
  color: var(--green);
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.stat-label {
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-dimmer);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.stat-card.danger::before {
  background: linear-gradient(90deg, var(--red) 0%, transparent 85%);
}

.stat-card.danger:hover {
  box-shadow: 0 10px 22px -12px rgba(255, 107, 107, 0.22);
}

.stat-card.danger .stat-icon {
  background: rgba(255, 107, 107, 0.09);
  border-color: rgba(255, 107, 107, 0.28);
}

.stat-card.danger .stat-icon i {
  color: var(--red);
}

.stat-card.danger .stat-value {
  color: var(--red);
}

.stat-card.info::before {
  background: linear-gradient(90deg, var(--link) 0%, transparent 85%);
}

.stat-card.info:hover {
  box-shadow: 0 10px 22px -12px rgba(138, 212, 255, 0.22);
}

.stat-card.info .stat-icon {
  background: rgba(138, 212, 255, 0.09);
  border-color: rgba(138, 212, 255, 0.28);
}

.stat-card.info .stat-icon i {
  color: var(--link);
}

.domain-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.domain-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.domain-logo-caption {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  word-break: break-word;
}

.domain-logo-caption strong {
  color: var(--text);
  font-weight: 600;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-family: var(--font-mono);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-dim);
}

.status-chip.positive {
  color: var(--green);
  border-color: var(--green-border);
  background: var(--green-dim);
}

.status-chip.negative {
  color: var(--text-dimmer);
}

.url-section {
  margin-bottom: 18px;
}

.url-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.85;
  font-weight: 700;
  margin-bottom: 10px;
}

.url-section-title .count-pill {
  margin-left: auto;
  font-size: 9.5px;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-weight: 600;
}

.url-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.url-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.url-list-item:hover {
  border-color: var(--border-hi);
  background: rgba(104, 255, 148, 0.02);
}

.url-list-item>i {
  color: var(--green);
  opacity: 0.55;
  font-size: 12px;
  flex-shrink: 0;
}

.url-list-link {
  flex: 1;
  min-width: 0;
  color: var(--link);
  font-family: var(--font-mono);
  font-size: 12px;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.url-list-link:hover {
  text-decoration: underline;
}

.url-list-type {
  flex-shrink: 0;
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(138, 212, 255, 0.08);
  border: 1px solid rgba(138, 212, 255, 0.22);
  color: var(--link);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.url-list-occurrence {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(255, 213, 128, 0.1);
  border: 1px solid rgba(255, 213, 128, 0.25);
  color: var(--yellow);
  font-weight: 700;
}

.empty-hint {
  font-size: 11.5px;
  color: var(--text-dimmer);
  font-family: var(--font-mono);
  padding: 10px 12px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.info-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-dim);
}

.info-chip i {
  color: var(--green);
  opacity: 0.7;
  font-size: 11px;
}

.info-chip strong {
  color: var(--text);
  font-weight: 600;
}

.metric-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.metric-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.metric-row-label {
  flex: 0 0 auto;
  width: 150px;
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.metric-row-track {
  flex: 1;
  min-width: 0;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.metric-row-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green), rgba(104, 255, 148, 0.45));
}

.metric-row-fill.alt {
  background: linear-gradient(90deg, var(--link), rgba(138, 212, 255, 0.4));
}

.metric-row-value {
  flex: 0 0 auto;
  min-width: 44px;
  font-size: 10.5px;
  font-family: var(--font-mono);
  color: var(--text);
  font-weight: 700;
  text-align: right;
}

.pwd-strength-block {
  margin-bottom: 14px;
}

.pwd-strength-block:last-child {
  margin-bottom: 0;
}

.pwd-strength-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 6px;
  font-family: var(--font-mono);
}

.pwd-strength-title span:last-child {
  color: var(--text-dimmer);
  font-size: 10px;
}

.pwd-strength-bar {
  display: flex;
  height: 10px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.pwd-seg {
  height: 100%;
}

.pwd-seg.too_weak {
  background: var(--red);
}

.pwd-seg.weak {
  background: #ff9b5c;
}

.pwd-seg.medium {
  background: var(--yellow);
}

.pwd-seg.strong {
  background: var(--green);
}

.pwd-strength-legend {
  display: flex;
  gap: 14px;
  margin-top: 7px;
  flex-wrap: wrap;
}

.pwd-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--text-dimmer);
  font-family: var(--font-mono);
}

.pwd-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.pwd-legend-dot.too_weak {
  background: var(--red);
}

.pwd-legend-dot.weak {
  background: #ff9b5c;
}

.pwd-legend-dot.medium {
  background: var(--yellow);
}

.pwd-legend-dot.strong {
  background: var(--green);
}

.stealers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.stealers-grid {
  perspective: 1400px;
}

.stealer-card {
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  transform: translateZ(0);
}

.stealer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.075), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.stealer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 0;
}

.stealer-card:hover {
  border-color: var(--border-hi);
  background: rgba(104, 255, 148, 0.018);
  box-shadow: 0 18px 38px -16px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(104, 255, 148, 0.07);
  transform: translateY(-3px);
}

.stealer-card:hover::before {
  opacity: 1;
}

.stealer-card-header,
.stealer-card-details,
.stealer-card-tags {
  position: relative;
  z-index: 1;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.stealer-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stealer-family-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(104, 255, 148, 0.1);
  border: 1px solid var(--green-border);
  border-radius: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
}

.stealer-family-badge i {
  font-size: 12px;
}

.stealer-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 10px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
}

.stealer-date-badge i {
  font-size: 10px;
  opacity: 0.6;
}

.stealer-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.stealer-detail-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 11px 9px 12px;
  background: rgba(255, 255, 255, 0.016);
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-left: 2px solid rgba(104, 255, 148, 0.16);
  border-radius: 7px;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.stealer-detail-item:hover {
  background: rgba(104, 255, 148, 0.03);
  border-color: rgba(104, 255, 148, 0.12);
  border-left-color: var(--green);
  transform: translateX(1px);
}

.stealer-detail-item--wide {
  grid-column: 1 / -1;
}

.stealer-detail-item--wide:hover {
  transform: none;
}

.stealer-detail-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  font-size: 10px;
  color: var(--green);
  opacity: 1;
  margin-top: 0;
  flex-shrink: 0;
  background: rgba(104, 255, 148, 0.08);
  border-radius: 6px;
  text-align: center;
}

.stealer-detail-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding-top: 1px;
}

.stealer-detail-label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dimmer);
  font-weight: 800;
}

.stealer-detail-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text);
  word-break: break-word;
  line-height: 1.35;
}

.stealer-detail-value--path {
  color: var(--red);
  opacity: 0.85;
  font-size: 10.5px;
  line-height: 1.5;
}

.av-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  margin: 2px 4px 2px 0;
  background: rgba(104, 255, 148, 0.08);
  border: 1px solid var(--green-border);
  border-radius: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--green);
  white-space: nowrap;
}

.stealer-card-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.stealer-tag-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.stealer-tag-group i {
  font-size: 11px;
  color: var(--yellow);
  opacity: 0.7;
  margin-top: 3px;
  flex-shrink: 0;
}

.stealer-tag-label {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dimmer);
  font-weight: 600;
  margin-bottom: 5px;
}

.stealer-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.stealer-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--text-dim);
  white-space: nowrap;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}


.raw-data-drawer {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.raw-data-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  gap: 10px;
}

.raw-data-button:hover {
  background: rgba(104, 255, 148, 0.04);
  color: var(--text);
}

.raw-data-button-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.raw-data-button-left i:first-child {
  font-size: 14px;
  color: var(--green);
  opacity: 0.6;
  flex-shrink: 0;
}

.raw-data-button-left span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  white-space: nowrap;
}

.raw-data-button-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.raw-data-button-right .raw-badge {
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 10px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.raw-data-button-right i {
  font-size: 12px;
  color: var(--green);
  opacity: 0.5;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}

.raw-data-button-right i.open {
  transform: rotate(180deg);
  opacity: 1;
}

.raw-data-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.raw-data-panel.open {
  max-height: 500px;
}

.raw-data-wrapper {
  position: relative;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--border);
}

.raw-copy-btn-fixed-bottom {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(104, 255, 148, 0.15);
  border-radius: 8px;
  color: rgba(188, 192, 195, 0.6);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  user-select: none;
  overflow: hidden;
}

.raw-copy-btn-fixed-bottom::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(104, 255, 148, 0.3), transparent 60%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.raw-copy-btn-fixed-bottom i {
  font-size: 18px;
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.raw-copy-btn-fixed-bottom:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: rgba(104, 255, 148, 0.4);
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(104, 255, 148, 0.05);
}

.raw-copy-btn-fixed-bottom:hover::before {
  opacity: 1;
}

.raw-copy-btn-fixed-bottom:hover i {
  color: var(--green);
  transform: scale(1.1) rotate(-5deg);
}

.raw-copy-btn-fixed-bottom:active {
  transform: scale(0.92);
  transition-duration: 0.08s;
}

.raw-copy-btn-fixed-bottom.copied {
  background: rgba(104, 255, 148, 0.12);
  border-color: rgba(104, 255, 148, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(104, 255, 148, 0.08);
}

.raw-copy-btn-fixed-bottom.copied::before {
  opacity: 1;
  background: linear-gradient(135deg, transparent 30%, rgba(104, 255, 148, 0.4), transparent 70%);
}

.raw-copy-btn-fixed-bottom.copied i {
  color: var(--green);
  transform: scale(1.1);
}

@keyframes copyPulse {
  0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(104, 255, 148, 0.3);
  }

  50% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 40px 8px rgba(104, 255, 148, 0.15);
  }

  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(104, 255, 148, 0);
  }
}

.raw-copy-btn-fixed-bottom.copied {
  animation: copyPulse 0.8s ease;
}

.raw-data-pre {
  margin: 0;
  padding: 16px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.7;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
  overflow-x: auto;
  max-height: 456px;
  overflow-y: auto;
}

.raw-data-pre::-webkit-scrollbar {
  width: 3px;
}

.raw-data-pre::-webkit-scrollbar-thumb {
  background: var(--green-border);
  border-radius: 2px;
}

.raw-data-content {
  display: block;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 767px) {
  .raw-copy-btn-fixed-bottom {
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }

  .raw-copy-btn-fixed-bottom i {
    font-size: 16px;
  }

  .raw-copy-btn-fixed-bottom:hover {
    transform: scale(1.08);
  }

  .raw-data-pre {
    padding: 12px 14px;
    font-size: 10px;
    max-height: 320px;
  }

  .raw-data-content {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .raw-copy-btn-fixed-bottom {
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }

  .raw-copy-btn-fixed-bottom i {
    font-size: 14px;
  }

  .raw-data-pre {
    padding: 10px 12px;
    font-size: 9px;
    max-height: 260px;
  }

  .raw-data-content {
    font-size: 9px;
  }
}

@media (min-width: 1024px) {
  .raw-copy-btn-fixed-bottom {
    bottom: 30px;
    right: 18px;
    width: 44px;
    height: 44px;
  }

  .raw-copy-btn-fixed-bottom i {
    font-size: 20px;
  }

  .raw-data-pre {
    padding: 20px 24px;
    font-size: 12.5px;
    max-height: 520px;
  }

  .raw-data-content {
    font-size: 12.5px;
  }
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.no-incident-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 36px 20px;
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  background: rgba(104, 255, 148, 0.03);
}

.no-incident-panel i {
  font-size: 30px;
  color: var(--green);
  text-shadow: 0 0 16px rgba(104, 255, 148, 0.4);
}

.no-incident-panel .no-incident-title {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.03em;
}

.no-incident-panel .no-incident-desc {
  font-size: 12px;
  color: var(--text-dim);
  max-width: 480px;
  line-height: 1.6;
}

.incident-warning-box {
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(255, 107, 107, 0.06);
  border: 1px solid rgba(255, 107, 107, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.incident-warning-box i {
  color: var(--red);
  font-size: 16px;
  flex-shrink: 0;
}

.incident-warning-box span {
  font-size: 13px;
  color: var(--text);
}

.data-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: block;
}

.data-item .label {
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.data-item .label i {
  font-size: 10px;
  color: var(--green);
  opacity: 0.6;
}

.data-item .value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  word-break: break-word;
  line-height: 1.4;
}

.data-item .value.password {
  font-family: inherit;
  letter-spacing: 2px;
}

.list-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.list-section-title {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  opacity: 0.8;
  font-weight: 700;
}

.list-section-title i {
  font-size: 12px;
}

.results-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.01);
}

.results-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.results-table th {
  text-align: left;
  padding: 10px 14px;
  background: rgba(104, 255, 148, 0.04);
  border-bottom: 1px solid var(--border);
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.results-table td {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text);
  word-break: break-word;
  vertical-align: top;
}

.results-table tr:last-child td {
  border-bottom: none;
}

.results-table tr:hover td {
  background: rgba(104, 255, 148, 0.03);
}

.error-box {
  background: rgba(255, 107, 107, 0.05);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.error-box i {
  color: var(--red);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.error-box .error-text {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

.error-box .error-text a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px dashed rgba(138, 212, 255, 0.3);
  transition: border-color 0.15s;
}

.error-box .error-text a:hover {
  border-color: var(--link);
}

.loading-spinner {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 34px 20px;
  justify-content: center;
}

.loading-spinner.active {
  display: flex;
}

.loading-radar {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-radar i {
  position: relative;
  z-index: 2;
  font-size: 22px;
  color: var(--green);
  text-shadow: 0 0 12px rgba(104, 255, 148, 0.7);
  animation: radarIconPulse 1.6s ease-in-out infinite;
}

.loading-radar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--green);
  opacity: 0;
  animation: radarPing 1.8s cubic-bezier(0.2, 0.6, 0.4, 1) infinite;
}

.loading-radar-ring--delay {
  animation-delay: 0.6s;
  border-color: var(--baby-blue);
}

.loading-radar-ring--delay2 {
  animation-delay: 1.2s;
}

@keyframes radarPing {
  0% {
    transform: scale(0.35);
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(104, 255, 148, 0.25);
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
    box-shadow: 0 0 20px 6px rgba(104, 255, 148, 0);
  }
}

@keyframes radarIconPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.14);
    opacity: 1;
  }
}

.loading-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: min(94vw, 420px);
  padding: 20px 0px;
}

.loading-spinner span#loadingText {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(9.5px, 3.1vw, 12px);
  color: var(--text-dim);
  letter-spacing: 0.03em;
  line-height: 1.6;
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
  padding: 3px 4px;
}

.loading-spinner span#loadingText::-webkit-scrollbar {
  display: none;
  height: 0;
}

.loading-spinner span#loadingText i,
.loading-spinner span#loadingText strong,
.loading-spinner span#loadingText .loading-source-kind,
.loading-spinner span#loadingText .loading-dots {
  flex-shrink: 0;
  white-space: nowrap;
}

.loading-spinner span#loadingText i {
  flex-shrink: 0;
  color: var(--text-dim);
}

.loading-spinner span#loadingText i.fa-circle-check {
  color: var(--green);
}

.loading-spinner span#loadingText i.fa-triangle-exclamation {
  color: var(--yellow);
}

.loading-spinner span#loadingText strong {
  display: inline-flex;
  align-items: center;
  color: var(--baby-blue);
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 20px;
  background: var(--baby-blue-dim);
  border: 1px solid var(--baby-blue-border);
  text-shadow: 0 0 12px var(--baby-blue-glow);
  letter-spacing: 0.02em;
  animation: mechPillPulse 1.8s ease-in-out infinite;
}

@keyframes mechPillPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(174, 224, 255, 0.18);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(174, 224, 255, 0);
  }
}

.loading-dots {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
  flex-shrink: 0;
  transform: translateY(1px);
}

.loading-dots span {
  display: inline-block;
  width: 3px;
  height: 100%;
  font-size: 0;
  color: transparent;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--baby-blue) 0%, var(--green) 100%);
  box-shadow: 0 0 6px rgba(104, 255, 148, 0.4);
  transform-origin: bottom center;
  animation: barEqualize 0.9s var(--ease-snap) infinite;
}

.loading-dots span:nth-child(1) {
  animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes barEqualize {

  0%,
  100% {
    transform: scaleY(0.28);
    opacity: 0.55;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.loading-progress {
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.loading-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 10px rgba(104, 255, 148, 0.5);
  animation: loadingBarSlide 1.4s ease-in-out infinite;
}

.loading-progress-bar.determinate {
  animation: none;
  left: 0;
  background: linear-gradient(90deg, var(--green), rgba(104, 255, 148, 0.6));
  transition: width 0.35s ease;
}

.loading-source-kind {
  color: rgba(174, 224, 255, 0.55);
  font-weight: 400;
  font-size: 0.9em;
  white-space: nowrap;
}

@keyframes loadingBarSlide {
  0% {
    left: -40%;
  }

  100% {
    left: 100%;
  }
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  width: 100%;
  pointer-events: none;
}

.toast {
  background: rgba(10, 12, 10, 0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(104, 255, 148, 0.15);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.04em;
  font-family: 'JetBrains Mono', monospace;
  transform: translateX(calc(100% + 30px));
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(104, 255, 148, 0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  border-radius: 0 2px 2px 0;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success {
  border-color: rgba(104, 255, 148, 0.3);
}

.toast.success::before {
  background: var(--green);
  box-shadow: 0 0 12px rgba(104, 255, 148, 0.4);
}

.toast.success .toast-icon {
  color: var(--green);
}

.toast.success .toast-progress {
  background: linear-gradient(90deg, var(--green), rgba(104, 255, 148, 0.3));
}

.toast.error {
  border-color: rgba(255, 107, 107, 0.3);
}

.toast.error::before {
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 107, 107, 0.4);
}

.toast.error .toast-icon {
  color: var(--red);
}

.toast.error .toast-progress {
  background: linear-gradient(90deg, var(--red), rgba(255, 107, 107, 0.3));
}

.toast.info {
  border-color: rgba(255, 213, 128, 0.3);
}

.toast.info::before {
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(255, 213, 128, 0.4);
}

.toast.info .toast-icon {
  color: var(--yellow);
}

.toast.info .toast-progress {
  background: linear-gradient(90deg, var(--yellow), rgba(255, 213, 128, 0.3));
}

.toast.babyblue {
  border-color: rgba(137, 207, 240, 0.4);
}

.toast.babyblue::before {
  background: #89CFF0;
  box-shadow: 0 0 12px rgba(137, 207, 240, 0.5);
}

.toast.babyblue .toast-icon {
  color: #89CFF0;
}

.toast.babyblue .toast-progress {
  background: linear-gradient(90deg, #89CFF0, rgba(137, 207, 240, 0.3));
}

.toast-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.toast-content {
  flex: 1;
  line-height: 1.5;
}

.toast-content .toast-message {
  font-size: 12px;
  color: var(--text);
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-dimmer);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  transition: color 0.2s;
  flex-shrink: 0;
  pointer-events: auto;
}

.toast-close:hover {
  color: var(--text);
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(104, 255, 148, 0.3));
  border-radius: 0 0 0 2px;
  transition: width 0.1s linear;
  width: 100%;
}

.logo-sub {
  font-size: 15px;
  color: var(--text-dimmer);
  letter-spacing: 0.06em;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-sub a {
  color: rgba(138, 212, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.logo-sub a:hover {
  color: var(--link);
}

#siteFooter {
  padding: 32px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-dimmer);
  letter-spacing: 0.06em;
}

#siteFooter a {
  color: rgba(104, 255, 148, 0.35);
  text-decoration: none;
  transition: color 0.15s;
}

#siteFooter a:hover {
  color: var(--green);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-dot {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s step-end infinite;
  box-shadow: 0 0 6px rgba(104, 255, 148, 0.6);
}

.history-container {
  margin: 0 0 12px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
  transition: all 0.25s ease;
}

.history-container:not(.visible) {
  display: none;
}

.history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  user-select: none;
  gap: 12px;
  flex-wrap: wrap;
}

.history-header:hover {
  background: rgba(104, 255, 148, 0.03);
}

.history-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.history-header-left i:first-child {
  font-size: 14px;
  color: var(--green);
  opacity: 0.6;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.history-header-left i.rotate-icon {
  transform: rotate(90deg);
  color: var(--green);
  opacity: 1;
}

.history-header-left .label-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.history-header .badge {
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.history-header .chevron {
  font-size: 12px;
  color: var(--green);
  opacity: 0.5;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}

.history-header .chevron.open {
  transform: rotate(180deg);
  opacity: 1;
}

.history-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.history-body.open {
  max-height: 420px;
  overflow-y: auto;
}

.history-list {
  padding: 4px 0;
  border-top: 1px solid var(--border);
}

.history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: background 0.2s ease;
  gap: 14px;
}

.history-item:last-child {
  border-bottom: none;
}

.history-item:hover {
  background: rgba(104, 255, 148, 0.04);
}

.history-item .h-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.history-item .h-query {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.history-item .h-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  color: var(--text-dimmer);
  flex-wrap: wrap;
}

.history-item .h-type {
  font-size: 9px;
  font-family: 'JetBrains Mono', monospace;
  padding: 2px 10px;
  border-radius: 12px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  #siteFooter {
    flex-direction: column;
    align-items: flex-start;
  }

  .toast-container {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
    width: auto;
  }

  #page {
    padding: 16px 14px 20px;
  }

  .search-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .type-selector {
    justify-content: center;
    flex-wrap: wrap;
  }

  .search-actions {
    flex-direction: column;
  }

  .btn-search,
  .btn-clear-cache {
    width: 100%;
    justify-content: center;
  }

  .result-card {
    padding: 16px;
  }

  .result-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .disclaimer {
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px;
  }

  .disclaimer-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .result-title {
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stealers-grid {
    grid-template-columns: 1fr;
  }

  .stealer-card-details {
    grid-template-columns: 1fr;
  }

  .api-info {
    padding: 12px 14px;
    font-size: 11px;
  }

  .api-info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .result-header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .btn-extract-txt {
    padding: 8px 13px;
    font-size: 10.5px;
  }

  .history-header {
    padding: 8px 12px;
    font-size: 11px;
  }

  .history-item {
    padding: 8px 12px;
    flex-wrap: wrap;
  }

  .raw-data-button {
    padding: 10px 14px;
  }

  .raw-data-button-left span {
    font-size: 10px;
  }

  .loading-spinner {
    padding: 26px 12px;
    gap: 16px;
  }

  .loading-text-wrap {
    max-width: 100%;
    padding: 20px 0px;
  }
}

@media (max-width: 480px) {
  .loading-radar {
    width: 54px;
    height: 54px;
  }

  .loading-radar i {
    font-size: 19px;
  }

  .loading-spinner span#loadingText {
    letter-spacing: 0.02em;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .stat-card {
    padding: 9px 10px;
    gap: 8px;
  }

  .stat-icon {
    width: 26px;
    height: 26px;
  }

  .stat-value {
    font-size: 15px;
  }

  .stealer-card {
    padding: 12px;
  }

  .api-info-status {
    width: 100%;
    justify-content: space-between;
  }
}

.about-card {
  background: rgba(255, 213, 128, 0.04);
  border: 1px solid rgba(255, 213, 128, 0.25);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  border-color: rgba(255, 213, 128, 0.5);
  box-shadow: 0 0 30px rgba(255, 213, 128, 0.05);
}

.about-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 213, 128, 0.06);
  border-bottom: 1px solid rgba(255, 213, 128, 0.12);
  flex-wrap: wrap;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 14px;
  color: var(--yellow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-badge i {
  font-size: 16px;
  color: var(--yellow);
  opacity: 0.8;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(255, 213, 128, 0.1);
  border: 1px solid rgba(255, 213, 128, 0.25);
  border-radius: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.about-tag i {
  font-size: 12px;
}

.about-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-card-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.about-card-body p strong {
  color: var(--yellow);
  font-weight: 600;
}

.about-card-body p em {
  color: rgba(255, 213, 128, 0.7);
  font-style: italic;
}

.about-card-body p a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px dashed rgba(138, 212, 255, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.about-card-body p a:hover {
  border-color: var(--link);
  color: #fff;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 213, 128, 0.08);
}

.about-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.03em;
}

.about-features span i {
  font-size: 12px;
  color: var(--yellow);
  opacity: 0.7;
}


@media (max-width: 767px) {
  .about-card-header {
    padding: 10px 14px;
  }

  .about-badge {
    font-size: 12px;
  }

  .about-tag {
    font-size: 10px;
    padding: 4px 10px;
  }

  .about-card-body {
    padding: 12px 14px 14px;
  }

  .about-card-body p {
    font-size: 12px;
  }

  .about-features {
    gap: 8px 16px;
  }

  .about-features span {
    font-size: 10px;
  }
}

@media (min-width: 1024px) {
  .about-badge {
    font-size: 16px;
  }

  .about-tag {
    font-size: 12px;
    padding: 6px 18px;
  }

  .about-card-body p {
    font-size: 14px;
  }

  .about-features span {
    font-size: 12px;
  }
}

.about-card {
  background: rgba(255, 213, 128, 0.04);
  border: 1px solid rgba(255, 213, 128, 0.2);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  border-color: rgba(255, 213, 128, 0.4);
  box-shadow: 0 4px 24px rgba(255, 213, 128, 0.06);
}

.about-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 213, 128, 0.06);
  border-bottom: 1px solid rgba(255, 213, 128, 0.1);
  flex-wrap: wrap;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 13px;
  color: var(--yellow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-badge i {
  font-size: 15px;
  color: var(--yellow);
  opacity: 0.8;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(255, 213, 128, 0.1);
  border: 1px solid rgba(255, 213, 128, 0.2);
  border-radius: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.about-tag i {
  font-size: 11px;
}

.about-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-card-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.about-card-body p strong {
  color: var(--yellow);
  font-weight: 600;
}

.about-card-body p a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px dashed rgba(138, 212, 255, 0.25);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.about-card-body p a:hover {
  border-color: var(--link);
  color: #fff;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 2px;
  padding: 10px 0 6px;
  border-top: 1px solid rgba(255, 213, 128, 0.08);
}

.about-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text);
  letter-spacing: 0.02em;
  padding: 2px 0;
  transition: color 0.2s ease;
}


.about-features span i {
  font-size: 11px;
  color: var(--yellow);
  opacity: 0.7;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}


.about-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
  padding: 10px 14px;
  background: rgba(255, 213, 128, 0.03);
  border: 1px solid rgba(255, 213, 128, 0.08);
  border-radius: 6px;
  font-size: 11.5px;
  color: var(--text);
  line-height: 1.6;
}

.about-disclaimer strong {
  color: var(--yellow);
  font-weight: 600;
}

.about-disclaimer i {
  color: var(--yellow);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}

.btn-search:active,
.btn-clear-cache:active,
.btn-extract-txt:active,
.type-btn:active,
#rawCopyBtn:active {
  transition: transform 0.05s ease;
  transform: scale(0.95) !important;
}

.btn-search:focus-visible,
.btn-clear-cache:focus-visible,
.btn-extract-txt:focus-visible,
.type-btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.sound-active {
  animation: soundPulse 0.3s ease;
}

@keyframes soundPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.92);
  }

  100% {
    transform: scale(1);
  }
}

.sound-indicator {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 999;
  background: rgba(10, 12, 10, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--green);
  font-size: 16px;
  opacity: 0.5;
}

.sound-indicator:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--green-glow);
}

.sound-indicator.muted {
  color: var(--text-dimmer);
  opacity: 0.3;
}

@media (max-width: 480px) {
  .sound-indicator {
    bottom: 70px;
    right: 16px;
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .about-card-header {
    padding: 10px 14px;
  }

  .about-badge {
    font-size: 11px;
  }

  .about-tag {
    font-size: 9px;
    padding: 3px 10px;
  }

  .about-card-body {
    padding: 12px 14px 14px;
  }

  .about-card-body p {
    font-size: 12px;
  }

  .about-features {
    gap: 4px 12px;
    padding: 8px 0 4px;
  }

  .about-features span {
    font-size: 9.5px;
  }

  .about-features span i {
    font-size: 10px;
    width: 12px;
  }

  .about-disclaimer {
    font-size: 10.5px;
    padding: 8px 12px;
  }
}

@media (min-width: 1024px) {
  .about-badge {
    font-size: 15px;
  }

  .about-tag {
    font-size: 11px;
    padding: 5px 16px;
  }

  .about-card-body p {
    font-size: 14px;
  }

  .about-features span {
    font-size: 11.5px;
  }

  .about-disclaimer {
    font-size: 12.5px;
  }
}

@media (min-width: 1024px) {
  body {
    font-size: 15px;
  }

  #queryInput {
    font-size: 15px;
  }

  #queryInput::placeholder {
    font-size: 13px;
  }

  .type-btn {
    font-size: 11px;
    padding: 7px 13px;
  }

  .type-selector label {
    font-size: 10px;
  }

  .btn-search,
  .btn-clear-cache {
    font-size: 13px;
    padding: 13px 30px;
  }

  .disclaimer {
    font-size: 12.5px;
  }

  .disclaimer-footer {
    font-size: 11px;
  }

  .result-title {
    font-size: 20px;
  }

  .result-title .query-value {
    font-size: 15px;
  }

  .result-status {
    font-size: 12px;
  }

  .api-info {
    font-size: 13px;
  }

  .api-info-card-label {
    font-size: 10.5px;
  }

  .api-info-card-value {
    font-size: 13.5px;
  }

  .api-info .limit-info,
  .api-info .api-badge,
  .api-info .cache-badge {
    font-size: 12.5px;
  }

  .stat-label {
    font-size: 10px;
  }

  .stat-value {
    font-size: 20px;
  }

  .stealer-family-badge {
    font-size: 12px;
  }

  .stealer-date-badge {
    font-size: 11px;
  }

  .stealer-detail-label {
    font-size: 9px;
  }

  .stealer-detail-value {
    font-size: 12.5px;
  }

  .stealer-detail-value--path {
    font-size: 11.5px;
  }

  .stealer-tag-label {
    font-size: 9px;
  }

  .stealer-tag {
    font-size: 10.5px;
    padding: 4px 12px;
    max-width: 220px;
  }

  .av-chip {
    font-size: 11px;
    padding: 3px 11px;
  }

  .list-section-title {
    font-size: 12.5px;
  }

  .results-table {
    font-size: 12.5px;
  }

  .raw-data-button-left span {
    font-size: 12px;
  }

  .raw-data-pre {
    font-size: 12.5px;
  }

  .history-header-left .label-text {
    font-size: 12.5px;
  }

  .history-item .h-query {
    font-size: 14.5px;
  }

  .history-item .h-meta {
    font-size: 11px;
  }

  .history-item .h-type {
    font-size: 10px;
  }

  .toast {
    font-size: 13px;
    padding: 16px 22px;
  }

  .toast-content .toast-message {
    font-size: 13px;
  }

  .slogan {
    font-size: 15px;
  }

  .logo-sub {
    font-size: 16px;
  }

  #siteFooter {
    font-size: 11px;
  }
}

::selection {
  background: var(--orange-yellow-crayola);
  color: var(--smoky-black);
}

::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}

::-webkit-scrollbar-track {
  border-radius: 2em;
}

::-webkit-scrollbar-thumb {
  background-color: #2a6e3f9e;
  border-radius: 2em;
}

::-webkit-scrollbar-thumb:hover {
  background: #57f287;
}