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

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

.page-blog-popular-game-strategy-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  text-align: center;
  overflow: hidden;
}

.page-blog-popular-game-strategy-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.page-blog-popular-game-strategy-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-blog-popular-game-strategy-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -200px; /* Adjust to pull content up over the image without absolute positioning */
  background: rgba(17, 17, 17, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12; /* Border */
}

.page-blog-popular-game-strategy-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-popular-game-strategy-guide__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

.page-blog-popular-game-strategy-guide__hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-popular-game-strategy-guide__btn-primary,
.page-blog-popular-game-strategy-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-popular-game-strategy-guide__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for contrast */
  border: none;
}

.page-blog-popular-game-strategy-guide__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-blog-popular-game-strategy-guide__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B; /* Glow */
}

.page-blog-popular-game-strategy-guide__btn-secondary:hover {
  background: #FFD36B;
  color: #111111; /* Dark text for contrast */
}

.page-blog-popular-game-strategy-guide__section {
  padding: 80px 0;
  text-align: center;
}

.page-blog-popular-game-strategy-guide__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-blog-popular-game-strategy-guide__section-intro,
.page-blog-popular-game-strategy-guide__section-text {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main */
}

.page-blog-popular-game-strategy-guide__why-choose .page-blog-popular-game-strategy-guide__section-intro {
  margin-bottom: 60px;
}

.page-blog-popular-game-strategy-guide__features-grid,
.page-blog-popular-game-strategy-guide__steps-grid,
.page-blog-popular-game-strategy-guide__game-strategy-grid,
.page-blog-popular-game-strategy-guide__rewards-grid,
.page-blog-popular-game-strategy-guide__responsible-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-blog-popular-game-strategy-guide__features-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-blog-popular-game-strategy-guide__step-card,
.page-blog-popular-game-strategy-guide__reward-card {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFF6D6;
}

.page-blog-popular-game-strategy-guide__step-card .page-blog-popular-game-strategy-guide__btn-primary {
  margin-top: 20px;
  align-self: flex-start;
}

.page-blog-popular-game-strategy-guide__step-title,
.page-blog-popular-game-strategy-guide__feature-title,
.page-blog-popular-game-strategy-guide__strategy-title,
.page-blog-popular-game-strategy-guide__reward-title,
.page-blog-popular-game-strategy-guide__responsible-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-popular-game-strategy-guide__feature-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-popular-game-strategy-guide__feature-card {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF6D6;
}

.page-blog-popular-game-strategy-guide__getting-started .page-blog-popular-game-strategy-guide__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-blog-popular-game-strategy-guide__game-mastery .page-blog-popular-game-strategy-guide__game-strategy-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-blog-popular-game-strategy-guide__strategy-card {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFF6D6;
}

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

.page-blog-popular-game-strategy-guide__strategy-card .page-blog-popular-game-strategy-guide__btn-secondary {
  margin-top: 20px;
  align-self: flex-start;
}

.page-blog-popular-game-strategy-guide__rewards-bonuses .page-blog-popular-game-strategy-guide__rewards-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-blog-popular-game-strategy-guide__responsible-gaming .page-blog-popular-game-strategy-guide__responsible-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-blog-popular-game-strategy-guide__cta-center {
  margin-top: 50px;
}

.page-blog-popular-game-strategy-guide__faq-section {
  padding: 80px 0;
  text-align: left;
}

.page-blog-popular-game-strategy-guide__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

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

.page-blog-popular-game-strategy-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFD36B; /* Glow */
  transition: background-color 0.3s ease;
}

.page-blog-popular-game-strategy-guide__faq-question:hover {
  background-color: rgba(255, 211, 107, 0.1);
}

.page-blog-popular-game-strategy-guide__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-blog-popular-game-strategy-guide__faq-item.active .page-blog-popular-game-strategy-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-popular-game-strategy-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-blog-popular-game-strategy-guide__faq-item.active .page-blog-popular-game-strategy-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 15px 20px;
  color: #FFF6D6;
}

.page-blog-popular-game-strategy-guide__faq-answer p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #FFF6D6;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-popular-game-strategy-guide__hero-content {
    margin-top: -100px; /* Adjust for smaller screens */
    padding: 30px 15px;
  }

  .page-blog-popular-game-strategy-guide__main-title {
    font-size: 2.2rem;
  }

  .page-blog-popular-game-strategy-guide__hero-description {
    font-size: 1rem;
  }

  .page-blog-popular-game-strategy-guide__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-popular-game-strategy-guide__btn-primary,
  .page-blog-popular-game-strategy-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-popular-game-strategy-guide__section {
    padding: 40px 0;
  }

  .page-blog-popular-game-strategy-guide__section-title {
    font-size: 2rem;
  }

  .page-blog-popular-game-strategy-guide__section-intro,
  .page-blog-popular-game-strategy-guide__section-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-blog-popular-game-strategy-guide__features-grid,
  .page-blog-popular-game-strategy-guide__steps-grid,
  .page-blog-popular-game-strategy-guide__game-strategy-grid,
  .page-blog-popular-game-strategy-guide__rewards-grid,
  .page-blog-popular-game-strategy-guide__responsible-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-popular-game-strategy-guide__feature-card,
  .page-blog-popular-game-strategy-guide__step-card,
  .page-blog-popular-game-strategy-guide__strategy-card,
  .page-blog-popular-game-strategy-guide__reward-card,
  .page-blog-popular-game-strategy-guide__responsible-card {
    padding: 25px;
  }

  .page-blog-popular-game-strategy-guide__feature-title,
  .page-blog-popular-game-strategy-guide__step-title,
  .page-blog-popular-game-strategy-guide__strategy-title,
  .page-blog-popular-game-strategy-guide__reward-title,
  .page-blog-popular-game-strategy-guide__responsible-title {
    font-size: 1.3rem;
  }

  /* Mobile image adaptation */
  .page-blog-popular-game-strategy-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  
  .page-blog-popular-game-strategy-guide__section,
  .page-blog-popular-game-strategy-guide__card,
  .page-blog-popular-game-strategy-guide__container,
  .page-blog-popular-game-strategy-guide__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  
  .page-blog-popular-game-strategy-guide__hero-section {
    padding-top: 10px !important; /* Adjusted for fixed header, not var(--header-offset) */
  }

  .page-blog-popular-game-strategy-guide__faq-list {
    margin: 30px auto 0 auto;
  }

  .page-blog-popular-game-strategy-guide__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-popular-game-strategy-guide__faq-answer {
    padding: 0 15px;
  }

  .page-blog-popular-game-strategy-guide__faq-item.active .page-blog-popular-game-strategy-guide__faq-answer {
    padding: 10px 15px;
  }
}

/* Ensure all images in content areas are at least 200px wide */
.page-blog-popular-game-strategy-guide__feature-icon,
.page-blog-popular-game-strategy-guide__strategy-image {
    min-width: 200px;
    min-height: 200px; /* Ensure images are not too small */
}

/* Text contrast fixes for safety */
.page-blog-popular-game-strategy-guide p,
.page-blog-popular-game-strategy-guide li,
.page-blog-popular-game-strategy-guide__feature-description,
.page-blog-popular-game-strategy-guide__step-description,
.page-blog-popular-game-strategy-guide__strategy-description,
.page-blog-popular-game-strategy-guide__reward-description,
.page-blog-popular-game-strategy-guide__responsible-description {
  color: #FFF6D6; /* Ensure text is visible on dark backgrounds */
}

.page-blog-popular-game-strategy-guide__light-bg {
  background: #ffffff; /* Default white background for light elements */
  color: #333333; /* Dark text for contrast */
  border: 1px solid #e0e0e0;
}

.page-blog-popular-game-strategy-guide__light-bg .page-blog-popular-game-strategy-guide__step-title,
.page-blog-popular-game-strategy-guide__light-bg .page-blog-popular-game-strategy-guide__reward-title {
  color: #F2C14E; /* Brand color on light background */
}

.page-blog-popular-game-strategy-guide__light-bg p {
  color: #333333;
}

.page-blog-popular-game-strategy-guide__dark-bg {
  background: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

.page-blog-popular-game-strategy-guide__dark-bg .page-blog-popular-game-strategy-guide__feature-title,
.page-blog-popular-game-strategy-guide__dark-bg .page-blog-popular-game-strategy-guide__responsible-title {
  color: #FFD36B; /* Glow on dark background */
}