.character-page {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #f0f8ff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.character-page h1 {
  color: #3366cc;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.character-img {
  width: 300px;
  max-width: 90%;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.character-page p {
  font-size: 1.2em;
  color: #333;
  line-height: 1.8;
  direction: rtl;
  text-align: justify;
}
footer {
  display: flex;
  justify-content: center; /* ناوەڕاست کردن */
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 18px;
  padding: 0 20px;
}

footer a {
  color: #ff7f00;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 8px;
  background-color: #fff;
  border: 2px solid #ff7f00;
  transition: all 0.3s ease;
}

footer a:hover {
  background-color: #ff7f00;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

footer a:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 127, 0, 0.5);
}