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

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

.page-game-guides__hero-section {
  position: relative;
  padding: 10px 0 60px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.page-game-guides__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image for text readability */
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: 40px; /* Separates content from image */
  padding: 0 20px;
}

.page-game-guides__main-title {
  font-size: clamp(2em, 5vw, 3.2em);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-game-guides__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-game-guides__cta-button--secondary {
  background: transparent;
  border: 2px solid #2AD16F;
  color: #2AD16F;
  margin-left: 20px;
  box-shadow: none;
}

.page-game-guides__cta-button--secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-game-guides__introduction-section,
.page-game-guides__game-categories-section,
.page-game-guides__strategy-section,
.page-game-guides__faq-section,
.page-game-guides__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-game-guides__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
  font-weight: 700;
}

.page-game-guides__text-block {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

.page-game-guides__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-game-guides__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-game-guides__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-game-guides__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin: 20px 20px 10px 20px;
}

.page-game-guides__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-game-guides__card-title a:hover {
  color: #2AD16F;
}

.page-game-guides__card-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-guides__card-button {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 20px 20px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  text-align: center;
}

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

.page-game-guides__strategy-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 20px auto;
  max-width: 900px;
  text-align: left;
}

.page-game-guides__strategy-list li {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides__strategy-list li strong {
  color: #F2FFF6; /* Text Main */
}

.page-game-guides__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
}

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

.page-game-guides__faq-question:hover {
  color: #2AD16F;
}

.page-game-guides__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-game-guides__faq-item[open] .page-game-guides__faq-toggle {
  transform: rotate(45deg);
}

.page-game-guides__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-game-guides__cta-section .page-game-guides__text-block {
  margin-bottom: 40px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-guides__hero-content {
    margin-top: 20px;
  }
  .page-game-guides__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }
  .page-game-guides__description {
    font-size: 1em;
  }
  .page-game-guides__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-game-guides__introduction-section,
  .page-game-guides__game-categories-section,
  .page-game-guides__strategy-section,
  .page-game-guides__faq-section,
  .page-game-guides__cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-game-guides__container {
    padding: 0 15px;
  }
  .page-game-guides__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-game-guides__main-title {
    font-size: clamp(1.5em, 7vw, 2.5em);
  }
  .page-game-guides__description {
    font-size: 0.95em;
  }
  .page-game-guides__cta-button,
  .page-game-guides__cta-button--secondary {
    width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 15px;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 0;
  }
  .page-game-guides__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }
  .page-game-guides__text-block,
  .page-game-guides__strategy-list li,
  .page-game-guides__faq-answer {
    font-size: 0.95em;
  }
  .page-game-guides__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  /* Image and Video Responsiveness */
  .page-game-guides img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-guides__hero-image-wrapper,
  .page-game-guides__game-card,
  .page-game-guides__game-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-game-guides__game-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides__card-image {
    height: 180px; /* Adjust height for mobile */
  }
  .page-game-guides__introduction-section,
  .page-game-guides__game-categories-section,
  .page-game-guides__strategy-section,
  .page-game-guides__faq-section,
  .page-game-guides__cta-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero-content {
    padding: 0 10px;
  }
  .page-game-guides__main-title {
    font-size: clamp(1.3em, 8vw, 2em);
  }
  .page-game-guides__description {
    font-size: 0.9em;
  }
  .page-game-guides__cta-button,
  .page-game-guides__cta-button--secondary {
    padding: 10px 15px;
    font-size: 0.9em;
  }
  .page-game-guides__section-title {
    font-size: clamp(1.3em, 7vw, 1.8em);
  }
  .page-game-guides__text-block,
  .page-game-guides__strategy-list li,
  .page-game-guides__faq-answer {
    font-size: 0.9em;
  }
  .page-game-guides__faq-question {
    font-size: 0.95em;
    padding: 12px;
  }
  .page-game-guides__game-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px; /* Constrain card width on very small screens */
  }
}