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

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

.page-index-featured-games .page-index-featured-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-featured-games .page-index-featured-games__section:nth-child(even) {
  background-color: #e9e9e9;
}

.page-index-featured-games .page-index-featured-games__hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  min-height: 500px;
}

.page-index-featured-games .page-index-featured-games__hero-section .page-index-featured-games__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
  max-width: 600px;
}

.page-index-featured-games .page-index-featured-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-featured-games .page-index-featured-games__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #eee;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games .page-index-featured-games__hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-featured-games .page-index-featured-games__hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  z-index: 0;
}

.page-index-featured-games .page-index-featured-games__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #000080;
}

.page-index-featured-games .page-index-featured-games__section-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-featured-games .highlight {
  color: #FFD700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games strong {
  font-weight: bold;
  color: #000080;
}

.page-index-featured-games__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-index-featured-games__button--primary {
  background-color: #FFD700;
  color: #000080;
  border: 2px solid #FFD700;
}

.page-index-featured-games__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-index-featured-games__button--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-2px);
}

.page-index-featured-games__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

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

.page-index-featured-games__category-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-featured-games__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-index-featured-games__category-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-featured-games__category-title {
  font-size: 1.4em;
  color: #000080;
  margin-bottom: 10px;
}

.page-index-featured-games__category-text {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-featured-games__featured-game-spotlight .page-index-featured-games__game-spotlight-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  text-align: left;
}

.page-index-featured-games__featured-game-spotlight .page-index-featured-games__game-spotlight-item--reverse {
  flex-direction: row-reverse;
}

.page-index-featured-games__game-spotlight-image {
  width: 50%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  height: 350px;
}

.page-index-featured-games__game-spotlight-content {
  width: 50%;
}

.page-index-featured-games__game-spotlight-title {
  font-size: 2em;
  color: #000080;
  margin-bottom: 15px;
}

.page-index-featured-games__game-spotlight-text {
  color: #555;
  margin-bottom: 25px;
}

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

.page-index-featured-games__advantage-card {
  background-color: #000080;
  color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-index-featured-games__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1); /* Makes icon white */
}

.page-index-featured-games__advantage-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-featured-games__advantage-text {
  font-size: 0.95em;
  color: #ccc;
}

.page-index-featured-games__promotions-section {
  background-color: #f0f0f0;
}

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

.page-index-featured-games__promotion-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
}

.page-index-featured-games__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-featured-games__promotion-card .page-index-featured-games__promotion-title {
  font-size: 1.3em;
  color: #000080;
  margin: 20px 20px 10px 20px;
}

.page-index-featured-games__promotion-card .page-index-featured-games__promotion-text {
  color: #666;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-index-featured-games__promotion-card .page-index-featured-games__button {
  margin: 0 20px 20px 20px;
}

.page-index-featured-games__app-download-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-index-featured-games__app-info {
  width: 50%;
}

.page-index-featured-games__app-info ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-index-featured-games__app-info ul li {
  margin-bottom: 10px;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.page-index-featured-games__app-info ul li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-featured-games__app-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-featured-games__app-image {
  width: 50%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: contain;
  max-height: 450px;
}

.page-index-featured-games__strategy-tips-section {
  background-color: #f8f8f8;
}

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

.page-index-featured-games__tip-card {
  background-color: #fff;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-index-featured-games__tip-title {
  font-size: 1.3em;
  color: #000080;
  margin-bottom: 10px;
}

.page-index-featured-games__tip-text {
  color: #666;
}

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

.page-index-featured-games__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-index-featured-games__faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-index-featured-games__faq-question {
  font-size: 1.2em;
  color: #000080;
  padding: 18px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #fdfdfd;
  border-bottom: 1px solid #eee;
}

.page-index-featured-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-featured-games__faq-item.active .page-index-featured-games__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-featured-games__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-featured-games__faq-item.active .page-index-featured-games__faq-answer {
  max-height: 300px; /* Adjust based on content */
  padding: 15px 25px 25px 25px;
}

.page-index-featured-games__faq-answer p {
  color: #666;
  margin-bottom: 15px;
}

.page-index-featured-games__cta-final {
  background: #000080;
  color: #fff;
  padding: 80px 0;
}

.page-index-featured-games__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-featured-games__cta-description {
  font-size: 1.2em;
  color: #eee;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-featured-games .page-index-featured-games__hero-section {
    text-align: center;
  }
  .page-index-featured-games .page-index-featured-games__hero-section .page-index-featured-games__container {
    align-items: center;
    max-width: 100%;
  }
  .page-index-featured-games .page-index-featured-games__hero-image {
    position: static;
    width: 100%;
    height: 300px;
    margin-top: 30px;
    opacity: 0.5;
  }
  .page-index-featured-games .page-index-featured-games__game-spotlight-item,
  .page-index-featured-games .page-index-featured-games__game-spotlight-item--reverse {
    flex-direction: column;
    text-align: center;
  }
  .page-index-featured-games__game-spotlight-image,
  .page-index-featured-games__game-spotlight-content,
  .page-index-featured-games__app-info,
  .page-index-featured-games__app-image {
    width: 100%;
  }
  .page-index-featured-games__hero-title {
    font-size: 2.5em;
  }
  .page-index-featured-games__section-title {
    font-size: 2em;
  }
  .page-index-featured-games__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-featured-games .page-index-featured-games__hero-section {
    padding: 60px 0;
  }
  .page-index-featured-games .page-index-featured-games__hero-title {
    font-size: 2em;
  }
  .page-index-featured-games .page-index-featured-games__hero-description {
    font-size: 1em;
  }
  .page-index-featured-games .page-index-featured-games__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-featured-games__button {
    width: 100%;
  }
  .page-index-featured-games__section {
    padding: 40px 0;
  }
  .page-index-featured-games__section-title {
    font-size: 1.8em;
  }
  .page-index-featured-games__game-spotlight-title {
    font-size: 1.5em;
  }
  .page-index-featured-games__faq-question,
  .page-index-featured-games__advantage-title,
  .page-index-featured-games__promotion-title,
  .page-index-featured-games__tip-title {
    font-size: 1.1em;
  }
  .page-index-featured-games__cta-title {
    font-size: 1.8em;
  }
}