/* style/index-game-highlights.css */
.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, #004AAD 0%, #0028ff 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-game-highlights__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern,subtle]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-game-highlights__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.page-index-game-highlights__hero-title .highlight {
  color: #FFD700;
}

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

.page-index-game-highlights__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-index-game-highlights__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-index-game-highlights__btn--primary {
  background-color: #FFD700;
  color: #004AAD;
  border-color: #FFD700;
}

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

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

.page-index-game-highlights__btn--secondary:hover {
  background-color: #FFD700;
  color: #004AAD;
  transform: translateY(-3px);
}

.page-index-game-highlights__overview,
.page-index-game-highlights__game-categories,
.page-index-game-highlights__why-choose,
.page-index-game-highlights__cta {
  padding: 80px 0;
}

.page-index-game-highlights__overview {
  background-color: #fff;
}

.page-index-game-highlights__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #004AAD;
  font-weight: bold;
}

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

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

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

.page-index-game-highlights__feature-item,
.page-index-game-highlights__benefit-item {
  background-color: #f0f7ff; /* Lighter shade of primary color */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-index-game-highlights__feature-item:hover,
.page-index-game-highlights__benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-game-highlights__feature-icon,
.page-index-game-highlights__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 74, 173, 0.3));
}

.page-index-game-highlights__feature-item h3,
.page-index-game-highlights__benefit-item h3 {
  font-size: 1.5em;
  color: #004AAD;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-game-highlights__feature-item p,
.page-index-game-highlights__benefit-item p {
  color: #666;
  font-size: 1em;
}

.page-index-game-highlights__game-categories {
  background-color: #f8f8f8;
}

.page-index-game-highlights__category-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.page-index-game-highlights__category-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-index-game-highlights__category-item--reverse {
  flex-direction: row-reverse;
}

.page-index-game-highlights__category-content {
  flex: 1;
}

.page-index-game-highlights__category-content h3 {
  font-size: 2em;
  color: #004AAD;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-game-highlights__category-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-index-game-highlights__category-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-index-game-highlights__category-content ul li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.page-index-game-highlights__category-content ul li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-index-game-highlights__category-image-wrapper {
  flex: 1;
  min-width: 400px;
  text-align: center;
}

.page-index-game-highlights__category-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-index-game-highlights__why-choose {
  background-color: #e6f2ff; /* Very light blue */
}

.page-index-game-highlights__cta {
  background-color: #004AAD;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

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

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

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

.page-index-game-highlights__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* 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-item {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  .page-index-game-highlights__category-item:nth-child(even) {
    flex-direction: column;
  }
  .page-index-game-highlights__category-item--reverse {
    flex-direction: column;
  }
  .page-index-game-highlights__category-image-wrapper {
    min-width: unset;
    margin-top: 30px;
  }
  .page-index-game-highlights__category-content ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-index-game-highlights__hero {
    padding: 80px 0;
  }
  .page-index-game-highlights__hero-title {
    font-size: 2em;
  }
  .page-index-game-highlights__hero-description {
    font-size: 1em;
  }
  .page-index-game-highlights__hero-actions,
  .page-index-game-highlights__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-game-highlights__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-game-highlights__overview,
  .page-index-game-highlights__game-categories,
  .page-index-game-highlights__why-choose,
  .page-index-game-highlights__cta {
    padding: 60px 0;
  }
  .page-index-game-highlights__section-title {
    font-size: 1.8em;
  }
  .page-index-game-highlights__section-description {
    font-size: 0.95em;
  }
  .page-index-game-highlights__feature-item h3,
  .page-index-game-highlights__benefit-item h3 {
    font-size: 1.3em;
  }
  .page-index-game-highlights__category-content h3 {
    font-size: 1.6em;
  }
  .page-index-game-highlights__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-index-game-highlights__hero-title {
    font-size: 1.8em;
  }
  .page-index-game-highlights__hero-description {
    font-size: 0.9em;
  }
  .page-index-game-highlights__btn {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-game-highlights__section-title {
    font-size: 1.5em;
  }
  .page-index-game-highlights__category-item {
    padding: 20px;
  }
  .page-index-game-highlights__category-content h3 {
    font-size: 1.4em;
  }
  .page-index-game-highlights__cta-title {
    font-size: 1.8em;
  }
}