.page-game-guides {
  font-family: Arial, sans-serif;
  color: #F2FFF6; /* Main text color for dark background */
  background-color: #08160F; /* Overall page background */
}

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

.page-game-guides__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-guides__dark-section {
  background-color: #0A4B2C; /* Deep Green from custom palette */
}

.page-game-guides__section-title {
  font-size: 2.5rem;
  color: #F2FFF6;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-game-guides__paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #A7D9B8; /* Secondary text color */
}

.page-game-guides__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.page-game-guides__list li {
  background: #11271B; /* Card BG */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  color: #F2FFF6;
  font-size: 1rem;
  line-height: 1.6;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-game-guides__list--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  text-align: center;
}

.page-game-guides__list--columns li {
  text-align: center;
}

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary,
.page-game-guides__btn-text {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  word-wrap: normal;
  box-sizing: border-box;
}

.page-game-guides__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

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

.page-game-guides__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-game-guides__btn-secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
  box-shadow: 0 0 15px rgba(42, 209, 111, 0.5);
}

.page-game-guides__btn-text {
  background: none;
  color: #57E38D;
  border: 1px solid transparent;
  padding: 5px 10px;
  font-size: 0.9rem;
  white-space: normal;
}

.page-game-guides__btn-text:hover {
  border-color: #57E38D;
  text-decoration: underline;
}

.page-game-guides__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-game-guides__cta-center {
  margin-top: 40px;
}

/* Hero Section */
.page-game-guides__hero-section {
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  position: relative;
  overflow: hidden;
}

.page-game-guides__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure image covers the area */
  min-height: 200px; /* Minimum size for images */
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides__main-title {
  font-size: 3.2rem; /* Using clamp for h1 is allowed if necessary, but avoiding fixed large size is preferred */
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.page-game-guides__hero-description {
  font-size: 1.3rem;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* General Principles Grid */
.page-game-guides__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-guides__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-align: center;
  border: 1px solid #2E7A4E;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-game-guides__card-title {
  font-size: 1.5rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__card-description {
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Game Categories */
.page-game-guides__game-category {
  background-color: #11271B;
  border-radius: 12px;
  padding: 40px;
  margin-top: 40px;
  border: 1px solid #2E7A4E;
  text-align: left;
}

.page-game-guides__category-title {
  font-size: 2rem;
  color: #F2FFF6;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-game-guides__category-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
  min-width: 200px;
  min-height: 200px;
}

/* Responsible Gaming */
.page-game-guides__grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-guides__info-block {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  border: 1px solid #2E7A4E;
}

.page-game-guides__info-title {
  font-size: 1.6rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

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

/* FAQ Section */
.page-game-guides__faq-section {
  background-color: #0A4B2C;
}

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

.page-game-guides__faq-item {
  background-color: #11271B;
  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.2rem;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  transition: background-color 0.3s ease;
}

.page-game-guides__faq-question:hover {
  background-color: #1E3A2A; /* Darker Divider color */
}

.page-game-guides__faq-item[open] .page-game-guides__faq-question {
  background-color: #1E3A2A;
}

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

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

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

.page-game-guides__faq-answer .page-game-guides__btn-text {
  margin-top: 10px;
  display: inline-block;
}

/* Hide default details arrow */
.page-game-guides__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-game-guides__faq-item summary {
  list-style: none;
}

/* Final CTA */
.page-game-guides__cta-final {
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-guides__main-title {
    font-size: 2.8rem;
  }
  .page-game-guides__hero-description {
    font-size: 1.2rem;
  }
  .page-game-guides__section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-game-guides__main-title {
    font-size: 2.2rem;
  }
  .page-game-guides__hero-description {
    font-size: 1.1rem;
  }
  .page-game-guides__section-title {
    font-size: 1.8rem;
  }
  .page-game-guides__paragraph,
  .page-game-guides__list li,
  .page-game-guides__card-description,
  .page-game-guides__info-text,
  .page-game-guides__faq-answer p {
    font-size: 1rem;
  }
  .page-game-guides__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-game-guides__hero-image-wrapper {
    margin-bottom: 30px;
  }
  .page-game-guides__section {
    padding: 40px 0;
  }
  .page-game-guides__container {
    padding: 0 15px;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides__btn-primary,
  .page-game-guides__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 20px;
  }
  .page-game-guides__card,
  .page-game-guides__game-category,
  .page-game-guides__info-block {
    padding: 25px;
  }
  .page-game-guides__card-image,
  .page-game-guides__category-image {
    height: auto;
    max-height: 300px;
    min-width: 200px !important;
    min-height: 200px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  /* All images responsive */
  .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-image-wrapper,
  .page-game-guides__game-category,
  .page-game-guides__info-block,
  .page-game-guides__faq-item,
  .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; /* Ensure no overflow */
  }
  .page-game-guides__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-game-guides__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-game-guides__main-title {
    font-size: 1.8rem;
  }
  .page-game-guides__section-title {
    font-size: 1.6rem;
  }
  .page-game-guides__card-title {
    font-size: 1.3rem;
  }
  .page-game-guides__faq-question {
    font-size: 1rem;
  }
}