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

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

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

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-game-guides__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 20px;
  z-index: 1;
  margin-top: -150px; /* Pull content slightly over the image for better flow, not overlapping text */
  position: relative;
  background-color: #11271B; /* Card BG */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

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

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

.page-game-guides__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-guides__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-game-guides__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background: transparent;
  color: #2AD16F; /* Adjusted for contrast */
  text-decoration: none;
  border: 2px solid #2AD16F; /* Button color */
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-left: 15px;
}

.page-game-guides__btn-secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
}

.page-game-guides__btn-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-guides__btn-link:hover {
  color: #F2C14E; /* Gold */
}

.page-game-guides__section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
}

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

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-game-guides__section-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-game-guides__game-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

.page-game-guides__game-card:hover {
  transform: translateY(-5px);
}

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

.page-game-guides__card-description {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-game-guides__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-game-guides__step-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-game-guides__step-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__step-description {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-game-guides__content-block {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-game-guides__content-subtitle {
  font-size: 1.6em;
  color: #F2FFF6; /* Text Main */
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__list {
  list-style: disc;
  margin-left: 20px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-game-guides__list li {
  margin-bottom: 10px;
}

.page-game-guides__paragraph {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-game-guides__cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-game-guides__faq-section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
}

.page-game-guides__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-game-guides__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-size: 1.2em;
  font-weight: bold;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-game-guides__faq-question:hover {
  background-color: #13994A;
}

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

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

.page-game-guides__faq-answer {
  padding: 20px 30px;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

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

.page-game-guides__conclusion {
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-guides__hero-content {
    margin-top: -100px;
    padding: 30px;
  }

  .page-game-guides__main-title {
    font-size: clamp(1.8em, 4vw, 2.8em);
  }

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

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

  .page-game-guides__hero-content {
    margin-top: -80px;
    padding: 20px;
  }

  .page-game-guides__main-title {
    font-size: clamp(1.5em, 5vw, 2.5em);
  }

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

  .page-game-guides__btn-primary,
  .page-game-guides__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important;
    margin-bottom: 10px;
  }

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

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

  .page-game-guides__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-game-guides__game-list {
    grid-template-columns: 1fr;
  }

  .page-game-guides__game-card,
  .page-game-guides__step-item,
  .page-game-guides__content-block,
  .page-game-guides__faq-item {
    padding: 20px;
  }

  .page-game-guides__card-title,
  .page-game-guides__step-title,
  .page-game-guides__content-subtitle {
    font-size: 1.3em;
  }

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

  .page-game-guides__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero-content {
    margin-top: -60px;
    padding: 15px;
  }
  .page-game-guides__main-title {
    font-size: clamp(1.3em, 6vw, 2em);
  }
  .page-game-guides__section-title {
    font-size: 1.5em;
  }
}