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

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

.page-game-guides__hero-section {
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  padding-top: 40px; /* Small top padding as per common rule, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
}

.page-game-guides__hero-content {
  margin-bottom: 40px;
}

.page-game-guides__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0A0A0A; /* Dark text for light gradient background */
  margin-bottom: 20px;
}

.page-game-guides__hero-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #333333; /* Darker text for readability on light background */
}

.page-game-guides__hero-link {
  color: #0A0A0A;
  font-weight: bold;
  text-decoration: underline;
}

.page-game-guides__hero-image-wrapper {
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.page-game-guides__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 30px;
}

.page-game-guides__section-text {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF6D6; /* Text Main */
}

.page-game-guides__text-link {
  color: #FFD36B; /* Glow color for links */
  text-decoration: underline;
}

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

.page-game-guides__game-card,
.page-game-guides__strategy-item,
.page-game-guides__step-item,
.page-game-guides__card-dark-bg {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFF6D6;
}

.page-game-guides__game-card-image,
.page-game-guides__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-game-guides__game-card-title,
.page-game-guides__strategy-item-title,
.page-game-guides__step-item-title,
.page-game-guides__feature-item-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Auxiliary color for titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-guides__game-card-description,
.page-game-guides__strategy-item-text,
.page-game-guides__step-item-text,
.page-game-guides__feature-item-text {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: auto;
}

.page-game-guides__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #0A0A0A;
  border: none;
}

.page-game-guides__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-game-guides__btn-secondary {
  background: transparent;
  color: #F2C14E;
  border: 2px solid #F2C14E;
}

.page-game-guides__btn-secondary:hover {
  background: #F2C14E;
  color: #0A0A0A;
  transform: translateY(-2px);
}

.page-game-guides__image-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-game-guides__content-image {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-game-guides__feature-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  color: #FFF6D6;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides__faq-section {
  background-color: #0A0A0A;
}

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

.page-game-guides__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF6D6;
}

.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.page-game-guides__faq-question:hover {
  background-color: #2a2a2a;
}

.page-game-guides__faq-question-title {
  font-size: 1.2rem;
  margin: 0;
  color: #FFD36B;
  font-weight: 600;
}

.page-game-guides__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  color: #F2C14E;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-game-guides__faq-item.active .page-game-guides__faq-toggle {
  transform: rotate(45deg);
}

.page-game-guides__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-game-guides__faq-item.active .page-game-guides__faq-answer {
  max-height: 1000px !important; /* Important for ensuring it expands */
  padding: 15px 25px 25px 25px;
}

.page-game-guides__faq-answer p {
  margin: 0;
  font-size: 1rem;
  color: #FFF6D6;
}

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-guides__hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
  }
  .page-game-guides__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-section {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .page-game-guides__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-game-guides__hero-description {
    font-size: 1rem;
  }
  .page-game-guides__section {
    padding: 40px 0;
  }
  .page-game-guides__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .page-game-guides__section-text {
    font-size: 0.95rem;
  }
  .page-game-guides__game-card-grid,
  .page-game-guides__strategy-grid,
  .page-game-guides__steps-grid,
  .page-game-guides__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-game-guides__game-card,
  .page-game-guides__strategy-item,
  .page-game-guides__step-item,
  .page-game-guides__feature-item {
    padding: 20px;
  }
  .page-game-guides__game-card-title,
  .page-game-guides__strategy-item-title,
  .page-game-guides__step-item-title,
  .page-game-guides__feature-item-title {
    font-size: 1.3rem;
  }
  .page-game-guides__game-card-description,
  .page-game-guides__strategy-item-text,
  .page-game-guides__step-item-text,
  .page-game-guides__feature-item-text {
    font-size: 0.9rem;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .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;
  }
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-guides__faq-question,
  .page-game-guides__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-guides__faq-item.active .page-game-guides__faq-answer {
    padding: 15px 15px 20px 15px;
  }
}

/* No CSS filters allowed on images */
.page-game-guides img {
  filter: none;
}