/* 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-section {
  background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-index-game-highlights__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold on dark blue for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-index-game-highlights__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.page-index-game-highlights__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000080;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-index-game-highlights__cta-button:hover {
  background-color: #ffe680;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-game-highlights__cta-button--gold {
  background-color: #FFD700;
  color: #000080;
}

.page-index-game-highlights__cta-button--primary {
  background-color: #000080;
  color: #FFD700;
}

.page-index-game-highlights__cta-button--primary:hover {
  background-color: #1a1a9a;
  color: #FFD700;
}

.page-index-game-highlights__small-cta {
  display: inline-block;
  background-color: #000080;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 15px;
  border: none;
  cursor: pointer;
}

.page-index-game-highlights__small-cta:hover {
  background-color: #1a1a9a;
  transform: translateY(-2px);
}

.page-index-game-highlights__content-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-index-game-highlights__content-section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-index-game-highlights__section-title {
  font-size: 2.5em;
  color: #000080;
  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: #FFD700;
  border-radius: 2px;
}

.page-index-game-highlights__flex-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-index-game-highlights__flex-wrapper--reverse {
  flex-direction: row-reverse;
}

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

.page-index-game-highlights__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333;
}

.page-index-game-highlights__text-content ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-index-game-highlights__text-content li {
  margin-bottom: 8px;
  font-size: 1.1em;
  color: #333;
}

.page-index-game-highlights__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index-game-highlights__image-wrapper--full-width {
  flex: none;
  width: 100%;
  margin-top: 40px;
}

.page-index-game-highlights__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-index-game-highlights__feature-card {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  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-top: 5px solid #FFD700;
}

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

.page-index-game-highlights__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

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

.page-index-game-highlights__feature-card p {
  color: #555;
  font-size: 1em;
}

.page-index-game-highlights__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-index-game-highlights__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-index-game-highlights__promo-list li {
  background-color: #e6f7ff; /* Light blue for promotions */
  border-left: 5px solid #000080;
  padding: 20px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-game-highlights__promo-list li strong {
  color: #000080;
}

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

.page-index-game-highlights__step-card {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 5px solid #000080;
}

.page-index-game-highlights__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #000080;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-game-highlights__safety-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-game-highlights__safety-list li {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  font-size: 1.1em;
  color: #333;
}

.page-index-game-highlights__safety-list li::before {
  content: '✔';
  color: #000080;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
  line-height: 1;
}

.page-index-game-highlights__contact-section {
  background-color: #000080;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-index-game-highlights__contact-section .page-index-game-highlights__section-title {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-game-highlights__contact-section .page-index-game-highlights__section-title::after {
  background-color: #FFD700;
}

.page-index-game-highlights__contact-section p {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

  .page-index-game-highlights__hero-subtitle {
    font-size: 1.3em;
  }

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

  .page-index-game-highlights__flex-wrapper {
    flex-direction: column;
  }

  .page-index-game-highlights__flex-wrapper--reverse {
    flex-direction: column;
  }

  .page-index-game-highlights__image-wrapper {
    margin-top: 30px;
  }
}

@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-subtitle {
    font-size: 1.1em;
  }

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

  .page-index-game-highlights__content-section {
    padding: 40px 0;
  }

  .page-index-game-highlights__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-index-game-highlights__feature-grid, 
  .page-index-game-highlights__step-grid {
    grid-template-columns: 1fr;
  }

  .page-index-game-highlights__feature-card, 
  .page-index-game-highlights__step-card {
    padding: 25px;
  }

  .page-index-game-highlights__card-title {
    font-size: 1.3em;
  }

  .page-index-game-highlights__text-content p, 
  .page-index-game-highlights__text-content li, 
  .page-index-game-highlights__promo-list li, 
  .page-index-game-highlights__safety-list li {
    font-size: 1em;
  }

  .page-index-game-highlights__contact-section {
    padding: 60px 0;
  }

  .page-index-game-highlights__contact-section p {
    font-size: 1.1em;
  }
}

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

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

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

  .page-index-game-highlights__container {
    padding: 0 15px;
  }

  .page-index-game-highlights__feature-icon {
    width: 60px;
    height: 60px;
  }

  .page-index-game-highlights__step-number {
    width: 45px;
    height: 45px;
    font-size: 1.8em;
  }
}