/* style/blog-3king-web-popular-game-strategy.css */
.page-blog-3king-web-popular-game-strategy {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--background-color, #08160F);
  line-height: 1.6;
  font-size: 16px;
}

.page-blog-3king-web-popular-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-3king-web-popular-game-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0 40px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background-color, #08160F);
}

.page-blog-3king-web-popular-game-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-blog-3king-web-popular-game-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-3king-web-popular-game-strategy__hero-content {
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
}

.page-blog-3king-web-popular-game-strategy__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-3king-web-popular-game-strategy__hero-description {
  font-size: 1.15em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-3king-web-popular-game-strategy__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-3king-web-popular-game-strategy__btn-primary,
.page-blog-3king-web-popular-game-strategy__btn-secondary {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.page-blog-3king-web-popular-game-strategy__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(17, 168, 78, 0.4);
}

.page-blog-3king-web-popular-game-strategy__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 15px rgba(17, 168, 78, 0.6);
  transform: translateY(-2px);
}

.page-blog-3king-web-popular-game-strategy__btn-secondary {
  background: #11271B; /* Card BG */
  color: var(--text-main);
  border: 2px solid var(--border-color, #2E7A4E);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-blog-3king-web-popular-game-strategy__btn-secondary:hover {
  background: var(--border-color, #2E7A4E);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog-3king-web-popular-game-strategy__section-title {
  font-size: 2.2em;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-3king-web-popular-game-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--main-color, #11A84E), transparent);
  border-radius: 2px;
}

.page-blog-3king-web-popular-game-strategy__introduction-section,
.page-blog-3king-web-popular-game-strategy__strategy-section,
.page-blog-3king-web-popular-game-strategy__promotions-section,
.page-blog-3king-web-popular-game-strategy__faq-section,
.page-blog-3king-web-popular-game-strategy__conclusion-section {
  padding: 60px 0;
  background-color: var(--background-color, #08160F);
}

.page-blog-3king-web-popular-game-strategy__dark-section {
  background-color: var(--card-bg, #11271B);
  color: var(--text-main);
}

.page-blog-3king-web-popular-game-strategy__dark-section .page-blog-3king-web-popular-game-strategy__section-title {
  color: var(--text-main);
}

.page-blog-3king-web-popular-game-strategy__text-block {
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 1.05em;
}

.page-blog-3king-web-popular-game-strategy__text-block strong {
  color: var(--text-main);
}

.page-blog-3king-web-popular-game-strategy__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-3king-web-popular-game-strategy__list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-3king-web-popular-game-strategy__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--text-secondary);
  font-size: 1.05em;
}

.page-blog-3king-web-popular-game-strategy__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--main-color, #11A84E);
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

.page-blog-3king-web-popular-game-strategy__sub-list {
  list-style-type: none;
  padding-left: 20px;
  margin-top: 10px;
}

.page-blog-3king-web-popular-game-strategy__sub-list .page-blog-3king-web-popular-game-strategy__list-item {
  padding-left: 20px;
}

.page-blog-3king-web-popular-game-strategy__sub-list .page-blog-3king-web-popular-game-strategy__list-item::before {
  content: '-';
  color: var(--auxiliary-color, #22C768);
  font-size: 1em;
}

.page-blog-3king-web-popular-game-strategy__text-link {
  color: var(--gold, #F2C14E);
  text-decoration: underline;
  font-weight: 600;
}

.page-blog-3king-web-popular-game-strategy__text-link:hover {
  color: var(--glow, #57E38D);
  text-decoration: none;
}

/* FAQ Section Styles */
.page-blog-3king-web-popular-game-strategy__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-3king-web-popular-game-strategy__faq-item {
  background-color: var(--card-bg, #11271B);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: var(--text-secondary);
}

.page-blog-3king-web-popular-game-strategy__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.1em;
  list-style: none;
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

.page-blog-3king-web-popular-game-strategy__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-3king-web-popular-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-blog-3king-web-popular-game-strategy__faq-qtext {
  flex-grow: 1;
}

.page-blog-3king-web-popular-game-strategy__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--main-color, #11A84E);
  transition: transform 0.3s ease;
}

.page-blog-3king-web-popular-game-strategy__faq-item[open] .page-blog-3king-web-popular-game-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-3king-web-popular-game-strategy__faq-answer {
  padding: 20px;
  padding-top: 10px;
  border-top: 1px solid var(--divider, #1E3A2A);
  color: var(--text-secondary);
  font-size: 1em;
}

.page-blog-3king-web-popular-game-strategy__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-3king-web-popular-game-strategy__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-3king-web-popular-game-strategy__section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-blog-3king-web-popular-game-strategy {
    font-size: 15px;
  }
  .page-blog-3king-web-popular-game-strategy__hero-section {
    padding: 40px 0 30px;
    padding-top: 10px !important;
  }
  .page-blog-3king-web-popular-game-strategy__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-blog-3king-web-popular-game-strategy__hero-description {
    font-size: 1em;
  }
  .page-blog-3king-web-popular-game-strategy__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-3king-web-popular-game-strategy__btn-primary,
  .page-blog-3king-web-popular-game-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }
  .page-blog-3king-web-popular-game-strategy__introduction-section,
  .page-blog-3king-web-popular-game-strategy__strategy-section,
  .page-blog-3king-web-popular-game-strategy__promotions-section,
  .page-blog-3king-web-popular-game-strategy__faq-section,
  .page-blog-3king-web-popular-game-strategy__conclusion-section {
    padding: 40px 0;
  }
  .page-blog-3king-web-popular-game-strategy__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-blog-3king-web-popular-game-strategy__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog-3king-web-popular-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-3king-web-popular-game-strategy__video-section {
    padding-top: 10px !important;
  }
  .page-blog-3king-web-popular-game-strategy__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    flex-wrap: wrap !important;
  }
}

@media (max-width: 480px) {
  .page-blog-3king-web-popular-game-strategy__hero-title {
    font-size: clamp(1.6em, 7vw, 2.2em);
  }
  .page-blog-3king-web-popular-game-strategy__section-title {
    font-size: 1.4em;
  }
  .page-blog-3king-web-popular-game-strategy__btn-primary,
  .page-blog-3king-web-popular-game-strategy__btn-secondary {
    font-size: 0.95em;
    padding: 12px 20px;
  }
}