.page-index-featured-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-index-featured-games__hero-section {
  background: linear-gradient(135deg, #003366, #1a4a7a);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-featured-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:hero:abstract_geometric,gradient_overlay,tech_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-featured-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-featured-games__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  color: #e0e0e0;
}

.page-index-featured-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  margin: 10px;
  cursor: pointer;
}

.page-index-featured-games__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-index-featured-games__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-index-featured-games__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #003366;
  color: #FFCC00;
  border: 1px solid #FFCC00;
}

.page-index-featured-games__btn--small:hover {
  background-color: #002244;
  color: #fff;
  border-color: #fff;
}

.page-index-featured-games__intro-section,
.page-index-featured-games__games-grid-section,
.page-index-featured-games__why-choose-us-section,
.page-index-featured-games__cta-section,
.page-index-featured-games__guide-section,
.page-index-featured-games__faq-section,
.page-index-featured-games__contact-section {
  padding: 60px 0;
  text-align: center;
}

.page-index-featured-games__intro-section {
  background-color: #fff;
}

.page-index-featured-games__games-grid-section {
  background-color: #e6edf2;
}

.page-index-featured-games__why-choose-us-section {
  background-color: #003366;
  color: #fff;
}

.page-index-featured-games__cta-section {
  background-color: #fff;
}

.page-index-featured-games__guide-section {
  background-color: #e6edf2;
}

.page-index-featured-games__faq-section {
  background-color: #fff;
}

.page-index-featured-games__contact-section {
  background-color: #003366;
  color: #fff;
}

.page-index-featured-games__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  font-weight: bold;
  color: #003366;
}

.page-index-featured-games__why-choose-us-section .page-index-featured-games__section-title,
.page-index-featured-games__contact-section .page-index-featured-games__section-title {
  color: #FFCC00;
}

.page-index-featured-games__section-description,
.page-index-featured-games__text-content,
.page-index-featured-games__cta-description,
.page-index-featured-games__contact-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555;
}

.page-index-featured-games__why-choose-us-section .page-index-featured-games__text-content,
.page-index-featured-games__why-choose-us-section .page-index-featured-games__section-description,
.page-index-featured-games__why-choose-us-section .page-index-featured-games__feature-description,
.page-index-featured-games__contact-section .page-index-featured-games__contact-description {
  color: #e0e0e0;
}

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

.page-index-featured-games__game-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 20px;
}

.page-index-featured-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games__game-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #FFCC00;
}

.page-index-featured-games__game-title {
  font-size: 1.8em;
  color: #003366;
  margin: 25px 15px 10px 15px;
  font-weight: bold;
}

.page-index-featured-games__game-description {
  font-size: 1em;
  color: #666;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-index-featured-games__feature-item {
  background-color: #002244;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-featured-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-index-featured-games__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: invert(70%) sepia(90%) saturate(600%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-index-featured-games__feature-title {
  font-size: 1.6em;
  color: #FFCC00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-featured-games__feature-description {
  font-size: 1em;
  color: #c0c0c0;
}

.page-index-featured-games__cta-section .page-index-featured-games__btn {
  margin: 20px 15px;
}

.page-index-featured-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-featured-games__guide-list li {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-featured-games__guide-list li:hover {
  transform: translateY(-5px);
}

.page-index-featured-games__guide-step-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-featured-games__guide-step-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-featured-games__faq-item {
  background-color: #fcfcfc;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-featured-games__faq-question {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-featured-games__faq-answer {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-featured-games__hero-title {
    font-size: 2.8em;
  }
  .page-index-featured-games__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-featured-games__section-title {
    font-size: 2.2em;
  }
  .page-index-featured-games__grid,
  .page-index-featured-games__features-grid,
  .page-index-featured-games__guide-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-featured-games__hero-section {
    padding: 80px 0;
  }
  .page-index-featured-games__hero-title {
    font-size: 2.2em;
  }
  .page-index-featured-games__hero-subtitle {
    font-size: 1em;
  }
  .page-index-featured-games__section-title {
    font-size: 1.8em;
  }
  .page-index-featured-games__intro-section,
  .page-index-featured-games__games-grid-section,
  .page-index-featured-games__why-choose-us-section,
  .page-index-featured-games__cta-section,
  .page-index-featured-games__guide-section,
  .page-index-featured-games__faq-section,
  .page-index-featured-games__contact-section {
    padding: 40px 0;
  }
  .page-index-featured-games__grid,
  .page-index-featured-games__features-grid,
  .page-index-featured-games__guide-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-featured-games__hero-title {
    font-size: 1.8em;
  }
  .page-index-featured-games__hero-subtitle {
    font-size: 0.9em;
  }
  .page-index-featured-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-featured-games__section-title {
    font-size: 1.5em;
  }
  .page-index-featured-games__game-title {
    font-size: 1.5em;
  }
  .page-index-featured-games__feature-title {
    font-size: 1.4em;
  }
  .page-index-featured-games__faq-question {
    font-size: 1.2em;
  }
}