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

.page-resources-pg66-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-pg66-game-strategy__hero {
  background: linear-gradient(135deg, #0A2463 0%, #2a4a8c 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-pg66-game-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for title highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-pg66-game-strategy__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styling */
.page-resources-pg66-game-strategy__section {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #eee;
}

.page-resources-pg66-game-strategy__section--dark {
  background-color: #f1f1f1;
}

.page-resources-pg66-game-strategy__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Dark blue for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-pg66-game-strategy__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

/* Content Grid */
.page-resources-pg66-game-strategy__content-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-resources-pg66-game-strategy__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-resources-pg66-game-strategy__text-content {
  flex: 1;
  min-width: 300px;
}

.page-resources-pg66-game-strategy__text-content h3 {
  color: #0A2463;
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-pg66-game-strategy__text-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-resources-pg66-game-strategy__text-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #444;
}

.page-resources-pg66-game-strategy__text-content li {
  margin-bottom: 8px;
}

.page-resources-pg66-game-strategy__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

/* Game Strategy Grid */
.page-resources-pg66-game-strategy__game-strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-pg66-game-strategy__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-resources-pg66-game-strategy__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-resources-pg66-game-strategy__game-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-resources-pg66-game-strategy__game-card-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-pg66-game-strategy__game-card-content p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* Buttons */
.page-resources-pg66-game-strategy__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  cursor: pointer;
  margin-top: auto; /* Push button to bottom of card */
}

.page-resources-pg66-game-strategy__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2463; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-resources-pg66-game-strategy__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-pg66-game-strategy__btn--secondary {
  background-color: #0A2463; /* Dark blue */
  color: #FFFFFF;
  border: 2px solid #0A2463;
}

.page-resources-pg66-game-strategy__btn--secondary:hover {
  background-color: #071a47;
  transform: translateY(-2px);
}

.page-resources-pg66-game-strategy__btn--tertiary {
  background-color: transparent;
  color: #0A2463; /* Dark blue */
  border: 2px solid #0A2463;
}

.page-resources-pg66-game-strategy__btn--tertiary:hover {
  background-color: #0A2463;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-resources-pg66-game-strategy__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* FAQ Section */
.page-resources-pg66-game-strategy__section--faq {
  background-color: #f8f9fa;
}

.page-resources-pg66-game-strategy__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-pg66-game-strategy__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-pg66-game-strategy__faq-question {
  font-size: 1.4em;
  color: #0A2463;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-pg66-game-strategy__faq-answer {
  font-size: 1em;
  color: #555;
}

/* Final CTA Section */
.page-resources-pg66-game-strategy__cta-final {
  background: linear-gradient(45deg, #0A2463, #3a5c9e);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

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

.page-resources-pg66-game-strategy__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-pg66-game-strategy__hero-title {
    font-size: 2.8em;
  }
  .page-resources-pg66-game-strategy__section-title {
    font-size: 2em;
  }
  .page-resources-pg66-game-strategy__game-card-title {
    font-size: 1.4em;
  }
  .page-resources-pg66-game-strategy__content-grid {
    flex-direction: column;
  }
  .page-resources-pg66-game-strategy__content-grid--reverse {
    flex-direction: column;
  }
  .page-resources-pg66-game-strategy__text-content, .page-resources-pg66-game-strategy__image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-resources-pg66-game-strategy__hero {
    padding: 80px 0;
  }
  .page-resources-pg66-game-strategy__hero-title {
    font-size: 2.2em;
  }
  .page-resources-pg66-game-strategy__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-pg66-game-strategy__section {
    padding: 40px 0;
  }
  .page-resources-pg66-game-strategy__section-title {
    font-size: 1.8em;
  }
  .page-resources-pg66-game-strategy__cta-title {
    font-size: 2.2em;
  }
  .page-resources-pg66-game-strategy__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-resources-pg66-game-strategy__btn--large {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-resources-pg66-game-strategy__game-card-image {
    height: 180px;
  }
  .page-resources-pg66-game-strategy__game-card-content {
    padding: 20px;
  }
  .page-resources-pg66-game-strategy__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-resources-pg66-game-strategy__hero-title {
    font-size: 1.8em;
  }
  .page-resources-pg66-game-strategy__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-pg66-game-strategy__section-title {
    font-size: 1.5em;
  }
  .page-resources-pg66-game-strategy__cta-title {
    font-size: 1.8em;
  }
  .page-resources-pg66-game-strategy__game-strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-pg66-game-strategy__game-card-image {
    height: 150px;
  }
}