/* style/resources-789b-game-selection-overview.css */
.page-resources-789b-game-selection-overview {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Primary dark blue background */
  line-height: 1.6;
}

.page-resources-789b-game-selection-overview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-789b-game-selection-overview__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1A3A6D 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-resources-789b-game-selection-overview__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-789b-game-selection-overview__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-resources-789b-game-selection-overview__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Secondary gold for CTA */
  color: #0A192F; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-789b-game-selection-overview__cta-button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-resources-789b-game-selection-overview__content-section {
  padding: 60px 0;
  background-color: #0A192F;
}

.page-resources-789b-game-selection-overview__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  position: relative;
}

.page-resources-789b-game-selection-overview__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-789b-game-selection-overview__section-subtitle {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-789b-game-selection-overview__content-area p {
  margin-bottom: 15px;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-resources-789b-game-selection-overview__content-area ul,
.page-resources-789b-game-selection-overview__content-area ol {
  margin-bottom: 20px;
  padding-left: 30px;
  color: #E0E0E0;
}

.page-resources-789b-game-selection-overview__content-area li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-789b-game-selection-overview__content-area strong {
  color: #FFD700;
}

.page-resources-789b-game-selection-overview__image-wrapper {
  text-align: center;
  margin: 40px 0;
  background-color: #1A2B47; /* Slightly lighter dark blue for image background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-789b-game-selection-overview__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto 15px auto;
  border: 2px solid #FFD700;
}

.page-resources-789b-game-selection-overview__image-caption {
  font-style: italic;
  color: #B0B0B0;
  font-size: 0.95em;
}

.page-resources-789b-game-selection-overview__cta-card {
  background-color: #1A2B47; /* Slightly lighter dark blue */
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-789b-game-selection-overview__cta-card-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-789b-game-selection-overview__cta-card-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-resources-789b-game-selection-overview__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-resources-789b-game-selection-overview__related-links {
  background-color: #0A192F;
  padding: 50px 0;
  text-align: center;
}

.page-resources-789b-game-selection-overview__link-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-789b-game-selection-overview__link-item {
  background-color: #1A2B47;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  color: #FFD700;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #FFD700;
  font-size: 1.1em;
}

.page-resources-789b-game-selection-overview__link-item:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-789b-game-selection-overview__hero-title {
    font-size: 2.5em;
  }

  .page-resources-789b-game-selection-overview__hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-789b-game-selection-overview__section-title {
    font-size: 2em;
  }

  .page-resources-789b-game-selection-overview__section-subtitle {
    font-size: 1.5em;
  }

  .page-resources-789b-game-selection-overview__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-resources-789b-game-selection-overview__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-resources-789b-game-selection-overview__link-list {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-resources-789b-game-selection-overview__hero-title {
    font-size: 2em;
  }

  .page-resources-789b-game-selection-overview__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-789b-game-selection-overview__section-title {
    font-size: 1.8em;
  }

  .page-resources-789b-game-selection-overview__section-subtitle {
    font-size: 1.3em;
  }

  .page-resources-789b-game-selection-overview__content-area p,
  .page-resources-789b-game-selection-overview__content-area li {
    font-size: 1em;
  }

  .page-resources-789b-game-selection-overview__cta-card-title {
    font-size: 1.8em;
  }

  .page-resources-789b-game-selection-overview__cta-card-description {
    font-size: 1em;
  }
}