/* style/index-game-features.css */
.page-index-game-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-index-game-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-game-features__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.page-index-game-features__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
}

.page-index-game-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-game-features__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-game-features__btn--primary {
  background-color: #ffc107;
  color: #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-game-features__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-index-game-features__btn--secondary {
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
}

.page-index-game-features__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-index-game-features__section {
  padding: 60px 0;
}

.page-index-game-features__section--intro {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-index-game-features__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-index-game-features__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-index-game-features__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #495057;
}

.page-index-game-features__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-game-features__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-game-features__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-game-features__game-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-game-features__game-card-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-game-features__game-card-description {
  font-size: 1em;
  color: #6c757d;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left;
}

.page-index-game-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-game-features__feature-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-game-features__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-game-features__feature-card-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-game-features__feature-card-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-game-features__feature-card-description {
  font-size: 1em;
  color: #6c757d;
  text-align: left;
}

.page-index-game-features__section--why-choose {
  background-color: #f0f8ff;
}

.page-index-game-features__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-game-features__list-item {
  background-color: #fff;
  border-left: 5px solid #ffc107;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.page-index-game-features__list-item:hover {
  transform: translateX(5px);
}

.page-index-game-features__list-title {
  font-size: 1.3em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-index-game-features__list-description {
  font-size: 1em;
  color: #495057;
  text-align: justify;
}

.page-index-game-features__section--getting-started {
  background-color: #fff;
}

.page-index-game-features__ordered-list {
  list-style: decimal;
  padding-left: 25px;
  margin-top: 30px;
}

.page-index-game-features__ordered-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #495057;
}

.page-index-game-features__highlight-text {
  font-weight: bold;
  color: #007bff;
}

.page-index-game-features__section--conclusion {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 80px 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.page-index-game-features__section--conclusion .page-index-game-features__section-title {
  color: #fff;
}

.page-index-game-features__section--conclusion .page-index-game-features__section-title::after {
  background-color: #ffc107;
}

.page-index-game-features__section--conclusion .page-index-game-features__paragraph {
  color: #e9ecef;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-game-features__hero-title {
    font-size: 2.2em;
  }
  .page-index-game-features__section-title {
    font-size: 1.8em;
  }
  .page-index-game-features__game-card,
  .page-index-game-features__feature-card {
    padding: 20px;
  }
  .page-index-game-features__game-card-title,
  .page-index-game-features__feature-card-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-index-game-features__hero-section {
    padding: 60px 0;
  }
  .page-index-game-features__hero-title {
    font-size: 1.8em;
  }
  .page-index-game-features__hero-description {
    font-size: 1em;
  }
  .page-index-game-features__section {
    padding: 40px 0;
  }
  .page-index-game-features__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-index-game-features__paragraph,
  .page-index-game-features__list-description,
  .page-index-game-features__ordered-list li {
    font-size: 0.95em;
  }
  .page-index-game-features__game-grid,
  .page-index-game-features__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-game-features__game-card-img,
  .page-index-game-features__feature-card-img {
    height: 150px;
  }
  .page-index-game-features__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-index-game-features__hero-title {
    font-size: 1.5em;
  }
  .page-index-game-features__hero-description {
    font-size: 0.9em;
  }
  .page-index-game-features__section-title {
    font-size: 1.3em;
  }
  .page-index-game-features__list-item {
    padding: 15px;
  }
  .page-index-game-features__list-title {
    font-size: 1.1em;
  }
  .page-index-game-features__ordered-list {
    padding-left: 20px;
  }
}