.tools-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  font-size: 16px;
}

.tools-page h1 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--text);
  text-align: center;
}

.tools-page .intro {
  text-align: center;
  font-size: 18px;
  color: #bbb;
  margin-bottom: 40px;
  line-height: 1.6;
}

.tool-category {
  margin-bottom: 40px;
  padding: 20px;
  background: var(--content);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.tool-category h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--link);
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.tool-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tool-list li {
  margin-bottom: 16px;
  padding: 12px;
  border-left: 4px solid var(--hover);
  background: #1e1e1e;
  border-radius: 8px;
  transition: background 0.2s;
}

.tool-list li:hover {
  background: #252525;
}

.tool-list a {
  color: var(--link);
  font-size: 18px;
  text-decoration: none;
}

.tool-list a:hover {
  text-decoration: underline;
}

.tool-list .desc {
  display: block;
  font-size: 14px;
  color: #aaa;
  margin-top: 4px;
}

.tools-footer {
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
  color: #888;
}
