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

.page-game-guides__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: 10px; /* Small top padding */
}

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

.page-game-guides__hero-content {
  position: relative; /* Ensure content is above image if any overlap */
  max-width: 900px;
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, rgba(8, 22, 15, 0.95) 100%); /* Semi-transparent overlay for readability */
  margin-top: -100px; /* Adjust to slightly overlap the image for visual flow */
  border-radius: 10px;
  z-index: 1; /* Ensure content is above image */
}

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

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

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

.page-game-guides__dark-bg {
  background-color: #11271B; /* Card B G */
}

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

.page-game-guides__container--flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-game-guides__container--reverse {
  flex-direction: row-reverse;
}

.page-game-guides__text-content {
  flex: 1;
}

.page-game-guides__image-wrapper {
  flex: 1;
  min-width: 200px; /* Minimum size requirement */
}

.page-game-guides__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-game-guides__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #57E38D; /* Glow */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-game-guides__paragraph {
  font-size: 1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

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

.page-game-guides__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="%2357E38D"><path d="M9 21.035l-9-8.638 2.791-2.875 6.209 5.922 12.21-12.423 2.79 2.875z"/></svg>') no-repeat left 5px;
  background-size: 16px;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-game-guides__list-item-title {
  color: #F2FFF6;
}

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

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

.page-game-guides__cta-button--center {
  display: block;
  margin: 30px auto 0 auto;
  text-align: center;
}

.page-game-guides__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-guides__btn-secondary:hover {
  background-color: rgba(87, 227, 141, 0.1);
}

.page-game-guides__btn-secondary--large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

.page-game-guides__cta-button--large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

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

.page-game-guides__card {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
  color: #F2FFF6; /* Text Main */
}

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

.page-game-guides__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
  min-width: 200px; /* Minimum size requirement */
  display: block;
}

.page-game-guides__card-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-guides__card-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-game-guides__faq-section {
  padding: 60px 20px;
}

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

.page-game-guides__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E; /* Divider */
  list-style: none; /* For details/summary */
}

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

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

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

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

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

.page-game-guides__cta-bottom-section {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-game-guides__cta-bottom-section .page-game-guides__section-title {
  color: #F2C14E; /* Gold */
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-guides__container--flex {
    flex-direction: column;
  }
  .page-game-guides__hero-content {
    margin-top: -50px; /* Less overlap on smaller screens */
  }
}

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

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

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

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

  .page-game-guides__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

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

  .page-game-guides__list li {
    font-size: 0.95rem;
  }

  .page-game-guides__cta-button,
  .page-game-guides__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 20px !important;
    font-size: 1rem !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-game-guides__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-game-guides__card {
    padding: 20px;
  }

  .page-game-guides__card-title {
    font-size: 1.2rem;
  }

  .page-game-guides__card-description {
    font-size: 0.9rem;
  }

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

  .page-game-guides__faq-answer {
    padding: 10px 20px 15px 20px;
    font-size: 0.95rem;
  }

  .page-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-game-guides__section,
  .page-game-guides__card,
  .page-game-guides__container,
  .page-game-guides__hero-section,
  .page-game-guides__image-wrapper,
  .page-game-guides__text-content,
  .page-game-guides__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-game-guides__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-game-guides__why-guide-section,
  .page-game-guides__sports-betting-section,
  .page-game-guides__casino-section,
  .page-game-guides__slots-section,
  .page-game-guides__fishing-section,
  .page-game-guides__other-games-section,
  .page-game-guides__faq-section,
  .page-game-guides__cta-bottom-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-game-guides__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-guides__hero-image {
    margin-top: 0; /* Remove negative margin on mobile */
  }
  .page-game-guides__hero-content {
    margin-top: -50px; /* Adjust to be below image, not overlapping */
  }
}