:root {
  --tool-bg-top-left: #ffd6aa;
  --tool-bg-bottom-right: rgba(92, 157, 255, 0.18);
  --tool-bg-base-1: #f7f2ea;
  --tool-bg-base-2: #edf5f1;
  --tool-font: "Space Grotesk", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body.tool-page {
  margin: 0;
  min-height: 100vh;
  font-family: var(--tool-font);
  background:
    radial-gradient(circle at top left, var(--tool-bg-top-left) 0%, transparent 34%),
    radial-gradient(circle at bottom right, var(--tool-bg-bottom-right) 0%, transparent 30%),
    linear-gradient(135deg, var(--tool-bg-base-1) 0%, var(--tool-bg-base-2) 100%);
  color: #14302c;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.shape-one {
  width: 220px;
  height: 220px;
  background: rgba(255, 214, 170, 0.65);
  top: -60px;
  right: -40px;
}

.shape-two {
  width: 260px;
  height: 260px;
  background: rgba(92, 157, 255, 0.12);
  bottom: -70px;
  left: -50px;
}

.tools-float {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #14302c;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(15, 32, 29, 0.18);
  line-height: 1;
}

.tools-float:hover,
.tools-float:focus {
  color: #fff;
  background: #0f221f;
}
