body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f1115;
  color: #e8e8e8;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

header {
  padding: 60px 0 30px;
  border-bottom: 1px solid #222;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  color: #a0a0a0;
  max-width: 700px;
}

.cta-personality {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 18px;
  background: #4c7dff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.cta-personality:hover {
  background: #3a66dd;
}

.seo-block {
  margin-top: 40px;
}

.tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags li {
  background: #1b1f2a;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  color: #bdbdbd;
}

.tools {
  margin-top: 50px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.card {
  display: block;
  padding: 16px;
  background: #161a22;
  border: 1px solid #222;
  border-radius: 10px;
  text-decoration: none;
  color: #e8e8e8;
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #4c7dff;
}

.seo-text {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #222;
  color: #bdbdbd;
}

.footer {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid #222;
  color: #666;
  text-align: center;
}

.copy-btn {
  display: inline-block;
  margin: 15px 0;
  padding: 12px 16px;
  background: #4c7dff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.copy-btn:hover {
  background: #3a66dd;
  transform: translateY(-2px);
}

.copy-btn:active {
  transform: translateY(0);
}

.copy-btn:focus {
  outline: 2px solid #6f93ff;
  outline-offset: 2px;
}

