body {
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
  color: #111;
  margin: 0;
  padding: 20px;
}

.character-profile {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.character-profile img {
  width: 300px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.character-profile h1 {
  color: #0066cc;
  font-size: 2.5em;
  margin-bottom: 10px;
}

.character-profile p {
  font-size: 1.2em;
  line-height: 1.6;
}
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);
}