/* تنسيقات صفحة الألعاب */

.games-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.games-intro {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #16161a, #1a1a1a);
  border-radius: 15px;
  border: 1px solid #333;
}

.games-intro h2 {
  color: #ff6600;
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ff6600, #ff8533);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.games-intro p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* شبكة البطاقات */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* بطاقة اللعبة */
.game-card {
  background: #16161a;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #333;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: #ff6600;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.game-card.coming-soon {
  opacity: 0.7;
}

.game-card.coming-soon:hover {
  opacity: 0.85;
}

/* صورة البطاقة */
.game-card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-card-image img {
  transform: scale(1.1);
}

/* شارة اللعبة */
.game-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff6600;
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(255, 102, 0, 0.5);
}

.game-badge.coming {
  background: #009691;
  color: #fff;
}

/* محتوى البطاقة */
.game-card-content {
  padding: 1.5rem;
}

.game-title {
  color: #ff6600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

/* إحصائيات اللعبة */
.game-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #101014;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #ccc;
}

.stat-icon {
  font-size: 1.2rem;
}

/* وصف اللعبة */
.game-description {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* مميزات اللعبة */
.game-features {
  background: #101014;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.game-features h4 {
  color: #ff8533;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.game-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.game-features li {
  color: #ccc;
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

/* متطلبات اللعبة */
.game-requirements {
  background: #101014;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.game-requirements h4 {
  color: #ff8533;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.game-requirements p {
  color: #ccc;
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

/* معلومات قريباً */
.coming-soon-info {
  text-align: center;
  padding: 2rem;
  background: #101014;
  border-radius: 10px;
  margin-top: 1rem;
}

.coming-soon-info p {
  color: #009691;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0.5rem 0;
}

/* زر اللعب */
.play-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #000;
  text-align: center;
  text-decoration: none;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.play-btn:hover {
  background: linear-gradient(135deg, #ff8533, #ffaa66);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}

/* قسم الدعوة للعمل */
.games-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #16161a, #1a1a1a);
  border-radius: 15px;
  border: 1px solid #333;
}

.games-cta h3 {
  color: #ff6600;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.games-cta p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #000;
  text-decoration: none;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.cta-btn:hover {
  background: linear-gradient(135deg, #ff8533, #ffaa66);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}

/* استجابة للموبايل */
@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .games-intro h2 {
    font-size: 1.5rem;
  }

  .games-intro p {
    font-size: 1rem;
  }

  .game-card-image {
    height: 200px;
  }

  .game-title {
    font-size: 1.3rem;
  }

  .game-stats {
    flex-direction: column;
  }

  .games-cta h3 {
    font-size: 1.5rem;
  }

  .games-cta p {
    font-size: 1rem;
  }
}
