/* style/game-strategy-guides.css */
.page-game-strategy-guides {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-game-strategy-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-strategy-guides__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #017439; /* Primary brand color for hero background */
  min-height: 600px;
}

.page-game-strategy-guides__hero-section .page-game-strategy-guides__container {
  position: relative;
  z-index: 2;
}

.page-game-strategy-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-game-strategy-guides__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFF00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-strategy-guides__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-strategy-guides__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-game-strategy-guides__section {
  padding: 60px 0;
}

.page-game-strategy-guides__content-area {
  background-color: #0a0a0a; /* Dark background for content sections */
  color: #ffffff;
}

.page-game-strategy-guides__dark-section {
  background-color: #017439; /* Primary brand color for dark sections */
  color: #ffffff;
}

.page-game-strategy-guides__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #FFFF00;
}

.page-game-strategy-guides__subsection-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #FFFF00;
}

.page-game-strategy-guides__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

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

.page-game-strategy-guides__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-game-strategy-guides__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFFF00;
}

.page-game-strategy-guides__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-game-strategy-guides__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  object-fit: cover;
}

.page-game-strategy-guides__image-right {
  width: 100%;
  max-width: 500px;
  float: right;
  margin: 0 0 20px 30px;
  border-radius: 10px;
  object-fit: cover;
}

.page-game-strategy-guides__image-left {
  width: 100%;
  max-width: 500px;
  float: left;
  margin: 0 30px 20px 0;
  border-radius: 10px;
  object-fit: cover;
}

.page-game-strategy-guides__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-game-strategy-guides__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-game-strategy-guides__list-item strong {
  color: #FFFF00;
}

.page-game-strategy-guides__faq-list {
  margin-top: 40px;
}

.page-game-strategy-guides__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-game-strategy-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #017439; /* Primary brand color */
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2em;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-game-strategy-guides__faq-question:hover {
  background-color: #005f2e;
}

.page-game-strategy-guides__faq-title {
  margin: 0;
  color: #FFFF00;
  font-size: 1.2em;
}

.page-game-strategy-guides__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFFF00;
}

.page-game-strategy-guides__faq-item.active .page-game-strategy-guides__faq-toggle {
  transform: rotate(45deg);
}

.page-game-strategy-guides__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
}

.page-game-strategy-guides__faq-item.active .page-game-strategy-guides__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px;
}

.page-game-strategy-guides__faq-answer p {
  margin: 0;
  font-size: 1em;
}

.page-game-strategy-guides__cta-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background-color: #017439; /* Primary brand color */
  color: #ffffff;
  overflow: hidden;
}

.page-game-strategy-guides__cta-section .page-game-strategy-guides__container {
  position: relative;
  z-index: 2;
}

.page-game-strategy-guides__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-game-strategy-guides__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFF00;
}

.page-game-strategy-guides__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-strategy-guides__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-game-strategy-guides__btn-primary {
  display: inline-block;
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

.page-game-strategy-guides__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-3px);
}

.page-game-strategy-guides__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFFF00;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  border: 2px solid #FFFF00;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-game-strategy-guides__btn-secondary:hover {
  background-color: #FFFF00;
  color: #C30808;
  transform: translateY(-3px);
}

/* Image and float clearing for responsive layout */
.page-game-strategy-guides__content-area::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-strategy-guides__hero-title {
    font-size: 2.8em;
  }

  .page-game-strategy-guides__section-title {
    font-size: 2em;
  }

  .page-game-strategy-guides__subsection-title {
    font-size: 1.5em;
  }

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

  .page-game-strategy-guides__image-right,
  .page-game-strategy-guides__image-left {
    float: none;
    margin: 30px auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-game-strategy-guides {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-game-strategy-guides__hero-section {
    padding: 60px 0;
  }

  .page-game-strategy-guides__hero-title {
    font-size: 2.2em;
  }

  .page-game-strategy-guides__hero-description {
    font-size: 1em;
  }

  .page-game-strategy-guides__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-strategy-guides__section {
    padding: 40px 0;
  }

  .page-game-strategy-guides__section-title {
    font-size: 1.8em;
  }

  .page-game-strategy-guides__subsection-title {
    font-size: 1.3em;
  }

  .page-game-strategy-guides__paragraph {
    font-size: 1em;
  }

  .page-game-strategy-guides__feature-card {
    padding: 20px;
  }

  .page-game-strategy-guides__feature-title {
    font-size: 1.3em;
  }

  .page-game-strategy-guides__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-game-strategy-guides__faq-title {
    font-size: 1em;
  }

  .page-game-strategy-guides__faq-answer {
    padding: 15px 20px;
  }

  .page-game-strategy-guides__cta-title {
    font-size: 2.2em;
  }

  .page-game-strategy-guides__cta-description {
    font-size: 1em;
  }

  .page-game-strategy-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  /* Mobile responsive images */
  .page-game-strategy-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-game-strategy-guides__section,
  .page-game-strategy-guides__card,
  .page-game-strategy-guides__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-game-strategy-guides__hero-section,
  .page-game-strategy-guides__cta-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for mobile */
  }

  /* Mobile responsive buttons */
  .page-game-strategy-guides__cta-button,
  .page-game-strategy-guides__btn-primary,
  .page-game-strategy-guides__btn-secondary,
  .page-game-strategy-guides a[class*="button"],
  .page-game-strategy-guides a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-game-strategy-guides__cta-buttons,
  .page-game-strategy-guides__button-group,
  .page-game-strategy-guides__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-game-strategy-guides__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}