body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b1020;
  color: #eaeaf0;
  max-width: 720px;
  margin: 40px auto;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

label {
  display: block;
  margin-bottom: 20px;
}

select,
input[type="range"] {
  width: 100%;
  margin-top: 6px;
}

span {
  font-weight: 600;
}

#result {
  background: #161b33;
  border-radius: 10px;
  padding: 16px;
  margin-top: 30px;
  line-height: 1.6;
  font-size: 1.05em;
}

strong {
  color: #9cc9ff;
}


#presets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

button {
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  background: #22284a;
  color: #eaeaf0;
  cursor: pointer;
  font-size: 0.95em;
}

button:hover {
  filter: brightness(1.1);
}

#presets button.active {
  background: #4a7dff;
  box-shadow: 0 0 0 2px rgba(74, 125, 255, 0.4);
}


.verdict.safe {
  background: linear-gradient(90deg, #4caf50, #eaffea);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.verdict.risky {
  background: linear-gradient(90deg, #ff9800, #ffe5b8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.verdict.danger {
  background: linear-gradient(90deg, #f44336, #ffafaf);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

