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

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

.page-index-game-highlights__hero {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-index-game-highlights__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-index-game-highlights__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-index-game-highlights__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index-game-highlights__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 20px;
}

.page-index-game-highlights__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-index-game-highlights__section-title {
  font-size: 2.2em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-game-highlights__text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 60px;
  color: #555;
}

.page-index-game-highlights__intro,
.page-index-game-highlights__game-categories,
.page-index-game-highlights__why-choose,
.page-index-game-highlights__conclusion {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-index-game-highlights__intro {
  background-color: #e6f2ff; /* Light blue background */
}

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

.page-index-game-highlights__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-game-highlights__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-index-game-highlights__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-index-game-highlights__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-index-game-highlights__feature-description {
  font-size: 1em;
  color: #666;
}

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

.page-index-game-highlights__game-card {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index-game-highlights__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid #FFCC00;
}

.page-index-game-highlights__game-title {
  font-size: 1.8em;
  color: #003366;
  padding: 25px 25px 15px;
  font-weight: bold;
}

.page-index-game-highlights__game-description {
  font-size: 1.05em;
  color: #444;
  padding: 0 25px 20px;
  flex-grow: 1;
}

.page-index-game-highlights__game-features {
  list-style: none;
  padding: 0 25px 20px;
  margin: 0;
}

.page-index-game-highlights__game-features li {
  margin-bottom: 10px;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.page-index-game-highlights__game-features li::before {
  content: '✔';
  color: #FFCC00;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-index-game-highlights__feature-highlight {
  font-weight: bold;
  color: #003366;
}

.page-index-game-highlights__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

.page-index-game-highlights__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 204, 0, 0.6);
}

.page-index-game-highlights__cta-button--small {
  font-size: 1em;
  padding: 12px 25px;
  margin: 20px 25px 25px;
  align-self: flex-start;
}

.page-index-game-highlights__cta-button--large {
  font-size: 1.3em;
  padding: 18px 35px;
  margin-top: 50px;
}

.page-index-game-highlights__cta-button--final {
  background-color: #003366;
  color: #FFCC00;
  box-shadow: 0 4px 10px rgba(0, 51, 102, 0.4);
}

.page-index-game-highlights__cta-button--final:hover {
  background-color: #004080;
  box-shadow: 0 6px 15px rgba(0, 51, 102, 0.6);
}

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

.page-index-game-highlights__offer-item {
  text-align: center;
  padding: 30px;
  background-color: #f0f8ff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-game-highlights__offer-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-index-game-highlights__offer-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-index-game-highlights__offer-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-index-game-highlights__offer-description {
  font-size: 1.0em;
  color: #666;
}

.page-index-game-highlights__conclusion .page-index-game-highlights__text {
  margin-bottom: 40px;
}

.page-index-game-highlights__download-app {
  text-align: center;
  margin-top: 20px;
  font-size: 1.1em;
  color: #555;
}

.page-index-game-highlights__download-app a {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-game-highlights__download-app a:hover {
  color: #FFCC00;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-game-highlights__hero-title {
    font-size: 2.2em;
  }

  .page-index-game-highlights__hero-description {
    font-size: 1.1em;
  }

  .page-index-game-highlights__section-title {
    font-size: 1.8em;
  }

  .page-index-game-highlights__text {
    font-size: 1em;
  }

  .page-index-game-highlights__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-game-highlights__hero {
    padding: 60px 0;
  }

  .page-index-game-highlights__hero-title {
    font-size: 1.8em;
  }

  .page-index-game-highlights__hero-description {
    font-size: 1em;
  }

  .page-index-game-highlights__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-index-game-highlights__section-title {
    font-size: 1.6em;
  }

  .page-index-game-highlights__intro,
  .page-index-game-highlights__game-categories,
  .page-index-game-highlights__why-choose,
  .page-index-game-highlights__conclusion {
    padding: 40px 0;
  }

  .page-index-game-highlights__features-grid,
  .page-index-game-highlights__game-grid,
  .page-index-game-highlights__offer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-index-game-highlights__game-title {
    font-size: 1.5em;
  }

  .page-index-game-highlights__game-image {
    height: 200px;
  }

  .page-index-game-highlights__game-card .page-index-game-highlights__cta-button--small {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .page-index-game-highlights__hero-title {
    font-size: 1.5em;
  }

  .page-index-game-highlights__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }

  .page-index-game-highlights__section-title {
    font-size: 1.4em;
  }

  .page-index-game-highlights__feature-title,
  .page-index-game-highlights__offer-title {
    font-size: 1.3em;
  }
}