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

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

.page-index-game-highlights .highlight {
  color: #007BFF; /* Main brand color for emphasis */
}

/* Hero Section */
.page-index-game-highlights__hero {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-game-highlights__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  max-width: 40%;
  height: auto;
  z-index: 1;
}

.page-index-game-highlights__hero .page-index-game-highlights__container {
  position: relative;
  z-index: 2;
}

.page-index-game-highlights__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFD700; /* Gold for title highlight */
}

.page-index-game-highlights__hero-title .highlight {
  color: #fff; /* White for 'Hit Club' within hero title */
}

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

.page-index-game-highlights__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0056b3; /* Darker blue for text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-game-highlights__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* General Section Styling */
.page-index-game-highlights__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.page-index-game-highlights__section:nth-of-type(even) {
  background-color: #f0f4f8; /* Light blueish background for even sections */
}

.page-index-game-highlights__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Main brand color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-game-highlights__section-title .highlight {
  color: #FFD700; /* Gold for highlight in titles */
}

.page-index-game-highlights__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

/* Game Categories Grid */
.page-index-game-highlights__game-categories {
  padding-bottom: 80px;
}

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

.page-index-game-highlights__category-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-index-game-highlights__category-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-index-game-highlights__category-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-index-game-highlights__category-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  color: #444;
}

.page-index-game-highlights__category-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.page-index-game-highlights__category-features li .icon-check {
  color: #28a745; /* Green for checkmark */
  margin-right: 10px;
  font-size: 1.1em;
  /* Placeholder for icon, ideally from an icon font */
  content: '✔';
}

.page-index-game-highlights__category-button {
  display: inline-block;
  background-color: #007BFF; /* Main brand color */
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto; /* Push button to bottom */
}

.page-index-game-highlights__category-button:hover {
  background-color: #0056b3;
}

/* Exclusive Features */
.page-index-game-highlights__exclusive-features {
  background-color: #f0f4f8;
}

.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 {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.page-index-game-highlights__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-game-highlights__feature-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

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

/* Call to Action (CTA) Section */
.page-index-game-highlights__cta {
  background: linear-gradient(90deg, #007BFF, #4da3ff);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  border-radius: 8px;
}

.page-index-game-highlights__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
}

.page-index-game-highlights__cta-title .highlight {
  color: #fff;
}

.page-index-game-highlights__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-game-highlights__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0056b3;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 15px;
  border: none;
  cursor: pointer;
}

.page-index-game-highlights__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-game-highlights__cta-link {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
  font-size: 1.1em;
  margin: 0 15px;
  padding: 18px 35px;
  transition: color 0.3s ease;
}

.page-index-game-highlights__cta-link:hover {
  color: #FFD700;
}

/* FAQ Section */
.page-index-game-highlights__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-index-game-highlights__faq-question {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-game-highlights__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-index-game-highlights__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-game-highlights__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-index-game-highlights__faq-question.active + .page-index-game-highlights__faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-game-highlights__hero-title {
    font-size: 2.5em;
  }
  .page-index-game-highlights__section-title {
    font-size: 2em;
  }
  .page-index-game-highlights__category-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index-game-highlights__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .page-index-game-highlights__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-game-highlights__hero {
    padding: 60px 0;
  }
  .page-index-game-highlights__hero-title {
    font-size: 2em;
  }
  .page-index-game-highlights__hero-description {
    font-size: 1em;
  }
  .page-index-game-highlights__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-game-highlights__section {
    padding: 40px 0;
  }
  .page-index-game-highlights__section-title {
    font-size: 1.8em;
  }
  .page-index-game-highlights__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-index-game-highlights__category-item, .page-index-game-highlights__feature-item {
    padding: 20px;
  }
  .page-index-game-highlights__category-title {
    font-size: 1.5em;
  }
  .page-index-game-highlights__cta-title {
    font-size: 1.8em;
  }
  .page-index-game-highlights__cta-button {
    padding: 15px 25px;
    font-size: 1.1em;
    margin: 10px;
  }
  .page-index-game-highlights__cta-link {
    margin: 10px;
  }
  .page-index-game-highlights__faq-question {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-index-game-highlights__hero-title {
    font-size: 1.8em;
  }
  .page-index-game-highlights__hero-image {
    display: none; /* Hide image on very small screens */
  }
  .page-index-game-highlights__section-title {
    font-size: 1.6em;
  }
  .page-index-game-highlights__category-grid, .page-index-game-highlights__features-grid {
    grid-template-columns: 1fr;
  }
  .page-index-game-highlights__cta-button, .page-index-game-highlights__cta-link {
    display: block;
    width: fit-content;
    margin: 15px auto;
  }
}