/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #07101e;
  --bg-panel:   #0c1d32;
  --bg-card:    #10253d;
  --accent:     #18d8ff;
  --accent2:    #00ffb3;
  --text:       #cce8fa;
  --text-muted: #6a92b8;
  --danger:     #ff4d6a;
  --border:     #1e3d5c;
  --fish-1:     #18d8ff;
  --fish-2:     #00ffb3;
  --fish-3:     #ffb020;
  --fish-4:     #ff5577;
  --font:         'DM Sans', system-ui, sans-serif;
  --font-heading: 'Silkscreen', monospace;
  --font-mono:    'Cascadia Code', 'Fira Code', monospace;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2 { font-family: var(--font-heading); letter-spacing: 0.03em; line-height: 1.3; }
h1 { font-size: 1.5rem; }
h2 { font-size: 1rem; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
code { font-family: var(--font-mono); font-size: 0.85em; color: var(--accent2); }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 52px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
}
.nav__brand { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; color: var(--accent); letter-spacing: 0.04em; }
.nav__links a { margin-left: 1.5rem; color: var(--text-muted); font-size: 0.9rem; }
.nav__links a:hover { color: var(--text); }

/* ── Main / Footer ────────────────────────────────────────────────────────── */
.main { flex: 1; max-width: 1100px; margin: 0 auto; padding: 2.5rem 1.5rem; width: 100%; }
.footer { text-align: center; padding: 1.5rem; color: var(--text-muted); font-size: 0.8rem; border-top: 1px solid var(--border); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}
.btn:hover { opacity: 0.85; text-decoration: none; }
.btn--primary  { background: var(--accent);  color: var(--bg); }
.btn--secondary { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn--full { width: 100%; text-align: center; padding: 0.75rem; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  text-align: center;
  padding: 5rem 1rem 4rem;
  overflow: hidden;
  margin: -2.5rem -1.5rem 2.5rem;
  background: linear-gradient(180deg, #071e38 0%, #07101e 100%);
  border-bottom: 1px solid var(--border);
}
/* Fish swim behind all hero content */
.hero__fish-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__fish-bg .fish {
  position: absolute;
  width: 24px; height: 24px;
  opacity: 0.28;
  pointer-events: none;
}
/* Ensure text content floats above fish */
.hero > *:not(.hero__fish-bg) { position: relative; z-index: 1; }
.hero__title { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--accent); letter-spacing: 0.04em; margin-bottom: 0.75rem; text-shadow: 0 0 30px rgba(24,216,255,0.4), 0 0 60px rgba(24,216,255,0.15); }
.hero__sub { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 1rem; }
.hero__count { font-size: 1rem; margin-bottom: 2rem; }
.counter { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--accent2); }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__launched { margin-top: 1.25rem; font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* ── Notice ───────────────────────────────────────────────────────────────── */
.notice--human {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #001a14 0%, #002a1e 50%, #001a14 100%);
  border: 1px solid rgba(0, 255, 179, 0.35);
  border-left: 3px solid #00ffb3;
  padding: 1rem 1.4rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
  color: #a0ffe0;
  font-size: 0.9rem;
  box-shadow:
    0 0 18px rgba(0, 255, 179, 0.1),
    0 0 40px rgba(0, 255, 179, 0.04),
    inset 0 0 24px rgba(0, 255, 179, 0.04);
}

/* Holographic shimmer sweep */
.notice--human::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(0, 255, 179, 0.07) 45%,
    rgba(24, 216, 255, 0.1) 50%,
    rgba(170, 85, 255, 0.06) 55%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: holo-sweep 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes holo-sweep {
  0%   { background-position: 200% 0; }
  60%  { background-position: -50% 0; }
  100% { background-position: -50% 0; }
}

/* Soft pulsing border glow */
.notice--human::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 179, 0.2);
  animation: holo-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes holo-pulse {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 8px rgba(0, 255, 179, 0.15); }
  50%       { opacity: 1;   box-shadow: 0 0 20px rgba(0, 255, 179, 0.3); }
}

.notice--human strong { color: #00ffb3; }
.notice--human a { color: #18d8ff; }

/* ── About section ────────────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 680px) { .about { grid-template-columns: 1fr; } }
.about__col h2 { color: var(--accent2); margin-bottom: 0.75rem; font-size: 1.1rem; }
.about__col p { color: var(--text-muted); margin-bottom: 0.75rem; }
.feature-list { list-style: none; }
.feature-list li { padding: 0.3rem 0; padding-left: 1.2rem; position: relative; color: var(--text-muted); }
.feature-list li::before { content: '▸'; position: absolute; left: 0; color: var(--accent2); }

/* ── Classification section ───────────────────────────────────────────────── */
.classification { margin-bottom: 2.5rem; }
.classification h2 { font-size: 1.1rem; color: var(--accent2); margin-bottom: 1.25rem; }

.classification__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 720px) { .classification__grid { grid-template-columns: 1fr; } }

.classify-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
}

.classify-card__label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2em 0.7em;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 0.9rem;
}
.classify-card__label--bot   { background: rgba(255,77,106,0.15); color: var(--danger); border: 1px solid rgba(255,77,106,0.3); }
.classify-card__label--human { background: rgba(255,215,0,0.1);   color: #ffd700;       border: 1px solid rgba(255,215,0,0.25); }

.classify-list { list-style: none; padding: 0; }
.classify-list li {
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.classify-list li::before { content: '▸'; position: absolute; left: 0; color: var(--text-muted); opacity: 0.5; }

.classify-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  line-height: 1.6;
}

/* ── Fingerprint explainer section ────────────────────────────────────────── */
.fingerprints { margin-bottom: 2.5rem; }
.fingerprints h2 { font-size: 1.1rem; color: var(--accent2); margin-bottom: 1.25rem; }

.fp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 720px) { .fp-grid { grid-template-columns: 1fr; } }

.fp-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
}
.fp-card h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.fp-tag {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.1em 0.5em;
  letter-spacing: 0;
}
.fp-eli5 {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.fp-detail {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
}

/* ── Research ─────────────────────────────────────────────────────────────── */
.research { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem 2rem; }
.research h2 { margin-bottom: 1rem; font-size: 1.1rem; color: var(--accent2); }
.research-list { padding-left: 1.5rem; color: var(--text-muted); }
.research-list li { margin-bottom: 0.4rem; }
.research p { margin-top: 1rem; color: var(--text-muted); font-size: 0.9rem; }

/* ── Form ─────────────────────────────────────────────────────────────────── */
.form-section { max-width: 480px; margin: 0 auto; }
.form-section h1 { margin-bottom: 0.5rem; font-size: 1.6rem; }
.form-intro { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }
.form { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 8px; padding: 1.8rem; }
.form__field { margin-bottom: 1.2rem; }
.form__field label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.form__field input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text);
  padding: 0.55rem 0.8rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
}
.form__field input:focus { border-color: var(--accent); }
.form__field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text);
  padding: 0.55rem 0.8rem;
  font-size: 0.95rem;
  font-family: var(--font);
  resize: vertical;
  outline: none;
  transition: border-color 0.15s;
}
.form__field textarea:focus { border-color: var(--accent); }
.req { color: var(--danger); }
.opt { color: var(--text-muted); font-size: 0.8em; }
.form-footer { margin-top: 1rem; font-size: 0.78rem; color: var(--text-muted); text-align: center; }
.alert--error { background: #2a0010; border: 1px solid var(--danger); border-radius: 5px; padding: 0.7rem 1rem; color: var(--danger); margin-bottom: 1rem; font-size: 0.9rem; }

/* ── Aquarium header ──────────────────────────────────────────────────────── */
.aquarium-header { text-align: center; margin-bottom: 1.5rem; }
.aquarium-header h1 { font-size: 1.6rem; color: var(--accent); text-shadow: 0 0 20px rgba(24,216,255,0.3); }
.aquarium-header p { color: var(--text-muted); margin-top: 0.3rem; }
.live-indicator { margin-top: 0.5rem; font-size: 0.9rem; }
.pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent2);
  animation: pulse 1.5s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 4px;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

/* ── The Tank ─────────────────────────────────────────────────────────────── */
.tank {
  position: relative;
  width: 100%;
  height: 520px;
  background: linear-gradient(180deg, #071e38 0%, #0b2d50 55%, #0f3a68 100%);
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

/* Pixel bubbles */
.bubble {
  position: absolute;
  bottom: 40px;
  image-rendering: pixelated;
  animation: rise 6s ease-in infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) scale(1); opacity: 0.7; }
  100% { transform: translateY(-510px) scale(0.5); opacity: 0; }
}

/* Fish - position and movement driven entirely by JS */
.fish {
  position: absolute;
  width: 32px; height: 32px;
  cursor: pointer;
  /* Default color for fish with no known type */
  color: #18d8ff;
}

/* Type-based colors - each bot category gets a consistent hue */
.fish[data-type="c2"]           { color: #ff0055; }
.fish[data-type="malware"]      { color: #cc0000; }
.fish[data-type="ua_spoof"]     { color: #ff2288; }
.fish[data-type="scanner"]      { color: #ff4d6a; }
.fish[data-type="curl"]         { color: #ffb020; }
.fish[data-type="python"]       { color: #4ba3d3; }
.fish[data-type="go"]           { color: #00ffb3; }
.fish[data-type="java"]         { color: #5382a1; }
.fish[data-type="ruby"]         { color: #cc342d; }
.fish[data-type="php"]          { color: #8892be; }
.fish[data-type="node"]         { color: #6cc24a; }
.fish[data-type="webcrawler"]   { color: #aa55ff; }
.fish[data-type="browser"]      { color: #ffd700; }
.fish[data-type="app"]          { color: #e0b0ff; }
.fish[data-type="tool"]         { color: #a0a0a0; }
.fish[data-type="vpn"]          { color: #20c0a0; }
.fish[data-type="iot"]          { color: #ff8c69; }
.fish[data-type="cloud_script"] { color: #ff7c00; }
.fish[data-type="no_ua"]        { color: #6a92b8; }
.fish[data-type="unknown"]      { color: #18d8ff; }

.fish__sprite {
  display: block;
  filter: drop-shadow(0 0 5px currentColor);
}

/* Selected fish highlight */
.fish--selected .fish__sprite {
  filter: drop-shadow(0 0 6px currentColor) drop-shadow(0 0 2px #fff);
}

/* Global tooltip - fixed position so it escapes the tank's overflow:hidden */
.fish-global-tooltip {
  display: none;
  position: fixed;
  z-index: 9999;
  background: rgba(7, 16, 30, 0.97);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 0.75rem 1.1rem;
  font-size: 0.78rem;
  white-space: nowrap;
  color: var(--text);
  line-height: 1.85;
  box-shadow: 0 0 24px rgba(24, 216, 255, 0.18), 0 4px 16px rgba(0,0,0,0.6);
  pointer-events: auto;
}
.fish-global-tooltip strong { color: var(--accent); font-size: 0.88rem; }
.fish-global-tooltip code   { color: var(--accent2); }
.fish-global-tooltip .tt-close {
  float: right;
  margin-left: 1rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-muted);
  font-size: 0.7rem;
  cursor: pointer;
  padding: 0 5px;
  line-height: 1.4;
}
.fish-global-tooltip .tt-close:hover { color: var(--text); border-color: var(--accent); }

/* Tank floor / plants */
.tank__floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28px;
  background: linear-gradient(0deg, #060f0a, transparent);
}
.tank__plants { position: absolute; bottom: 0; width: 100%; }
.plant {
  position: absolute;
  bottom: 0;
  image-rendering: pixelated;
  animation: sway 3s ease-in-out infinite alternate;
  transform-origin: bottom center;
}
.plant--1 { left: 8%;  animation-delay: 0s; }
.plant--2 { left: 45%; animation-delay: 1s; }
.plant--3 { left: 80%; animation-delay: 0.5s; }
@keyframes sway { 0% { transform: rotate(-6deg); } 100% { transform: rotate(6deg); } }

/* ── Bot table ────────────────────────────────────────────────────────────── */
.bot-table-section h2 { margin-bottom: 1rem; font-size: 1.1rem; color: var(--accent2); }
.bot-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.bot-table th, .bot-table td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.bot-table th { color: var(--text-muted); font-weight: 600; background: var(--bg-panel); }
.bot-table .col-fish { width: 28px; padding: 0.3rem 0.4rem 0.3rem 0.75rem; }
.ja4t-cell { font-size: 0.72rem; color: var(--accent2); letter-spacing: 0; }
.bot-row { cursor: pointer; }
.bot-table tr:hover td { background: var(--bg-card); }
.row--new      td { background: rgba(0, 200, 255, 0.07); transition: background 2s; }
.row--selected td { background: rgba(24, 216, 255, 0.13) !important; }
.row--selected    { outline: none; }
.row--selected td:first-child { border-left: 3px solid var(--accent); }

/* ── Bot type badge ───────────────────────────────────────────────────────── */
.type-badge {
  display: inline-block;
  padding: 0.15em 0.55em;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  border: 1px solid currentColor;
  white-space: nowrap;
}

/* ── Stats page ───────────────────────────────────────────────────────────── */
.stats-header { margin-bottom: 2rem; }
.stats-header h1 { font-size: 1.6rem; color: var(--accent); text-shadow: 0 0 20px rgba(24,216,255,0.3); }
.stats-header p  { color: var(--text-muted); margin-top: 0.3rem; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 780px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.stat-card--wide { grid-column: 1 / -1; }
.stat-card h2 { font-size: 0.95rem; color: var(--accent2); margin-bottom: 1rem; font-weight: 600; }

/* ── Nav user indicator ───────────────────────────────────────────────────── */
.nav__user { display: inline-flex; align-items: center; gap: 0.35rem; }
.nav__fish  { font-size: 0.7rem; line-height: 1; }

/* ── Profile page ─────────────────────────────────────────────────────────── */
.profile { max-width: 820px; margin: 0 auto; }

.profile__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.profile__fish { flex-shrink: 0; filter: drop-shadow(0 0 8px currentColor); }
.profile__username { font-size: 1.8rem; color: var(--accent); margin-bottom: 0.3rem; }
.profile__since { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.4rem; }

.profile__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 680px) { .profile__body { grid-template-columns: 1fr; } }

.profile__bio-section h2,
.profile__details h2 {
  font-size: 0.95rem;
  color: var(--accent2);
  margin-bottom: 1rem;
  font-weight: 600;
}

.profile__bio-input {
  width: 100%;
  min-height: 140px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text);
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
  font-family: var(--font);
  resize: vertical;
  outline: none;
  transition: border-color 0.15s;
  line-height: 1.5;
}
.profile__bio-input:focus { border-color: var(--accent); }
.profile__bio-hint { color: var(--text-muted); font-size: 0.75rem; margin: 0.3rem 0 0.75rem; }

.profile__table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.profile__table th,
.profile__table td { padding: 0.45rem 0.6rem; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.profile__table th { color: var(--text-muted); font-weight: 500; width: 38%; white-space: nowrap; }
.profile__ua { word-break: break-all; font-size: 0.75rem; color: var(--text-muted); }

/* ── Embed card ───────────────────────────────────────────────────────────── */
.embed-card__desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.25rem; }

.embed-card__body {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.embed-card__preview {
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 24px rgba(24,216,255,0.1);
}

.embed-card__code-wrap {
  flex: 1;
  min-width: 260px;
}

.embed-card__label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.embed-card__pre {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent2);
  white-space: pre-wrap;
  word-break: break-all;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.embed-card__copy { font-size: 0.85rem; padding: 0.45rem 1.1rem; }

/* ── Remove data page ─────────────────────────────────────────────────────── */
.btn--danger {
  background: var(--danger);
  color: #fff;
}
.btn--danger:hover { opacity: 0.85; }

.removal-page { max-width: 600px; margin: 0 auto; }
.removal-page h1 { font-size: 1.6rem; color: var(--accent); margin-bottom: 1.5rem; }

.removal-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}
.removal-card--success { border-color: var(--accent2); }
.removal-card--error   { border-color: var(--danger); }

.removal-card__icon {
  font-size: 2rem;
  color: var(--accent2);
  margin-bottom: 0.5rem;
}
.removal-card__icon--err { color: var(--danger); }
.removal-card h2 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.removal-card p  { color: var(--text-muted); margin-bottom: 0.6rem; line-height: 1.65; }
.removal-card__note { font-size: 0.82rem; }

.removal-reasons {
  list-style: none;
  margin: 0.5rem 0 0.75rem;
  padding: 0;
}
.removal-reasons li {
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.removal-reasons li::before { content: '·'; position: absolute; left: 0.3rem; color: var(--danger); }

.removal-intro { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.65; }

.removal-ip-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.65rem 1rem;
  margin-bottom: 1.25rem;
}
.removal-ip-box__label { font-size: 0.78rem; color: var(--text-muted); white-space: nowrap; }
.removal-ip-box__addr  { font-size: 0.95rem; color: var(--accent); }

.removal-none  { color: var(--text-muted); font-style: italic; }
.removal-count { margin-bottom: 1rem; }
.removal-count__n { font-family: var(--font-heading); font-size: 1.6rem; color: var(--danger); }

.removal-proof {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(24,216,255,0.04);
  border-left: 3px solid var(--border);
  padding: 0.6rem 0.9rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.removal-form { display: flex; flex-direction: column; gap: 1rem; }
.removal-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
}
.removal-form__check input { margin-top: 3px; flex-shrink: 0; accent-color: var(--danger); }
.removal-form__submit { align-self: flex-start; }

.removal-footer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}
