/* style/index-game-highlights.css */
.page-index-game-highlights {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
  background-color: #0A2342;
}

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

.page-index-game-highlights__section-title {
  color: #FFD700; /* Gold for titles */
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 30px;
  padding-top: 40px;
  position: relative;
}

.page-index-game-highlights__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-index-game-highlights__section-subtitle {
  color: #C0C0C0;
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 50px;
}

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

.page-index-game-highlights__btn--primary {
  background-color: #FFD700;
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-index-game-highlights__btn--primary:hover {
  background-color: #e6c200;
  color: #0A2342;
}

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

.page-index-game-highlights__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-index-game-highlights__btn--read-more,
.page-index-game-highlights__btn--play-now {
  background-color: #0A2342;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-index-game-highlights__btn--read-more:hover,
.page-index-game-highlights__btn--play-now:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-index-game-highlights__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
  background-color: #FFD700;
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-index-game-highlights__btn--large:hover {
  background-color: #e6c200;
  color: #0A2342;
}

/* Hero Section */
.page-index-game-highlights__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-index-game-highlights__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-index-game-highlights__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

.page-index-game-highlights__hero-cta .page-index-game-highlights__btn {
  margin: 0 15px;
}

/* About 789P Section */
.page-index-game-highlights__about-789p {
  padding: 60px 0;
  background-color: #0A2342;
}

.page-index-game-highlights__about-789p .page-index-game-highlights__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-index-game-highlights__about-789p .page-index-game-highlights__text-content p {
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-index-game-highlights__about-789p .page-index-game-highlights__image-wrapper {
  text-align: center;
}

.page-index-game-highlights__about-789p .page-index-game-highlights__img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Game Categories Section */
.page-index-game-highlights__game-categories {
  padding: 80px 0;
  background-color: #1A3A60; /* Slightly lighter dark blue for contrast */
}

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

.page-index-game-highlights__category-card {
  background-color: #0A2342;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  padding-bottom: 20px;
}

.page-index-game-highlights__category-card:hover {
  transform: translateY(-10px);
}

.page-index-game-highlights__card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-index-game-highlights__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-index-game-highlights__card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-index-game-highlights__card-title a:hover {
  text-decoration: underline;
}

.page-index-game-highlights__card-description {
  color: #C0C0C0;
  padding: 0 15px;
  margin-bottom: 20px;
  font-size: 0.95em;
}

/* Why Choose Section */
.page-index-game-highlights__why-choose {
  padding: 80px 0;
  background-color: #0A2342;
}

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

.page-index-game-highlights__feature-item {
  background-color: #1A3A60;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-game-highlights__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(30deg) brightness(1.2); /* Gold tint */
}

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

.page-index-game-highlights__feature-item p {
  color: #C0C0C0;
  font-size: 0.95em;
}

/* CTA Section */
.page-index-game-highlights__cta-section {
  background: linear-gradient(90deg, #0A2342, #1A3A60);
  padding: 80px 0;
  text-align: center;
}

.page-index-game-highlights__cta-content {
  max-width: 900px;
}

.page-index-game-highlights__cta-section .page-index-game-highlights__section-title {
  color: #FFD700;
}

.page-index-game-highlights__cta-section .page-index-game-highlights__section-subtitle {
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-index-game-highlights__small-text {
  margin-top: 20px;
  font-size: 0.9em;
  color: #C0C0C0;
}

.page-index-game-highlights__small-text a {
  color: #FFD700;
  text-decoration: none;
}

.page-index-game-highlights__small-text a:hover {
  text-decoration: underline;
}

/* Responsible Gambling Section */
.page-index-game-highlights__responsible-gambling {
  padding: 60px 0;
  background-color: #0A2342;
}

.page-index-game-highlights__responsible-gambling p {
  color: #E0E0E0;
  margin-bottom: 15px;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-game-highlights__hero-title {
    font-size: 2.8em;
  }
  .page-index-game-highlights__hero-description {
    font-size: 1.1em;
  }
  .page-index-game-highlights__section-title {
    font-size: 2em;
  }
  .page-index-game-highlights__about-789p .page-index-game-highlights__grid {
    grid-template-columns: 1fr;
  }
  .page-index-game-highlights__about-789p .page-index-game-highlights__image-wrapper {
    order: -1; /* Image appears above text on mobile */
  }
}

@media (max-width: 768px) {
  .page-index-game-highlights__hero-section {
    padding: 80px 0;
  }
  .page-index-game-highlights__hero-title {
    font-size: 2.2em;
  }
  .page-index-game-highlights__hero-description {
    font-size: 1em;
  }
  .page-index-game-highlights__hero-cta .page-index-game-highlights__btn {
    margin: 10px 0;
    display: block;
  }
  .page-index-game-highlights__section-title {
    font-size: 1.8em;
  }
  .page-index-game-highlights__category-grid,
  .page-index-game-highlights__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 480px) {
  .page-index-game-highlights__hero-section {
    padding: 60px 0;
  }
  .page-index-game-highlights__hero-title {
    font-size: 1.8em;
  }
  .page-index-game-highlights__hero-description {
    font-size: 0.9em;
  }
  .page-index-game-highlights__section-title {
    font-size: 1.5em;
  }
  .page-index-game-highlights__section-subtitle {
    font-size: 1em;
  }
  .page-index-game-highlights__btn--large {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-game-highlights__category-card {
    padding-bottom: 15px;
  }
  .page-index-game-highlights__card-img {
    height: 160px;
  }
  .page-index-game-highlights__card-title {
    font-size: 1.3em;
    margin: 15px 0 8px;
  }
  .page-index-game-highlights__card-description {
    font-size: 0.9em;
  }
  .page-index-game-highlights__feature-item {
    padding: 20px;
  }
  .page-index-game-highlights__feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  .page-index-game-highlights__feature-title {
    font-size: 1.2em;
  }
}