/* style/game-introduction-pg88-new-games.css */
.page-game-introduction-pg88-new-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-game-introduction-pg88-new-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-introduction-pg88-new-games__hero-section {
  background: linear-gradient(135deg, #0047AB 0%, #0a5cae 100%); /* Deep blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-game-introduction-pg88-new-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-introduction-pg88-new-games__hero-description {
  font-size: 1.25em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-introduction-pg88-new-games__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-introduction-pg88-new-games__section:nth-of-type(odd) {
  background-color: #fdfdfd;
}

.page-game-introduction-pg88-new-games__section-title {
  font-size: 2.5em;
  color: #0047AB;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-introduction-pg88-new-games__section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  border-radius: 2px;
}

.page-game-introduction-pg88-new-games__text-content {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: justify;
  color: #444;
}

.page-game-introduction-pg88-new-games__text-content--highlight {
  font-weight: bold;
  color: #0047AB;
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
}

.page-game-introduction-pg88-new-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-game-introduction-pg88-new-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0047AB; /* Deep Blue */
}

.page-game-introduction-pg88-new-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-pg88-new-games__btn--secondary {
  background-color: #0047AB; /* Deep Blue */
  color: #FFD700; /* Gold */
  border: 1px solid #FFD700;
}

.page-game-introduction-pg88-new-games__btn--secondary:hover {
  background-color: #0a5cae;
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-pg88-new-games__btn--tertiary {
  background-color: #f0f0f0;
  color: #0047AB;
  border: 1px solid #ddd;
}

.page-game-introduction-pg88-new-games__btn--tertiary:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-game-introduction-pg88-new-games__features-grid,
.page-game-introduction-pg88-new-games__game-cards-grid,
.page-game-introduction-pg88-new-games__steps-grid,
.page-game-introduction-pg88-new-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-introduction-pg88-new-games__feature-card,
.page-game-introduction-pg88-new-games__game-card,
.page-game-introduction-pg88-new-games__step-card,
.page-game-introduction-pg88-new-games__promo-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-introduction-pg88-new-games__feature-card:hover,
.page-game-introduction-pg88-new-games__game-card:hover,
.page-game-introduction-pg88-new-games__step-card:hover,
.page-game-introduction-pg88-new-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-introduction-pg88-new-games__feature-icon,
.page-game-introduction-pg88-new-games__step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.page-game-introduction-pg88-new-games__game-thumbnail,
.page-game-introduction-pg88-new-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.page-game-introduction-pg88-new-games__card-title {
  font-size: 1.5em;
  color: #0047AB;
  margin-bottom: 15px;
}

.page-game-introduction-pg88-new-games__game-card p,
.page-game-introduction-pg88-new-games__feature-card p,
.page-game-introduction-pg88-new-games__step-card p,
.page-game-introduction-pg88-new-games__promo-card p {
  color: #555;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-introduction-pg88-new-games__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-introduction-pg88-new-games__list li {
  background-color: #f9f9f9;
  border-left: 5px solid #0047AB;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-game-introduction-pg88-new-games__list-item-title {
  color: #0047AB;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-introduction-pg88-new-games__list li p {
  color: #555;
  margin-bottom: 0;
}

.page-game-introduction-pg88-new-games__cta-banner {
  background: linear-gradient(90deg, #0047AB, #0a5cae);
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-pg88-new-games__cta-banner p {
  font-size: 1.5em;
  margin-bottom: 25px;
  font-weight: bold;
  color: #FFD700;
}

.page-game-introduction-pg88-new-games__cta-content {
  text-align: center;
}

.page-game-introduction-pg88-new-games__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-game-introduction-pg88-new-games__faq-question {
  color: #0047AB;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-introduction-pg88-new-games__faq-answer {
  color: #555;
  margin-bottom: 0;
}

.page-game-introduction-pg88-new-games__final-cta {
  text-align: center;
  background: linear-gradient(135deg, #0a5cae, #0047AB);
  color: #fff;
  padding: 80px 0;
  border-radius: 0;
  margin-bottom: 0;
}

.page-game-introduction-pg88-new-games__final-cta .page-game-introduction-pg88-new-games__section-title {
  color: #FFD700;
}

.page-game-introduction-pg88-new-games__final-cta .page-game-introduction-pg88-new-games__text-content {
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-introduction-pg88-new-games__hero-title {
    font-size: 2.5em;
  }
  .page-game-introduction-pg88-new-games__section-title {
    font-size: 2em;
  }
  .page-game-introduction-pg88-new-games__features-grid,
  .page-game-introduction-pg88-new-games__game-cards-grid,
  .page-game-introduction-pg88-new-games__steps-grid,
  .page-game-introduction-pg88-new-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-game-introduction-pg88-new-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-game-introduction-pg88-new-games__hero-title {
    font-size: 2em;
  }
  .page-game-introduction-pg88-new-games__hero-description {
    font-size: 1em;
  }
  .page-game-introduction-pg88-new-games__section-title {
    font-size: 1.8em;
  }
  .page-game-introduction-pg88-new-games__cta-banner p {
    font-size: 1.2em;
  }
  .page-game-introduction-pg88-new-games__feature-icon,
  .page-game-introduction-pg88-new-games__step-icon {
    width: 60px;
    height: 60px;
  }
}