/* style/blog-ko66-game-strategy-guide.css */
.page-blog-ko66-game-strategy-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #f8f9fa; /* Body background color */
}

.page-blog-ko66-game-strategy-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding */
  background-color: #08160F; /* Dark background for hero */
  color: #F2FFF6;
  box-sizing: border-box;
}

.page-blog-ko66-game-strategy-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-ko66-game-strategy-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-ko66-game-strategy-guide__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  margin-top: 30px;
  padding: 0 20px;
}

.page-blog-ko66-game-strategy-guide__main-title {
  font-size: clamp(2.2em, 4vw, 3em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold color for main title */
  letter-spacing: 0.05em;
}

.page-blog-ko66-game-strategy-guide__intro-text {
  font-size: clamp(1em, 1.8vw, 1.2em);
  margin-bottom: 30px;
  color: #A7D9B8;
}

.page-blog-ko66-game-strategy-guide__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-ko66-game-strategy-guide__btn-primary,
.page-blog-ko66-game-strategy-guide__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-ko66-game-strategy-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-ko66-game-strategy-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-ko66-game-strategy-guide__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-blog-ko66-game-strategy-guide__btn-secondary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* #2E7A4E with transparency */
  transform: translateY(-2px);
}

.page-blog-ko66-game-strategy-guide__section {
  padding: 60px 20px;
  margin-bottom: 0;
}

.page-blog-ko66-game-strategy-guide__content-area {
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-ko66-game-strategy-guide__dark-bg {
  background-color: #08160F; /* Background color */
  color: #F2FFF6; /* Text Main */
}

.page-blog-ko66-game-strategy-guide__light-bg {
  background-color: #f8f9fa; /* Body background color */
  color: #333333; /* Default dark text color */
}

.page-blog-ko66-game-strategy-guide__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #11A84E; /* Main color */
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-ko66-game-strategy-guide__dark-bg .page-blog-ko66-game-strategy-guide__section-title {
  color: #F2C14E; /* Gold for titles on dark background */
}

.page-blog-ko66-game-strategy-guide__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333; /* Default dark text */
}

.page-blog-ko66-game-strategy-guide__dark-bg .page-blog-ko66-game-strategy-guide__paragraph {
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-ko66-game-strategy-guide__sub-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #11A84E; /* Main color */
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-blog-ko66-game-strategy-guide__dark-bg .page-blog-ko66-game-strategy-guide__sub-title {
  color: #F2FFF6; /* Text Main */
}

.page-blog-ko66-game-strategy-guide__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-ko66-game-strategy-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #333333;
}

.page-blog-ko66-game-strategy-guide__dark-bg .page-blog-ko66-game-strategy-guide__list-item {
  color: #A7D9B8;
}

.page-blog-ko66-game-strategy-guide__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure image is responsive */
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

/* FAQ Section */
.page-blog-ko66-game-strategy-guide__faq-list {
  margin-top: 40px;
}

.page-blog-ko66-game-strategy-guide__faq-item {
  background-color: #ffffff;
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-blog-ko66-game-strategy-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #11A84E; /* Main color */
  background-color: #F2FFF6; /* Light background for question */
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default marker */
}

.page-blog-ko66-game-strategy-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-ko66-game-strategy-guide__faq-question:hover {
  background-color: rgba(17, 168, 78, 0.1);
}

.page-blog-ko66-game-strategy-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-ko66-game-strategy-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #11A84E;
}

.page-blog-ko66-game-strategy-guide__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #333333;
  background-color: #ffffff;
}

.page-blog-ko66-game-strategy-guide__faq-answer p {
  margin-top: 10px;
  margin-bottom: 0;
}

/* Override for dark background section for FAQ */
.page-blog-ko66-game-strategy-guide__dark-bg .page-blog-ko66-game-strategy-guide__faq-item {
  background-color: #11271B; /* Card BG */
  border-color: #2E7A4E;
}

.page-blog-ko66-game-strategy-guide__dark-bg .page-blog-ko66-game-strategy-guide__faq-question {
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-ko66-game-strategy-guide__dark-bg .page-blog-ko66-game-strategy-guide__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-blog-ko66-game-strategy-guide__dark-bg .page-blog-ko66-game-strategy-guide__faq-toggle {
  color: #F2FFF6;
}

.page-blog-ko66-game-strategy-guide__dark-bg .page-blog-ko66-game-strategy-guide__faq-answer {
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B;
}

.page-blog-ko66-game-strategy-guide__cta-buttons--bottom {
  margin-top: 40px;
}

.page-blog-ko66-game-strategy-guide__text-main {
  color: #F2FFF6;
}

.page-blog-ko66-game-strategy-guide__text-secondary {
  color: #A7D9B8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-ko66-game-strategy-guide {
    font-size: 15px;
  }

  .page-blog-ko66-game-strategy-guide__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-ko66-game-strategy-guide__main-title {
    font-size: 2.2em;
  }

  .page-blog-ko66-game-strategy-guide__intro-text {
    font-size: 1em;
  }

  .page-blog-ko66-game-strategy-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-ko66-game-strategy-guide__btn-primary,
  .page-blog-ko66-game-strategy-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 auto;
  }

  .page-blog-ko66-game-strategy-guide__section {
    padding: 40px 15px;
  }

  .page-blog-ko66-game-strategy-guide__content-area {
    padding: 0 15px;
  }

  .page-blog-ko66-game-strategy-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-ko66-game-strategy-guide__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
  }

  .page-blog-ko66-game-strategy-guide__paragraph,
  .page-blog-ko66-game-strategy-guide__list-item {
    font-size: 0.95em;
  }

  .page-blog-ko66-game-strategy-guide__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: 0;
    margin-right: 0;
  }

  .page-blog-ko66-game-strategy-guide__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

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

  /* Ensure all containers containing images/buttons/videos are responsive */
  .page-blog-ko66-game-strategy-guide__hero-image-wrapper,
  .page-blog-ko66-game-strategy-guide__cta-buttons,
  .page-blog-ko66-game-strategy-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-ko66-game-strategy-guide__content-area {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}