.page-resources-latest-game-strategies {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-resources-latest-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-latest-game-strategies__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #003366; /* Main brand color for hero background */
  color: #ffffff;
  overflow: hidden;
}

.page-resources-latest-game-strategies__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.page-resources-latest-game-strategies__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-latest-game-strategies__hero-section .page-resources-latest-game-strategies__container {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px;
}

.page-resources-latest-game-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFCC00; /* Auxiliary brand color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-game-strategies__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-resources-latest-game-strategies__btn-primary,
.page-resources-latest-game-strategies__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.page-resources-latest-game-strategies__btn-primary {
  background-color: #FFCC00; /* Auxiliary brand color */
  color: #003366; /* Contrasting text color */
  border: 2px solid #FFCC00;
}

.page-resources-latest-game-strategies__btn-primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.page-resources-latest-game-strategies__btn-secondary {
  background-color: transparent;
  color: #FFCC00; /* Auxiliary brand color */
  border: 2px solid #FFCC00;
}

.page-resources-latest-game-strategies__btn-secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-resources-latest-game-strategies__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #FFCC00; /* Auxiliary brand color for titles */
  position: relative;
  padding-bottom: 15px;
}

.page-resources-latest-game-strategies__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #003366; /* Main brand color */
  border-radius: 2px;
}

.page-resources-latest-game-strategies__intro-section,
.page-resources-latest-game-strategies__expert-tips-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #ffffff;
}

.page-resources-latest-game-strategies__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.page-resources-latest-game-strategies__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 40px 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.page-resources-latest-game-strategies__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.page-resources-latest-game-strategies__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text readability */
  z-index: 1;
  pointer-events: none; /* Allow click through to video */
  border-radius: 10px;
}

.page-resources-latest-game-strategies__strategies-section,
.page-resources-latest-game-strategies__faq-section,
.page-resources-latest-game-strategies__cta-section {
  padding: 80px 0;
  background-color: #003366; /* Main brand color */
  color: #ffffff;
}

.page-resources-latest-game-strategies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-latest-game-strategies__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-resources-latest-game-strategies__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-latest-game-strategies__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFCC00; /* Auxiliary brand color */
}

.page-resources-latest-game-strategies__card-text {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  flex-grow: 1;
}

.page-resources-latest-game-strategies__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-latest-game-strategies__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #FFCC00; /* Highlight with auxiliary color */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-game-strategies__list-item-title {
  font-size: 1.4em;
  color: #FFCC00;
  margin-bottom: 10px;
}

.page-resources-latest-game-strategies__list-item-text {
  font-size: 1em;
  line-height: 1.7;
}

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

.page-resources-latest-game-strategies__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-resources-latest-game-strategies__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-latest-game-strategies__faq-title {
  margin: 0;
  color: #FFCC00; /* Auxiliary brand color */
}

.page-resources-latest-game-strategies__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFCC00;
}

.page-resources-latest-game-strategies__faq-item.active .page-resources-latest-game-strategies__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-latest-game-strategies__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-resources-latest-game-strategies__faq-item.active .page-resources-latest-game-strategies__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 15px 25px 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-latest-game-strategies__hero-title {
    font-size: 3em;
  }

  .page-resources-latest-game-strategies__section-title {
    font-size: 2em;
  }

  .page-resources-latest-game-strategies__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-latest-game-strategies__hero-title {
    font-size: 2.2em;
  }

  .page-resources-latest-game-strategies__hero-description {
    font-size: 1.1em;
  }

  .page-resources-latest-game-strategies__btn-primary,
  .page-resources-latest-game-strategies__btn-secondary {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-resources-latest-game-strategies__section-title {
    font-size: 1.8em;
  }

  .page-resources-latest-game-strategies__intro-section,
  .page-resources-latest-game-strategies__strategies-section,
  .page-resources-latest-game-strategies__expert-tips-section,
  .page-resources-latest-game-strategies__faq-section,
  .page-resources-latest-game-strategies__cta-section {
    padding: 50px 0;
  }

  .page-resources-latest-game-strategies__container {
    padding: 0 15px;
  }

  .page-resources-latest-game-strategies__card {
    padding: 20px;
  }

  .page-resources-latest-game-strategies__card-image {
    height: 180px;
  }

  .page-resources-latest-game-strategies__list-item {
    padding: 20px;
  }

  .page-resources-latest-game-strategies__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-resources-latest-game-strategies__faq-answer {
    padding: 0 20px;
  }

  .page-resources-latest-game-strategies__faq-item.active .page-resources-latest-game-strategies__faq-answer {
    padding: 10px 20px 20px;
  }

  /* Mobile responsiveness for images, videos, and buttons */
  .page-resources-latest-game-strategies img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-latest-game-strategies video,
  .page-resources-latest-game-strategies__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-latest-game-strategies__video-section,
  .page-resources-latest-game-strategies__video-container,
  .page-resources-latest-game-strategies__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-latest-game-strategies__cta-button,
  .page-resources-latest-game-strategies__btn-primary,
  .page-resources-latest-game-strategies__btn-secondary,
  .page-resources-latest-game-strategies a[class*="button"],
  .page-resources-latest-game-strategies a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 15px; /* Add some space between stacked buttons */
  }

  .page-resources-latest-game-strategies__cta-buttons,
  .page-resources-latest-game-strategies__button-group,
  .page-resources-latest-game-strategies__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
  }
}

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

  .page-resources-latest-game-strategies__hero-description {
    font-size: 1em;
  }

  .page-resources-latest-game-strategies__section-title {
    font-size: 1.5em;
  }

  .page-resources-latest-game-strategies__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-resources-latest-game-strategies__faq-title {
    font-size: 1em;
  }

  .page-resources-latest-game-strategies__faq-answer {
    padding: 0 15px;
  }

  .page-resources-latest-game-strategies__faq-item.active .page-resources-latest-game-strategies__faq-answer {
    padding: 8px 15px 15px;
  }
}

/* Contrast Fixes - Ensure text is always readable */
.page-resources-latest-game-strategies__dark-bg {
  color: #ffffff; /* Deep background, light text */
}

.page-resources-latest-game-strategies__light-bg {
  color: #333333; /* Light background, dark text (if any section uses it) */
}

.page-resources-latest-game-strategies__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-resources-latest-game-strategies__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}