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

.page-game-guides__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  text-align: center;
  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;
  filter: brightness(0.6);
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Pull content up over the image for visual effect, but not overlapping text */
  color: #F2FFF6;
}

.page-game-guides__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-guides__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8;
}

.page-game-guides__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  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: none;
  border: 2px solid #2AD16F;
  color: #2AD16F;
  margin-left: 20px;
}

.page-game-guides__cta-button--secondary:hover {
  background: #2AD16F;
  color: #ffffff;
}

.page-game-guides__cta-button--small {
  padding: 10px 20px;
  font-size: 1rem;
}

.page-game-guides__section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides__section-title {
  font-size: 2.2rem;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-game-guides__text-block {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-game-guides__how-to-get .page-game-guides__text-block {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__steps-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.page-game-guides__step-card {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  flex: 1 1 calc(33% - 40px);
  max-width: calc(33% - 40px);
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-game-guides__step-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-guides__step-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-game-guides__step-description {
  font-size: 1rem;
  color: #A7D9B8;
}

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

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

.page-game-guides__strategy-card {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-game-guides__strategy-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-game-guides__card-text {
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.7;
}

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

.page-game-guides__offer-card {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

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

.page-game-guides__safety-list li {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  color: #F2FFF6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-game-guides__safety-list li p {
  margin: 0;
  color: #A7D9B8;
}

.page-game-guides__safety-list li strong {
  color: #F2C14E;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 10px;
}

.page-game-guides__faq-section {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 40px auto;
}

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

.page-game-guides__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-game-guides__faq-item[open] > .page-game-guides__faq-question {
  background-color: #1E3A2A; /* Divider color for active FAQ */
}

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

.page-game-guides__faq-toggle {
  font-size: 1.5rem;
  font-weight: normal;
  color: #2AD16F;
  margin-left: 15px;
}

.page-game-guides__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.7;
}

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

.page-game-guides__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

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

  .page-game-guides__step-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-content {
    margin-top: -80px;
    padding: 15px;
  }

  .page-game-guides__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-game-guides__description {
    font-size: 1rem;
  }

  .page-game-guides__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-game-guides__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-game-guides__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .page-game-guides__section {
    margin: 20px auto;
    padding: 25px 15px;
  }

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

  .page-game-guides__text-block {
    font-size: 0.95rem;
  }

  .page-game-guides__steps-container {
    flex-direction: column;
    gap: 20px;
  }

  .page-game-guides__step-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

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

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

  .page-game-guides__hero-image-wrapper,
  .page-game-guides__step-image,
  .page-game-guides__strategy-image,
  .page-game-guides__section,
  .page-game-guides__card,
  .page-game-guides__container,
  .page-game-guides__steps-container,
  .page-game-guides__strategy-grid,
  .page-game-guides__offers-grid,
  .page-game-guides__faq-section,
  .page-game-guides__cta-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal overflow */
  }

  .page-game-guides__cta-button,
  .page-game-guides__btn-primary,
  .page-game-guides__btn-secondary,
  .page-game-guides a[class*="button"],
  .page-game-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-guides__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }
}

/* Ensure content area images are not too small */
.page-game-guides img:not(.page-game-guides__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Specific content image sizes */
.page-game-guides__step-image {
  width: 100%;
  height: 250px; /* Adjust height for better visual */
}

.page-game-guides__strategy-image {
  width: 100%;
  height: 200px; /* Adjust height */
}

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

/* Contrast fixes for dark background */
.page-game-guides__dark-bg {
  color: #ffffff; /* Deep Green background, white text */
  background: #0A4B2C;
}
.page-game-guides__light-bg {
  color: #333333; /* Default light background, dark text */
  background: #ffffff;
}
.page-game-guides__medium-bg {
  color: #000000; /* Medium background, dark text */
  background: #22C768;
}

.page-game-guides p, .page-game-guides li {
  color: #A7D9B8; /* Secondary text color for general content */
}

.page-game-guides__card-text {
  color: #A7D9B8;
}