.page-blog-phfiery-game-strategy {
  color: #FFF6D6; /* Text Main color for dark background */
  background-color: #0A0A0A; /* Background color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
}

/* Hero Section */
.page-blog-phfiery-game-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Ensure image is above content */
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  box-sizing: border-box;
}

.page-blog-phfiery-game-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width on larger screens */
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-phfiery-game-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.3); /* Glow color for shadow */
}

.page-blog-phfiery-game-strategy__hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%; /* Ensure content takes full width up to max-width */
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-phfiery-game-strategy__hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem); /* H1 size clamp as per rule */
  font-weight: 700;
  line-height: 1.2;
  color: #FFD36B; /* Glow color for emphasis */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-phfiery-game-strategy__hero-description {
  font-size: 1.15rem;
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-blog-phfiery-game-strategy__hero-cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* General Sections */
.page-blog-phfiery-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-phfiery-game-strategy__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-blog-phfiery-game-strategy__sub-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: #FFD36B; /* Glow color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-blog-phfiery-game-strategy p {
  margin-bottom: 15px;
  color: #FFF6D6; /* Text Main color */
}

.page-blog-phfiery-game-strategy p a {
  color: #F2C14E; /* Main color for links */
  text-decoration: underline;
}

.page-blog-phfiery-game-strategy__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.2);
  min-width: 200px; /* Minimum size for content images */
  min-height: 200px;
}

/* Buttons */
.page-blog-phfiery-game-strategy__btn-primary,
.page-blog-phfiery-game-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word;
}

.page-blog-phfiery-game-strategy__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for light button */
  border: none;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-phfiery-game-strategy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-phfiery-game-strategy__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main color for text */
  border: 2px solid #F2C14E; /* Border color */
  box-shadow: 0 0 10px rgba(242, 193, 78, 0.2);
}

.page-blog-phfiery-game-strategy__btn-secondary:hover {
  background: #F2C14E; /* Main color on hover */
  color: #111111; /* Dark text on hover */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

/* FAQ Section */
.page-blog-phfiery-game-strategy__faq-section {
  padding-bottom: 60px;
}

.page-blog-phfiery-game-strategy__faq-list {
  margin-top: 40px;
}

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

.page-blog-phfiery-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1a1a1a; /* Slightly lighter than Card BG for contrast */
  transition: background-color 0.3s ease;
}

.page-blog-phfiery-game-strategy__faq-question:hover {
  background-color: #222222;
}

.page-blog-phfiery-game-strategy__faq-question h3 {
  color: #FFF6D6; /* Text Main color */
  font-size: 1.15rem;
  margin: 0;
  font-weight: 500;
}

.page-blog-phfiery-game-strategy__faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  color: #F2C14E; /* Main color */
  transition: transform 0.3s ease;
}

.page-blog-phfiery-game-strategy__faq-item.active .page-blog-phfiery-game-strategy__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to a minus */
}

.page-blog-phfiery-game-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Text Main color */
}

.page-blog-phfiery-game-strategy__faq-item.active .page-blog-phfiery-game-strategy__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 15px 25px 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-phfiery-game-strategy__container {
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-phfiery-game-strategy {
    font-size: 15px;
  }

  .page-blog-phfiery-game-strategy__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-phfiery-game-strategy__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-blog-phfiery-game-strategy__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-phfiery-game-strategy__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-phfiery-game-strategy__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-phfiery-game-strategy__section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
    margin-bottom: 25px;
  }

  .page-blog-phfiery-game-strategy__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  /* Images */
  .page-blog-phfiery-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-phfiery-game-strategy__section,
  .page-blog-phfiery-game-strategy__card,
  .page-blog-phfiery-game-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons */
  .page-blog-phfiery-game-strategy__btn-primary,
  .page-blog-phfiery-game-strategy__btn-secondary,
  .page-blog-phfiery-game-strategy a[class*="button"],
  .page-blog-phfiery-game-strategy 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; /* Add padding to ensure text doesn't touch edges */
    padding-right: 15px;
  }
  
  .page-blog-phfiery-game-strategy__hero-cta-buttons,
  .page-blog-phfiery-game-strategy__button-group,
  .page-blog-phfiery-game-strategy__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-blog-phfiery-game-strategy__faq-question {
    padding: 15px 20px;
  }

  .page-blog-phfiery-game-strategy__faq-question h3 {
    font-size: 1rem;
  }

  .page-blog-phfiery-game-strategy__faq-answer {
    padding: 0 20px;
  }

  .page-blog-phfiery-game-strategy__faq-item.active .page-blog-phfiery-game-strategy__faq-answer {
    padding: 10px 20px 20px;
  }
}