/* style/blog-ph22-popular-game-strategy-tips.css */
:root {
  --ph22-primary-color: #F2C14E;
  --ph22-secondary-color: #FFD36B;
  --ph22-card-bg: #111111;
  --ph22-background-color: #0A0A0A;
  --ph22-text-main: #FFF6D6;
  --ph22-border-color: #3A2A12;
  --ph22-glow-color: #FFD36B;
  --ph22-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-ph22-popular-game-strategy-tips {
  font-family: Arial, sans-serif;
  background-color: var(--ph22-background-color);
  color: var(--ph22-text-main);
  line-height: 1.6;
}

.page-blog-ph22-popular-game-strategy-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-ph22-popular-game-strategy-tips__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  background-color: var(--ph22-background-color);
}

.page-blog-ph22-popular-game-strategy-tips__hero-image-wrapper {
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-ph22-popular-game-strategy-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-ph22-popular-game-strategy-tips__hero-content-wrapper {
  padding: 40px 0 80px;
  text-align: center;
  background: linear-gradient(0deg, var(--ph22-background-color) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(10, 10, 10, 0) 100%);
  margin-top: -100px; /* Pull content slightly over image for visual flow */
  position: relative;
  z-index: 1;
}

.page-blog-ph22-popular-game-strategy-tips__hero-title {
  color: var(--ph22-text-main);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-ph22-popular-game-strategy-tips__hero-description {
  color: var(--ph22-text-main);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

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

.page-blog-ph22-popular-game-strategy-tips__section {
  padding: 60px 0;
}

.page-blog-ph22-popular-game-strategy-tips__content-area {
  background-color: var(--ph22-background-color);
  color: var(--ph22-text-main);
}

.page-blog-ph22-popular-game-strategy-tips__dark-section {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast */
  color: var(--ph22-text-main);
}

.page-blog-ph22-popular-game-strategy-tips__section-title {
  color: var(--ph22-primary-color);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-blog-ph22-popular-game-strategy-tips__subsection-title {
  color: var(--ph22-secondary-color);
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 4px solid var(--ph22-primary-color);
  padding-left: 15px;
}

.page-blog-ph22-popular-game-strategy-tips__text-block {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--ph22-text-main);
}

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

.page-blog-ph22-popular-game-strategy-tips__btn-primary {
  background: var(--ph22-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-ph22-popular-game-strategy-tips__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-blog-ph22-popular-game-strategy-tips__btn-secondary {
  background-color: transparent;
  color: var(--ph22-primary-color);
  border: 2px solid var(--ph22-primary-color);
}

.page-blog-ph22-popular-game-strategy-tips__btn-secondary:hover {
  background-color: var(--ph22-primary-color);
  color: var(--ph22-background-color);
}

.page-blog-ph22-popular-game-strategy-tips__btn-tertiary {
  background-color: var(--ph22-primary-color);
  color: var(--ph22-background-color);
  border: 2px solid var(--ph22-primary-color);
  font-size: 0.9rem;
  padding: 8px 15px;
}

.page-blog-ph22-popular-game-strategy-tips__btn-tertiary:hover {
  background-color: transparent;
  color: var(--ph22-primary-color);
}

.page-blog-ph22-popular-game-strategy-tips__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-blog-ph22-popular-game-strategy-tips__game-strategy-grid,
.page-blog-ph22-popular-game-strategy-tips__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-ph22-popular-game-strategy-tips__game-card,
.page-blog-ph22-popular-game-strategy-tips__feature-card {
  background-color: var(--ph22-card-bg);
  border: 1px solid var(--ph22-border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-ph22-popular-game-strategy-tips__game-card-image,
.page-blog-ph22-popular-game-strategy-tips__feature-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-ph22-popular-game-strategy-tips__game-card-title,
.page-blog-ph22-popular-game-strategy-tips__feature-card-title {
  color: var(--ph22-secondary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-blog-ph22-popular-game-strategy-tips__game-card-text,
.page-blog-ph22-popular-game-strategy-tips__feature-card-text {
  color: var(--ph22-text-main);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-ph22-popular-game-strategy-tips__faq-section {
  background-color: var(--ph22-background-color);
  color: var(--ph22-text-main);
}

.page-blog-ph22-popular-game-strategy-tips__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-ph22-popular-game-strategy-tips__faq-item {
  background-color: var(--ph22-card-bg);
  border: 1px solid var(--ph22-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-ph22-popular-game-strategy-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--ph22-text-main);
  cursor: pointer;
  background-color: #1A1A1A; /* Slightly lighter card background for question */
  transition: background-color 0.3s ease;
}

.page-blog-ph22-popular-game-strategy-tips__faq-question:hover {
  background-color: #2a2a2a;
}

.page-blog-ph22-popular-game-strategy-tips__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--ph22-primary-color);
}

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

.page-blog-ph22-popular-game-strategy-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--ph22-text-main);
}

.page-blog-ph22-popular-game-strategy-tips__faq-item.active .page-blog-ph22-popular-game-strategy-tips__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-blog-ph22-popular-game-strategy-tips__faq-answer p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.page-blog-ph22-popular-game-strategy-tips__cta-section {
  background-color: var(--ph22-background-color);
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-ph22-popular-game-strategy-tips__hero-image-wrapper {
    height: 500px;
  }
  .page-blog-ph22-popular-game-strategy-tips__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-ph22-popular-game-strategy-tips__section-title {
    font-size: 2rem;
  }
  .page-blog-ph22-popular-game-strategy-tips__subsection-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-blog-ph22-popular-game-strategy-tips {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-ph22-popular-game-strategy-tips__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile specific header offset */
  }
  .page-blog-ph22-popular-game-strategy-tips__hero-image-wrapper {
    height: 300px;
  }
  .page-blog-ph22-popular-game-strategy-tips__hero-content-wrapper {
    padding: 30px 0 60px;
    margin-top: -50px;
  }
  .page-blog-ph22-popular-game-strategy-tips__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-blog-ph22-popular-game-strategy-tips__hero-description {
    font-size: 1rem;
    padding: 0 15px;
  }
  .page-blog-ph22-popular-game-strategy-tips__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  .page-blog-ph22-popular-game-strategy-tips__btn-primary,
  .page-blog-ph22-popular-game-strategy-tips__btn-secondary,
  .page-blog-ph22-popular-game-strategy-tips__btn-tertiary,
  .page-blog-ph22-popular-game-strategy-tips a[class*="button"],
  .page-blog-ph22-popular-game-strategy-tips 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-blog-ph22-popular-game-strategy-tips__cta-buttons,
  .page-blog-ph22-popular-game-strategy-tips__button-group,
  .page-blog-ph22-popular-game-strategy-tips__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-ph22-popular-game-strategy-tips__cta-buttons {
    flex-direction: column;
  }

  .page-blog-ph22-popular-game-strategy-tips__section {
    padding: 40px 0;
  }
  .page-blog-ph22-popular-game-strategy-tips__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-blog-ph22-popular-game-strategy-tips__subsection-title {
    font-size: 1.3rem;
    margin-top: 30px;
  }
  .page-blog-ph22-popular-game-strategy-tips__text-block {
    padding: 0 15px;
  }
  .page-blog-ph22-popular-game-strategy-tips__container {
    padding: 0;
  }
  .page-blog-ph22-popular-game-strategy-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-ph22-popular-game-strategy-tips__section,
  .page-blog-ph22-popular-game-strategy-tips__card,
  .page-blog-ph22-popular-game-strategy-tips__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-ph22-popular-game-strategy-tips__game-strategy-grid,
  .page-blog-ph22-popular-game-strategy-tips__features-grid {
    gap: 20px;
    margin-top: 30px;
    padding: 0 15px;
  }
  .page-blog-ph22-popular-game-strategy-tips__game-card,
  .page-blog-ph22-popular-game-strategy-tips__feature-card {
    padding: 20px;
  }
  .page-blog-ph22-popular-game-strategy-tips__game-card-image,
  .page-blog-ph22-popular-game-strategy-tips__feature-card-image {
    height: 180px;
  }
  .page-blog-ph22-popular-game-strategy-tips__faq-list {
    padding: 0 15px;
  }
  .page-blog-ph22-popular-game-strategy-tips__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog-ph22-popular-game-strategy-tips__faq-answer {
    padding: 0 20px;
  }
  .page-blog-ph22-popular-game-strategy-tips__faq-item.active .page-blog-ph22-popular-game-strategy-tips__faq-answer {
    padding: 10px 20px;
  }
}