.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
  font-size: 16px;
}

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

/* HERO Section */
.page-game-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  color: #FFF6D6;
}

.page-game-guides__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-game-guides__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.page-game-guides__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-game-guides__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD36B; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-guides__intro-text {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #FFF6D6;
  opacity: 0.9;
}

.page-game-guides__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text on gold button for contrast */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-game-guides__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.page-game-guides__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
}

/* General Section Styles */
.page-game-guides__section {
  padding: 60px 0;
  border-bottom: 1px solid #3A2A12; /* Border color */
}

.page-game-guides__section:last-of-type {
  border-bottom: none;
}

.page-game-guides__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD36B;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-game-guides__text-block {
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: justify;
  color: #FFF6D6;
  opacity: 0.85;
}

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

.page-game-guides__card {
  background: #111111; /* Card Background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12; /* Border color */
  color: #FFF6D6;
}

.page-game-guides__card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Primary color for card titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-guides__card-text {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* Game Category Styles */
.page-game-guides__game-category {
  background: #111111;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  border: 1px solid #3A2A12;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-game-guides__category-title {
  font-size: 2rem;
  color: #FFD36B;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.page-game-guides__category-image {
  width: 100%;
  height: 400px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 1px solid #3A2A12;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-game-guides__category-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: justify;
  color: #FFF6D6;
  opacity: 0.85;
}

.page-game-guides__game-list li {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

.page-game-guides__game-list li:before {
  content: '▶';
  color: #F2C14E;
  position: absolute;
  left: 0;
  font-size: 0.9em;
  top: 3px;
}

.page-game-guides__game-list h4 {
  font-size: 1.25rem;
  color: #F2C14E;
  margin-bottom: 5px;
  font-weight: 600;
}

.page-game-guides__game-list p {
  font-size: 1rem;
  color: #FFF6D6;
  opacity: 0.8;
}

/* Tips List */
.page-game-guides__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-guides__tips-list li {
  background: #111111;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  color: #FFF6D6;
  font-size: 1.05rem;
}

.page-game-guides__tips-list li strong {
  color: #F2C14E;
  font-weight: 700;
}

/* CTA Area */
.page-game-guides__cta-area {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-game-guides__faq-list {
  margin-top: 40px;
}

details.page-game-guides__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background: #111111; /* Card Background */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

details.page-game-guides__faq-item summary.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2C14E; /* Primary color for questions */
  font-weight: 600;
}

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

details.page-game-guides__faq-item summary.page-game-guides__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1); /* Light hover effect */
}

.page-game-guides__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E;
}

.page-game-guides__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B; /* Glow color for toggle */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-game-guides__faq-item .page-game-guides__faq-answer {
  padding: 0 25px 25px;
  background: #0A0A0A; /* Background color for answer */
  border-top: 1px solid #3A2A12;
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
  opacity: 0.85;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-guides__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-guides__hero-image img {
    border-radius: 4px;
  }

  .page-game-guides__main-title {
    font-size: 2.2rem;
  }

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

  .page-game-guides__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

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

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

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

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

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

  .page-game-guides__category-image {
    height: 250px;
  }

  .page-game-guides__game-category {
    padding: 20px;
  }

  .page-game-guides__game-list h4 {
    font-size: 1.1rem;
  }

  .page-game-guides__tips-list li {
    padding: 15px 20px;
    font-size: 1rem;
  }

  details.page-game-guides__faq-item summary.page-game-guides__faq-question {
    padding: 15px 20px;
  }

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

  .page-game-guides__faq-toggle {
    font-size: 20px;
  }

  details.page-game-guides__faq-item .page-game-guides__faq-answer {
    padding: 0 20px 20px;
  }

  /* Image responsive enforcement */
  .page-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-game-guides__section,
  .page-game-guides__card,
  .page-game-guides__container,
  .page-game-guides__game-category {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button responsive enforcement */
  .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__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;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}