
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f0f9ff;
  color: #333;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  background: #0284c7;
  color: white;
}

.anagram-box {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  text-align: center;
}

.anagram-box input {
  width: 90%;
  padding: 0.6rem;
  margin: 0.5rem 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.filters input {
  width: 45%;
  margin: 0.25rem 2%;
}

button#searchBtn {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  background: #0284c7;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button#searchBtn:hover {
  background: #0369a1;
}

#results {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.copy-btn {
  margin-left: 8px;
  font-size: 0.9rem;
  padding: 2px 6px;
  background: #0284c7;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.copy-btn:hover {
  background: #0369a1;
}

.seo-content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-size: 1rem;
  line-height: 1.6;
}

.seo-content h2, .seo-content h3 {
  color: #0284c7;
  margin-top: 1.5rem;
}

.seo-content ul {
  padding-left: 1.2rem;
  list-style: disc;
}
.faq-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}

.faq-question {
  font-size: 1.1rem;
  cursor: pointer;
  color: #0284c7;
  position: relative;
  padding-right: 1.5rem;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: bold;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin-top: 0.5rem;
  color: #333;
}
