
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap');

:root {
  --primary-color: #ffffff;
  --primary-dark: #f8f9fa;
  --primary-light: #e9ecef;
  --accent-color: #27ae60; /* تغيير من الأزرق إلى الأخضر */
  --text-color: #000000;
  --bg-light: #fafafa;
  --card-border: #e0e0e0;
  --region-bg: #f0f0f0;
}

/* الوضع الليلي */
body.dark-mode {
  --primary-color: #000000;
  --primary-dark: #111111;
  --primary-light: #1a1a1a;
  --accent-color: #2ecc71;
  --text-color: #ffffff;
  --bg-light: #000000;
  --card-border: #444444;
  --region-bg: #1a1a1a;
}

body.dark-mode {
  background-color: var(--bg-light);
  color: var(--text-color);
}

/* تنسيقات الترقيم - مطابقة للصفحات الثابتة */
.pagination button {
  background: var(--primary-color); /* تم التعديل من #fff */
  color: var(--text-color);
  border: 1px solid #ddd;
  padding: 3px 7px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  min-height: 26px;
  text-decoration: none;
  font-family: inherit;
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination button:not(:disabled):hover {
  background: var(--primary-dark); /* تم التعديل من #f8f9fa */
}

.pagination button.active {
  background: var(--accent-color);
  color: #fff;
  border-color: transparent;
}

/* ===== الهيدر الجديد المحسن ===== */
.site-header {
  width: 100%;
  background: var(--primary-color);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  margin-bottom: 0;
  position: relative;
  z-index: 100;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.header-top {
  background: var(--primary-dark);
  padding: 6px 0;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
}

.header-top-links {
  display: flex;
  gap: 18px;
  font-weight: 500;
  font-size: 12px;
}

.header-top-links a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-top-links a:hover {
  color: var(--accent-color);
}

.theme-toggle {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 16px;
  padding: 5px;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  color: var(--accent-color);
  transform: rotate(15deg);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  background: var(--primary-color);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  gap: 15px;
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
}

.site-logo {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.header-center {
  flex: 1;
  max-width: 600px;
  margin: 0 20px;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* زر القائمة الجانبية - يظهر على الجوال فقط */
.sidebar-toggle {
  display: none; /* افتراضياً مخفي */
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  font-size: 24px;
  padding: 5px;
  transition: all 0.3s ease;
}

.sidebar-toggle:hover {
  color: var(--accent-color);
}

/* تنسيق حاوية البحث والفلترة الجديدة */
.search-and-filter-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* زر الفلترة - يظهر على جميع الأجهزة */
.filter-toggle {
  background: none;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.filter-toggle:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

/* استجابة الشاشات الصغيرة */
@media (max-width: 768px) {
  .header-main {
    padding: 8px 12px;
    gap: 8px;
  }

  .site-logo {
    width: 120px; /* تصغير اللوجو على الجوال */
  }

  .header-center {
    margin: 0;
    flex: 1;
  }

  /* إظهار زر القائمة الجانبية على الجوال */
  .sidebar-toggle {
    display: block;
  }

  /* إخفاء شريط التصنيفات على الجوال */
  .category-nav {
    display: none !important;
  }

  /* تعديل تنسيق البحث على الجوال */
  .search-container-header {
    flex: 1;
  }

  /* إخفاء نص "Filter" على الجوال */
  .filter-text {
    display: none;
  }

  /* تعديل حجم زر الفلترة على الجوال */
  .filter-toggle {
    padding: 6px 8px;
  }
}

/* تنسيقات القائمة الجانبية (Sidebar) */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px; /* إخفاء القائمة خارج الشاشة */
  width: 280px;
  height: 100%;
  background: #2d2d2d; /* لون خلفية مشابه للصورة المرفقة */
  color: #ffffff;
  z-index: 1001;
  box-shadow: -2px 0 5px rgba(0,0,0,0.5);
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sidebar.open {
  right: 0; /* إظهار القائمة */
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.sidebar-overlay.visible {
  display: block;
  opacity: 1;
}

.sidebar-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
  width: 150px; /* حجم مناسب للوجو */
  height: auto;
  filter: brightness(0) invert(1); /* لجعل اللوجو أبيض إذا كان أسود */
}

.sidebar-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

.sidebar-nav {
  padding: 10px 0;
  flex-grow: 1;
}

.nav-link-item {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.nav-link-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-link-item.active {
  color: var(--accent-color);
}

.nav-link-item i {
  margin-right: 10px;
}

.top-home-link {
  font-weight: 700;
}

.separator {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1); /* خط فاصل رفيع */
  margin: 0 20px;
}

/* تنسيقات أيقونات التواصل الاجتماعي */
.sidebar-social {
  padding: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-social a {
  color: #ffffff;
  font-size: 24px;
  transition: color 0.2s ease;
}

.sidebar-social a:hover {
  color: var(--accent-color);
}

/* ألوان الأيقونات الأصلية */
.sidebar-social a[aria-label="Telegram"] {
  color: #0088cc;
}

.sidebar-social a[aria-label="YouTube"] {
  color: #ff0000;
}

.search-container-header {
  display: flex;
  align-items: center;
  background: var(--primary-light);
  border-radius: 25px;
  padding: 6px;
  border: 1px solid var(--card-border);
  width: 100%;
  transition: all 0.3s ease;
}

.search-container-header:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.1);
}

.search-input-header {
  border: none;
  background: transparent;
  padding: 6px 15px;
  font-size: 14px;
  color: var(--text-color);
  outline: none;
  width: 100%;
  flex: 1;
}

.search-btn-header {
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.search-btn-header:hover {
  background: #219a52;
  transform: scale(1.05);
}

/* شريط التصنيفات - يظهر فقط على الكمبيوتر */
.category-nav {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 10px 20px;
  border-top: 1px solid var(--card-border);
  background: var(--primary-color);
  white-space: nowrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.category-nav::-webkit-scrollbar {
  height: 3px;
}

.category-nav::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
}

.category-nav::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
}

.category-nav .nav-link {
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
  color: #666;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  border: 1px solid transparent;
}

.category-nav .nav-link:hover,
.category-nav .nav-link.active {
  background: var(--primary-dark);
  color: var(--accent-color);
  border-color: var(--card-border);
}

.category-nav .nav-link.active {
  background: var(--primary-dark);
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  box-shadow: 0 2px 4px rgba(39, 174, 96, 0.1);
}

/* نافذة الفلتر المحسنة */
.filter-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.filter-modal.show {
  display: flex;
}

.filter-modal-content {
  background: var(--primary-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--card-border);
}

.filter-header h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-header h3 i {
  color: var(--accent-color);
}

.filter-close {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 18px;
  padding: 5px;
  transition: all 0.3s ease;
}

.filter-close:hover {
  color: var(--accent-color);
}

/* تحسينات نظام التصفية الجديد */
.filter-sections {
  padding: 0 20px;
  max-height: 60vh;
  overflow-y: auto;
}

.filter-section {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 15px;
}

.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.filter-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
  padding: 10px 0;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.filter-section-header:hover {
  background-color: var(--primary-light);
}

.filter-section-header h4 {
  margin: 0;
  font-size: 16px;
  color: var(--text-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-section-header h4 i {
  color: var(--accent-color);
  font-size: 14px;
}

.section-arrow {
  color: #666;
  transition: transform 0.3s ease;
  font-size: 12px;
}

.section-arrow.rotated {
  transform: rotate(180deg);
}

.filter-section-content {
  display: none;
  animation: slideDown 0.3s ease;
  padding: 10px 0;
}

.filter-section-content.show {
  display: block;
}

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

.filter-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* منصات البلايستيشن */
.platform-option {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.platform-option:hover {
  border-color: var(--accent-color);
  background: rgba(39, 174, 96, 0.05);
}

.platform-option .option-text {
  margin-left: 8px;
  font-weight: 500;
}

/* خيارات الترتيب */
.sort-option {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sort-option:hover {
  border-color: var(--accent-color);
  background: rgba(39, 174, 96, 0.05);
}

/* التصفية المتقدمة */
.filter-subsection {
  margin-bottom: 20px;
  padding: 15px;
  background: var(--primary-light);
  border-radius: 8px;
}

.filter-subsection h5 {
  margin: 0 0 12px 0;
  font-size: 14px;
  color: var(--text-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-subsection h5 i {
  color: var(--accent-color);
  font-size: 12px;
}

/* تصفية التقييم */
.rating-filter {
  padding: 10px 0;
}

.stars-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.star-option {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.star-option:hover {
  border-color: var(--accent-color);
  background: rgba(39, 174, 96, 0.05);
}

.star-option input[type="radio"]:checked + .stars + .rating-text {
  color: var(--accent-color);
  font-weight: 600;
}

.stars {
  margin-right: 10px;
}

.stars i {
  color: #ddd;
  font-size: 12px;
  margin: 0 1px;
}

.stars i.active {
  color: #ffc107;
}

.rating-text {
  font-size: 13px;
  font-weight: 500;
}

/* أنواع الألعاب - تخطيط أفقي جديد */
.genre-filters-horizontal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.genre-row {
  display: flex;
  gap: 10px;
}

.genre-row .filter-option {
  flex: 1;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.genre-row .filter-option:hover {
  border-color: var(--accent-color);
  background: rgba(39, 174, 96, 0.05);
}

.filter-options {
  padding: 20px;
}

.filter-option {
  display: flex;
  align-items: center;
  padding: 12px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--card-border);
}

.filter-option:last-child {
  border-bottom: none;
}

.filter-option:hover {
  color: var(--accent-color);
}

.filter-option input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--card-border);
  border-radius: 3px;
  margin-right: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.filter-option input[type="checkbox"]:checked + .checkmark {
  border-color: var(--accent-color);
  background: var(--accent-color);
}

.filter-option input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* زر الراديو المخصص */
.filter-option input[type="radio"] + .checkmark.radio {
  border-radius: 50%;
}

.filter-option input[type="radio"]:checked + .checkmark.radio {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.filter-option input[type="radio"]:checked + .checkmark.radio::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

.filter-actions {
  display: flex;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid var(--card-border);
}

.filter-reset, .filter-apply {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.filter-reset {
  background: var(--primary-light);
  color: var(--text-color);
  border: 1px solid var(--card-border);
}

.filter-reset:hover {
  background: var(--card-border);
}

.filter-apply {
  background: var(--accent-color);
  color: white;
}

.filter-apply:hover {
  background: #219a52;
}

/* تحسينات الاستجابة */
@media (max-width: 768px) {
  .filter-options-grid {
    grid-template-columns: 1fr;
  }
  
  .genre-filters-horizontal {
    grid-template-columns: 1fr;
  }
  
  .filter-section-header {
    padding: 10px 0;
  }
  
  .filter-subsection {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .filter-modal-content {
    width: 95%;
    margin: 10px;
  }
  
  .filter-sections {
    padding: 0 15px;
  }
}

/* تنسيقات شريط الفلترة المطبقة - متعدد الفلاتر */
.filter-applied-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: var(--primary-color);
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 0;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-applied-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 500;
}

.filter-value {
  background: var(--accent-color);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.remove-filter {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  line-height: 1;
  margin-right: -5px;
  margin-left: 2px;
}

.remove-filter:hover {
  color: #ffcccc;
}

.clear-filter-btn {
  background: var(--primary-light);
  color: var(--text-color);
  border: 1px solid var(--card-border);
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.clear-filter-btn:hover {
  background: var(--card-border);
}

/* تنسيقات نتائج البحث */
.search-results-header {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--card-border);
}

.search-results-header h2 {
  font-size: 24px;
  color: var(--text-color);
  margin-bottom: 8px;
  font-weight: 700;
}

.search-results-header p {
  color: #666;
  font-size: 14px;
}

/* تحسين تنسيقات عدم وجود نتائج */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 20px;
  color: #666;
  background: var(--primary-light);
  border-radius: 8px;
  margin: 20px 0;
}

.no-results i {
  font-size: 48px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.no-results h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.no-results p {
  font-size: 14px;
  margin-bottom: 20px;
}

.clear-search-btn {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.clear-search-btn:hover {
  background: #219a52;
}

/* تحديث تنسيقات نافذة الفلتر لإضافة الخيارات الجديدة */
.filter-options {
  max-height: 400px;
  overflow-y: auto;
}

/* تحسين التجاوب */
@media (max-width: 768px) {
  .filter-applied-bar {
    padding: 10px 15px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .search-results-header h2 {
    font-size: 20px;
  }
  
  .search-results-header {
    padding: 15px 10px;
  }
  
  .no-results {
    padding: 30px 15px;
  }
}

/* بقية التنسيقات */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  height: 100%;
  font-size: 14px;
}

body {
  background-color: var(--bg-light);
  color: var(--text-color);
  font-family: 'Tajawal', sans-serif;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}

/* === تنسيقات البطاقات === */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px 12px;
  max-width: 1400px;
  margin: 0 auto;
}

.game-card {
  background: var(--primary-color);
  border: 1px solid var(--card-border);
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.game-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border-color: var(--accent-color);
}

.game-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  border-radius: 3px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.game-title {
  color: var(--text-color);
  font-weight: bold;
  font-size: 12px;
  line-height: 1.4;
  height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: auto;
}

.game-badges {
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px;
  z-index: 2;
}

.game-translation {
  background: #4caf50;
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 11px;
  display: inline-block;
}

.game-size {
  background: var(--region-bg);
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 11px;
  display: inline-block;
  margin-left: 5px;
  color: var(--text-color) !important;
}

/* تعديل تنسيق معلومات اللعبة لاستيعاب الكونسول */
.game-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7px;
  font-size: 11px;
  color: #666;
}

.game-info > div {
  flex: 1;
  text-align: center;
}

.download-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.game-console {
  font-size: 11px;
  color: #666;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.rating i {
  color: #ffc107;
  font-size: 9px;
}

.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 35px 18px;
  color: #666;
  font-size: 15px;
  background: var(--primary-light);
  border-radius: 7px;
}

/* Enhanced and compact pagination */
.pagination-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 18px 0;
  gap: 8px;
}

.pagination-info {
  color: #666;
  font-size: 11px;
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  flex-wrap: wrap;
  max-width: 100%;
}

.pagination a {
  background: var(--primary-color);
  color: var(--text-color);
  border: 1px solid var(--card-border);
  padding: 3px 7px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  min-height: 26px;
  text-decoration: none;
}

.pagination a.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination a:hover:not(.disabled) {
  background: var(--primary-dark);
}

.pagination a.active {
  background: var(--accent-color);
  color: #fff;
  border-color: transparent;
}

.page-ellipsis {
  padding: 3px 2px;
  color: #666;
  font-size: 10px;
}

/* Loading icon */
.loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}

.loading-spinner.active {
  display: block;
}

.spinner {
  width: 45px;
  height: 45px;
  border: 4px solid rgba(39, 174, 96, 0.2);
  border-left: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 12px;
}

.loading-text {
  color: var(--accent-color);
  font-size: 15px;
  font-weight: bold;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== الفوتر ===== */
.footer {
  margin-top: 35px;
  padding: 25px 0;
  color: #666;
  font-size: 0.8rem;
  border-top: 1px solid var(--card-border);
  background: var(--primary-color);
  width: 100%;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.footer-links a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.8rem;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  body {
    padding: 0;
  }
  
  .container {
    padding: 0 10px;
  }
  
  .header-main {
    padding: 8px 15px;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .logo-container {
    margin-bottom: 0;
  }
  
  .site-logo {
    width: 140px;
  }
  
  .header-center {
    order: 3;
    flex: 1 0 100%;
    margin: 10px 0 0 0;
    max-width: 100%;
  }
  
  .search-input-header {
    width: 100%;
  }
  
  .header-top {
    padding: 6px 15px;
  }
  
  .header-top-links {
    gap: 12px;
    font-size: 11px;
  }
  
  /* إخفاء التصنيفات على الجوال */
  .category-nav {
    display: none !important;
  }
  
  .footer-links {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .game-card img {
    height: 140px;
  }
  
  .game-title {
    font-size: 11px;
  }
  
  .header-top-links {
    gap: 8px;
    font-size: 10px;
  }
  
  .site-logo {
    width: 120px;
  }
  
  .filter-modal-content {
    width: 95%;
  }
}

/* Desktop Enhancements */
@media (min-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .container { 
    max-width: 100%; 
  }
  
  .games-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}