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

:root {
  --page-primary-color: #11A84E;
  --page-secondary-color: #22C768;
  --page-text-main-color: #F2FFF6;
  --page-text-secondary-color: #A7D9B8;
  --page-background-color: #08160F;
  --page-card-bg-color: #11271B;
  --page-border-color: #2E7A4E;
  --page-glow-color: #57E38D;
  --page-gold-color: #F2C14E;
  --page-divider-color: #1E3A2A;
  --page-deep-green-color: #0A4B2C;
  --page-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-kkwin111-game-strategy {
  font-family: Arial, sans-serif;
  color: var(--page-text-main-color);
  background-color: var(--page-background-color); /* Body background is dark, so content text is light */
  line-height: 1.6;
}

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

/* Hero Section */
.page-blog-kkwin111-game-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--page-background-color);
  overflow: hidden;
}

.page-blog-kkwin111-game-strategy__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-kkwin111-game-strategy__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-blog-kkwin111-game-strategy__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px; /* Space between image and content */
}

.page-blog-kkwin111-game-strategy__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  color: var(--page-text-main-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-kkwin111-game-strategy__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--page-text-secondary-color);
  margin-bottom: 30px;
}

/* General Section Styling */
.page-blog-kkwin111-game-strategy__section {
  padding: 60px 0;
  background-color: var(--page-background-color);
  color: var(--page-text-main-color);
}

.page-blog-kkwin111-game-strategy__dark-bg {
  background-color: var(--page-card-bg-color);
  color: var(--page-text-main-color);
}

.page-blog-kkwin111-game-strategy__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--page-text-main-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-kkwin111-game-strategy__sub-section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--page-text-main-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-kkwin111-game-strategy__text-block {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--page-text-secondary-color);
}

.page-blog-kkwin111-game-strategy__content-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.page-blog-kkwin111-game-strategy__content-flex > .page-blog-kkwin111-game-strategy__text-content,
.page-blog-kkwin111-game-strategy__content-flex > .page-blog-kkwin111-game-strategy__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-blog-kkwin111-game-strategy__image-wrapper {
  text-align: center;
}

.page-blog-kkwin111-game-strategy__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Lists */
.page-blog-kkwin111-game-strategy__unordered-list,
.page-blog-kkwin111-game-strategy__ordered-list {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 15px;
  color: var(--page-text-secondary-color);
}

.page-blog-kkwin111-game-strategy__unordered-list li,
.page-blog-kkwin111-game-strategy__ordered-list li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Buttons */
.page-blog-kkwin111-game-strategy__btn-primary,
.page-blog-kkwin111-game-strategy__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-kkwin111-game-strategy__btn-primary {
  background: var(--page-button-gradient);
  color: #ffffff; /* White text on dark button */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-kkwin111-game-strategy__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-kkwin111-game-strategy__btn-secondary {
  background: none;
  color: var(--page-primary-color);
  border: 2px solid var(--page-primary-color);
  box-shadow: none;
}

.page-blog-kkwin111-game-strategy__btn-secondary:hover {
  background: var(--page-primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog-kkwin111-game-strategy__btn-text {
  display: inline-block;
  color: var(--page-primary-color);
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.page-blog-kkwin111-game-strategy__btn-text:hover {
  color: var(--page-secondary-color);
  text-decoration: underline;
}

/* Game Category Cards */
.page-blog-kkwin111-game-strategy__games-section .page-blog-kkwin111-game-strategy__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-kkwin111-game-strategy__game-category-card {
  background-color: var(--page-card-bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  color: var(--page-text-main-color);
}

.page-blog-kkwin111-game-strategy__card-image-wrapper {
  width: 100%;
  height: 220px; /* Fixed height for consistent card images */
  overflow: hidden;
}

.page-blog-kkwin111-game-strategy__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-blog-kkwin111-game-strategy__game-category-card:hover .page-blog-kkwin111-game-strategy__card-image {
  transform: scale(1.05);
}

.page-blog-kkwin111-game-strategy__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-kkwin111-game-strategy__card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--page-text-main-color);
}

.page-blog-kkwin111-game-strategy__card-content .page-blog-kkwin111-game-strategy__text-block {
  color: var(--page-text-secondary-color);
  flex-grow: 1;
}

.page-blog-kkwin111-game-strategy__card-content .page-blog-kkwin111-game-strategy__unordered-list {
  margin-top: 10px;
  margin-left: 0;
  padding-left: 20px;
}

/* CTA Section */
.page-blog-kkwin111-game-strategy__cta-section {
  background-color: var(--page-deep-green-color);
  text-align: center;
  padding: 80px 0;
}

.page-blog-kkwin111-game-strategy__cta-content {
  max-width: 800px;
}

.page-blog-kkwin111-game-strategy__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-blog-kkwin111-game-strategy__faq-section {
  background-color: var(--page-card-bg-color);
}

.page-blog-kkwin111-game-strategy__faq-item {
  background-color: var(--page-background-color);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-text-main-color);
}

.page-blog-kkwin111-game-strategy__faq-item summary {
  list-style: none;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--page-text-main-color);
  transition: background-color 0.3s ease;
}

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

.page-blog-kkwin111-game-strategy__faq-item summary:hover {
  background-color: rgba(var(--page-primary-color), 0.1);
}

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

.page-blog-kkwin111-game-strategy__faq-toggle {
  margin-left: 15px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--page-primary-color);
}

.page-blog-kkwin111-game-strategy__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95rem;
  color: var(--page-text-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-kkwin111-game-strategy__hero-content {
    padding: 30px 15px;
  }

  .page-blog-kkwin111-game-strategy__section {
    padding: 40px 0;
  }

  .page-blog-kkwin111-game-strategy__content-flex {
    flex-direction: column;
  }

  .page-blog-kkwin111-game-strategy__content-flex > .page-blog-kkwin111-game-strategy__text-content,
  .page-blog-kkwin111-game-strategy__content-flex > .page-blog-kkwin111-game-strategy__image-wrapper {
    width: 100%;
  }

  .page-blog-kkwin111-game-strategy__game-category-card {
    flex-direction: column;
  }

  .page-blog-kkwin111-game-strategy__card-image-wrapper {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-blog-kkwin111-game-strategy__container {
    padding: 0 15px;
  }

  .page-blog-kkwin111-game-strategy__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-kkwin111-game-strategy__hero-content {
    margin-top: 15px;
  }

  .page-blog-kkwin111-game-strategy__main-title {
    font-size: 2rem;
  }

  .page-blog-kkwin111-game-strategy__subtitle {
    font-size: 1.1rem;
  }

  .page-blog-kkwin111-game-strategy__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-blog-kkwin111-game-strategy__sub-section-title {
    font-size: 1.2rem;
  }

  .page-blog-kkwin111-game-strategy__text-block,
  .page-blog-kkwin111-game-strategy__unordered-list li,
  .page-blog-kkwin111-game-strategy__ordered-list li,
  .page-blog-kkwin111-game-strategy__faq-answer {
    font-size: 0.95rem;
  }

  /* Mobile image responsiveness */
  .page-blog-kkwin111-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-kkwin111-game-strategy__section,
  .page-blog-kkwin111-game-strategy__card,
  .page-blog-kkwin111-game-strategy__container,
  .page-blog-kkwin111-game-strategy__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-blog-kkwin111-game-strategy__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-blog-kkwin111-game-strategy__hero-image {
    width: 100%;
    height: auto;
  }

  /* Mobile button responsiveness */
  .page-blog-kkwin111-game-strategy__btn-primary,
  .page-blog-kkwin111-game-strategy__btn-secondary,
  .page-blog-kkwin111-game-strategy a[class*="button"],
  .page-blog-kkwin111-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-kkwin111-game-strategy__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure no horizontal scroll for content areas */
  .page-blog-kkwin111-game-strategy {
    overflow-x: hidden;
  }
}