.page-game-guides {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero Section */
.page-game-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for visual separation, body handles header offset */
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
  overflow: hidden;
}

.page-game-guides__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-game-guides__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Slightly faded background image */
  display: block;
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-game-guides__main-title {
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

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

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

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
}

.page-game-guides__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button Gradient */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-game-guides__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Button Gradient start color */
  border: 2px solid #2AD16F; /* Button Gradient start color */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1); /* Light hover effect */
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

.page-game-guides__btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
}

/* General Section Styles */
.page-game-guides__section {
  padding: 50px 20px;
  text-align: center;
}

.page-game-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-game-guides__section-title {
  color: #F2C14E; /* Gold */
  font-size: 2.2em;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.page-game-guides__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #57E38D; /* Glow */
  border-radius: 2px;
}

.page-game-guides__section-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Wrapper for text and image side-by-side */
.page-game-guides__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
  margin-top: 30px;
}

.page-game-guides__about-39go99 .page-game-guides__content-wrapper {
  flex-direction: row;
  align-items: center;
}

.page-game-guides__text-block {
  flex: 1;
  color: #F2FFF6; /* Text Main */
}

.page-game-guides__text-block p {
  margin-bottom: 15px;
}

.page-game-guides__text-block strong {
  color: #F2C14E; /* Gold */
}

.page-game-guides__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* Guide Cards */
.page-game-guides__guide-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-game-guides__card-title {
  color: #F2C14E; /* Gold */
  font-size: 1.8em;
  margin-bottom: 20px;
}

.page-game-guides__card-content p,
.page-game-guides__card-content li {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
}

.page-game-guides__card-content h4 {
  color: #F2FFF6; /* Text Main */
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.page-game-guides__card-content ol,
.page-game-guides__card-content ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-game-guides__card-content li {
  list-style-type: disc;
  margin-bottom: 8px;
}

.page-game-guides__card-content ol li {
  list-style-type: decimal;
}

/* Game Type Cards */
.page-game-guides__game-type-card {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-game-guides__game-type-card--reverse {
  flex-direction: row-reverse;
}

.page-game-guides__game-type-card .page-game-guides__image-wrapper {
  flex: 1.2; /* Image takes slightly more space */
  min-width: 300px;
  background-color: transparent; /* No background for image in this card type */
  box-shadow: none;
  padding: 0;
}

.page-game-guides__game-type-card .page-game-guides__text-block {
  flex: 1;
  color: #F2FFF6; /* Text Main */
}

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

.page-game-guides__game-type-card .page-game-guides__text-block p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-game-guides__game-type-card .page-game-guides__text-block ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-game-guides__game-type-card .page-game-guides__text-block li {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 8px;
}

/* Feature Cards */
.page-game-guides__optimize-experience .page-game-guides__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-guides__feature-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Push button to bottom */
}

.page-game-guides__feature-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-guides__feature-card .page-game-guides__card-title {
  color: #F2C14E; /* Gold */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-game-guides__feature-card p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  flex-grow: 1; /* Allow paragraph to take available space */
}

.page-game-guides__feature-card ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.page-game-guides__feature-card li {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 5px;
}

/* FAQ Section */
.page-game-guides__faq-section {
  background-color: #0A4B2C; /* Deep Green */
  padding-bottom: 80px;
}

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

.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-game-guides__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-game-guides__faq-question:hover {
  background-color: #2E7A4E; /* Border on hover */
}

.page-game-guides__faq-qtext {
  flex-grow: 1;
  color: #F2C14E; /* Gold */
}

.page-game-guides__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-game-guides__faq-answer {
  padding: 15px 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
  font-size: 0.95em;
}

.page-game-guides__faq-answer p {
  margin-bottom: 10px;
}

/* Conclusion Section */
.page-game-guides__conclusion-section {
  padding-top: 80px;
  background-color: #08160F; /* Background */
}

/* Global Image/Video/Button Responsive Styles */
.page-game-guides img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-game-guides video,
.page-game-guides__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-game-guides__video-section,
.page-game-guides__video-container,
.page-game-guides__video-wrapper,
.page-game-guides__section,
.page-game-guides__card,
.page-game-guides__container,
.page-game-guides__cta-buttons,
.page-game-guides__button-group,
.page-game-guides__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden; /* Ensure content doesn't overflow */
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .page-game-guides__about-39go99 .page-game-guides__content-wrapper {
    flex-direction: column;
  }
  .page-game-guides__game-type-card,
  .page-game-guides__game-type-card--reverse {
    flex-direction: column;
  }
  .page-game-guides__game-type-card .page-game-guides__image-wrapper {
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-game-guides {
    font-size: 15px;
  }

  .page-game-guides__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Small top padding */
  }

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

  .page-game-guides__intro-text {
    font-size: 1em;
  }

  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-guides__btn-primary,
  .page-game-guides__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-game-guides__section {
    padding: 30px 15px;
  }

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

  .page-game-guides__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-game-guides__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-game-guides__guide-card,
  .page-game-guides__game-type-card,
  .page-game-guides__feature-card {
    padding: 20px;
    margin-bottom: 20px;
  }

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

  .page-game-guides__feature-image {
    height: 180px;
  }

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

  .page-game-guides__faq-toggle {
    font-size: 1.3em;
  }

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

  /* Force responsive for all images, videos, and containers */
  .page-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-game-guides video,
  .page-game-guides__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-game-guides__section,
  .page-game-guides__card,
  .page-game-guides__container,
  .page-game-guides__video-section,
  .page-game-guides__video-container,
  .page-game-guides__video-wrapper,
  .page-game-guides__cta-buttons,
  .page-game-guides__button-group,
  .page-game-guides__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-game-guides__video-section {
    padding-top: 10px !important; /* body handles header offset */
  }
}