.page-game-strategy-guides {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

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

.page-game-strategy-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles padding-top from header */
  overflow: hidden;
  color: #F2FFF6;
}

.page-game-strategy-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3; /* Slightly dim the background image for text readability */
}

.page-game-strategy-guides__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 10px;
  margin-top: 50px; /* Space from top */
}

.page-game-strategy-guides__main-title {
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* No fixed font-size, rely on clamp for responsiveness if needed */
}

.page-game-strategy-guides__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-game-strategy-guides__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-strategy-guides__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-game-strategy-guides__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-game-strategy-guides__cta-button--secondary {
  background: #1E3A2A; /* Divider */
  color: #F2FFF6;
  border: 1px solid #2E7A4E; /* Border */
}

.page-game-strategy-guides__cta-button--secondary:hover {
  background: #2E7A4E;
  box-shadow: 0 5px 15px rgba(46, 122, 78, 0.4);
}

.page-game-strategy-guides__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-game-strategy-guides__section:last-of-type {
  border-bottom: none;
}

.page-game-strategy-guides__section-title {
  font-size: 2.5em;
  color: #57E38D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-game-strategy-guides__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #11A84E, #22C768);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-game-strategy-guides__introduction-section p,
.page-game-strategy-guides__principles-section p,
.page-game-strategy-guides__advanced-tips-section p,
.page-game-strategy-guides__responsible-gaming-section p,
.page-game-strategy-guides__conclusion-section p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-game-strategy-guides__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  object-fit: cover;
}

.page-game-strategy-guides__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-game-strategy-guides__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-strategy-guides__list-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-top: 0;
  margin-bottom: 15px;
}

.page-game-strategy-guides__list-item p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 0;
}

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

.page-game-strategy-guides__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-game-strategy-guides__card-title {
  font-size: 1.6em;
  color: #F2C14E; /* Gold */
  margin-top: 0;
  margin-bottom: 15px;
}

.page-game-strategy-guides__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  min-height: 200px; /* Minimum image size requirement */
}

.page-game-strategy-guides__card p {
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-game-strategy-guides__card-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: auto; /* Push button to bottom */
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-strategy-guides__card-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

.page-game-strategy-guides__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-game-strategy-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A;
  list-style: none;
  user-select: none; /* Prevent text selection */
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}

.page-game-strategy-guides__faq-question::-webkit-details-marker {
  display: none;
}

.page-game-strategy-guides__faq-question:hover {
  background-color: #11A84E;
}

.page-game-strategy-guides__faq-item[open] .page-game-strategy-guides__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-game-strategy-guides__faq-qtext {
  font-weight: bold;
  color: #F2FFF6;
}

.page-game-strategy-guides__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #57E38D; /* Glow */
}

.page-game-strategy-guides__faq-item[open] .page-game-strategy-guides__faq-toggle {
  color: #F2C14E; /* Gold */
}

.page-game-strategy-guides__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B;
  border-top: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-game-strategy-guides {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-game-strategy-guides__hero-content {
    padding: 30px 15px;
    margin-top: 30px;
  }

  .page-game-strategy-guides__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em); /* Responsive font size for H1 */
    margin-bottom: 15px;
  }

  .page-game-strategy-guides__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-game-strategy-guides__cta-button,
  .page-game-strategy-guides__cta-button--large,
  .page-game-strategy-guides__card-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px !important;
    font-size: 1em !important;
  }

  .page-game-strategy-guides__strategy-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-game-strategy-guides__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-game-strategy-guides__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Images responsive */
  .page-game-strategy-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-strategy-guides__hero-image {
    height: 300px; /* Adjust hero image height for mobile */
  }

  .page-game-strategy-guides__card-image {
    height: 200px; /* Adjust card image height for mobile */
  }

  .page-game-strategy-guides__list-item,
  .page-game-strategy-guides__card,
  .page-game-strategy-guides__faq-item {
    padding: 15px;
  }

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

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

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

  /* Ensure all containers containing buttons/images/videos are responsive */
  .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;
  }
}

/* Color contrast safety */
.page-game-strategy-guides__dark-bg {
  color: #ffffff;
  background: #11A84E;
}

.page-game-strategy-guides__light-bg {
  color: #333333;
  background: #ffffff;
}

.page-game-strategy-guides__medium-bg {
  color: #000000;
  background: #22C768;
}

.page-game-strategy-guides__content-area,
.page-game-strategy-guides__text-block {
  color: #F2FFF6;
}

.page-game-strategy-guides p,
.page-game-strategy-guides li {
  color: #A7D9B8;
}

.page-game-strategy-guides__card {
  background: #11271B;
  color: #F2FFF6;
  border: 1px solid #2E7A4E;
}

.page-game-strategy-guides__dark-section {
  background: #0A4B2C;
  color: #ffffff;
}

.page-game-strategy-guides__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-game-strategy-guides__btn-secondary {
  background: #1E3A2A;
  color: #F2FFF6;
  border: 2px solid #2E7A4E;
}

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

.page-game-strategy-guides__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}