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

.character-page h1 {
  color: #ff6600;
  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);
}
.characterTallImg:hover {
  transform: scale(1.1); /* کێشاندنی وێنە بەرەو پەڕەی گەورەتر */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* زیادکردنی شادو بەرەوپێش */
}

/* ستایل بۆ وێنەی گۆن بە شێوەی نێنی */
img {
  max-width: 350px; /* زیادکردنی گەورەی وێنە بەرەو 350px */
  height: auto; /* پاراستنی نسبتەکان وەک هەریمەکان */
  border-radius: 10px; /* بە شێوەی سەرەکی */
  margin: 15px; /* فاصلەی نێوان وێنەکان */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* بەرەوپێش کەرتاندنی شێوە */
}

img:hover {
  transform: scale(1.1); /* کێشاندنی وێنە بەرەو پەڕەی گەورەتر */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* زیادکردنی شادو بەرەوپێش */
}

.manga-list p {
  font-size: 15px;
  margin-bottom: 9px;
  color: #333;
  font-weight: bold;
  display: flex;
  align-items: center;
}

/* =============================================
   کۆدی نوێ - فۆنتە تایبەتەکان بۆ هەر بەشێک
   ============================================= */

/* یەکەم: فۆنتەکانت دیاری بکە */
@font-face {
  font-family: 'gon';
  src: url('../../fonts/K24KurdishBold-Bold.ttf') format('truetype');
}
.character-page p {
  font-family: 'gon', 'Segoe UI', sans-serif !important;
} 