/* style/blog-ken88-game-strategy.css */

/* Body background is #0a0a0a (dark), so text should be light by default. */
/* The page-content will have light-bg for its main text area. */

.page-blog-ken88-game-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
}

.page-blog-ken88-game-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px 20px; /* Small top padding, more bottom padding */
  background-color: #0a0a0a;
  overflow: hidden;
}

.page-blog-ken88-game-strategy__hero-image {
  width: 100%;
  height: auto;
  max-height: 600px; /* Limit hero image height */
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
}

.page-blog-ken88-game-strategy__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: #ffffff;
}

.page-blog-ken88-game-strategy__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-blog-ken88-game-strategy__intro-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-ken88-game-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* Light background for content area */
  color: #333333; /* Dark text for light background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -50px; /* Overlap with hero section slightly */
  position: relative;
  z-index: 1;
}

.page-blog-ken88-game-strategy__article-body h2,
.page-blog-ken88-game-strategy__article-body h3 {
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-ken88-game-strategy__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  border-bottom: 2px solid #26A9E0;
  padding-bottom: 10px;
}

.page-blog-ken88-game-strategy__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #EA7C07; /* Login color for sub-titles, good contrast */
}

.page-blog-ken88-game-strategy__article-body p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1rem;
}

.page-blog-ken88-game-strategy__image-content {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
  object-fit: cover;
}

.page-blog-ken88-game-strategy__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid transparent;
  margin-top: 20px;
}

.page-blog-ken88-game-strategy__btn-primary:hover {
  background-color: #1e87b9;
  transform: translateY(-2px);
}

.page-blog-ken88-game-strategy__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding: 30px 0;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.page-blog-ken88-game-strategy__cta-button {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  padding: 15px 30px;
}

/* FAQ Section */
.page-blog-ken88-game-strategy__faq-list {
  margin-top: 40px;
}

.page-blog-ken88-game-strategy__faq-item {
  background-color: #f0f0f0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-blog-ken88-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #e8e8e8;
  border-bottom: 1px solid #dcdcdc;
  transition: background-color 0.3s ease;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.page-blog-ken88-game-strategy__faq-question:hover {
  background-color: #dcdcdc;
}

.page-blog-ken88-game-strategy__faq-item[open] > .page-blog-ken88-game-strategy__faq-question {
  background-color: #dcdcdc;
  border-bottom: none;
}

.page-blog-ken88-game-strategy__faq-qtext {
  flex-grow: 1;
}

.page-blog-ken88-game-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-ken88-game-strategy__faq-item[open] .page-blog-ken88-game-strategy__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to become an 'x' or 'minus' */
}

.page-blog-ken88-game-strategy__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1rem;
  color: #555555;
  background-color: #f8f8f8;
}

.page-blog-ken88-game-strategy__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-ken88-game-strategy__faq-item summary {
  list-style: none;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-ken88-game-strategy__hero-image {
    max-height: 500px;
  }
  .page-blog-ken88-game-strategy__content-area {
    margin-top: -30px;
  }
}

@media (max-width: 768px) {
  .page-blog-ken88-game-strategy {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-blog-ken88-game-strategy__hero-image {
    max-height: 300px !important;
  }

  .page-blog-ken88-game-strategy__main-title {
    font-size: 2rem !important;
  }

  .page-blog-ken88-game-strategy__intro-text {
    font-size: 1rem !important;
  }

  .page-blog-ken88-game-strategy__content-area {
    padding: 30px 15px !important;
    margin-top: -20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-ken88-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-ken88-game-strategy__section,
  .page-blog-ken88-game-strategy__card,
  .page-blog-ken88-game-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-ken88-game-strategy__cta-button,
  .page-blog-ken88-game-strategy__btn-primary,
  .page-blog-ken88-game-strategy__btn-secondary,
  .page-blog-ken88-game-strategy a[class*="button"],
  .page-blog-ken88-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;
    padding-right: 15px;
  }

  .page-blog-ken88-game-strategy__cta-buttons,
  .page-blog-ken88-game-strategy__button-group,
  .page-blog-ken88-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-ken88-game-strategy__cta-buttons {
    display: flex;
    flex-direction: column; /* Mobile vertical stacking */
  }

  .page-blog-ken88-game-strategy__video-section {
    padding-top: 10px !important;
  }

  .page-blog-ken88-game-strategy__video-section,
  .page-blog-ken88-game-strategy__video-container,
  .page-blog-ken88-game-strategy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-ken88-game-strategy video,
  .page-blog-ken88-game-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-ken88-game-strategy__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-ken88-game-strategy__faq-answer {
    padding: 10px 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-ken88-game-strategy__main-title {
    font-size: 1.8rem !important;
  }

  .page-blog-ken88-game-strategy__section-title {
    font-size: 1.5rem !important;
  }

  .page-blog-ken88-game-strategy__sub-title {
    font-size: 1.2rem !important;
  }
}