/* Base Styles & Typography */
.page-blog-kuwin01-game-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

.page-blog-kuwin01-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-blog-kuwin01-game-strategy__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF5E1; /* Text Main */
}

.page-blog-kuwin01-game-strategy__section-title--light {
  color: #FFF5E1;
}

.page-blog-kuwin01-game-strategy h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: #F4D34D; /* Gold */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-kuwin01-game-strategy h4 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: #FFCC66; /* Glow */
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-blog-kuwin01-game-strategy p,
.page-blog-kuwin01-game-strategy li {
  font-size: 17px;
  color: #FFF5E1;
  margin-bottom: 15px;
}

.page-blog-kuwin01-game-strategy strong {
  color: #F4D34D;
}

.page-blog-kuwin01-game-strategy__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-kuwin01-game-strategy__image-center {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

/* Buttons */
.page-blog-kuwin01-game-strategy__btn-primary,
.page-blog-kuwin01-game-strategy__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-kuwin01-game-strategy__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #7A0E0E; /* Deep Red for contrast */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-kuwin01-game-strategy__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
}

.page-blog-kuwin01-game-strategy__btn-secondary {
  background: transparent;
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-kuwin01-game-strategy__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Hero Section */
.page-blog-kuwin01-game-strategy__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding */
  color: #FFF5E1;
  text-align: center;
  overflow: hidden;
}

.page-blog-kuwin01-game-strategy__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.page-blog-kuwin01-game-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-blog-kuwin01-game-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: -200px auto 0 auto; /* Pull content up over the image */
  padding: 40px;
  background: rgba(122, 14, 14, 0.8); /* Deep Red with opacity */
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transform: translateY(-50%); /* Adjust to center vertically after pull-up */
  top: 50%; /* Initial vertical position */
}

.page-blog-kuwin01-game-strategy__hero-title {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFD86A; /* Gold gradient start */
  line-height: 1.2;
}

.page-blog-kuwin01-game-strategy__hero-description {
  font-size: 19px;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-blog-kuwin01-game-strategy__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Intro Section */
.page-blog-kuwin01-game-strategy__intro-section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
}

/* Principles Section */
.page-blog-kuwin01-game-strategy__principles-section {
  padding: 80px 0;
  background-color: #7A0E0E; /* Deep Red */
}

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

.page-blog-kuwin01-game-strategy__principle-card {
  background: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544; /* Border */
  color: #FFF5E1;
}

.page-blog-kuwin01-game-strategy__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFD86A; /* Gold gradient start */
  margin-bottom: 15px;
}

/* Specific Strategies Section */
.page-blog-kuwin01-game-strategy__specific-strategies-section {
  padding: 80px 0;
  background-color: #B71C1C; /* Background */
}

.page-blog-kuwin01-game-strategy__article-block {
  background: #D32F2F; /* Card BG */
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544; /* Border */
  color: #FFF5E1;
}

.page-blog-kuwin01-game-strategy__article-subtitle {
  font-size: 32px;
  font-weight: 700;
  color: #FFD86A; /* Gold gradient start */
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-kuwin01-game-strategy__article-subheading {
  font-size: 24px;
  font-weight: 600;
  color: #FFCC66; /* Glow */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-kuwin01-game-strategy__article-figure {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.page-blog-kuwin01-game-strategy__benefits-section {
  padding: 80px 0;
  background-color: #E53935; /* Auxiliary color, light-bg for contrast */
  color: #FFF5E1;
}

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

.page-blog-kuwin01-game-strategy__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.page-blog-kuwin01-game-strategy__benefit-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 18px;
}

.page-blog-kuwin01-game-strategy__benefit-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFD86A; /* Gold for checkmark */
  font-weight: bold;
}

.page-blog-kuwin01-game-strategy__benefits-wrapper .page-blog-kuwin01-game-strategy__image-side {
  flex-shrink: 0;
  max-width: 500px;
  width: 100%;
}

/* New Player Tips Section */
.page-blog-kuwin01-game-strategy__new-player-tips-section {
  padding: 80px 0;
  background-color: #B71C1C; /* Background */
}

.page-blog-kuwin01-game-strategy__tips-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.page-blog-kuwin01-game-strategy__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.page-blog-kuwin01-game-strategy__tip-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 18px;
}

.page-blog-kuwin01-game-strategy__tip-item::before {
  content: '💡';
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-kuwin01-game-strategy__new-player-tips-section .page-blog-kuwin01-game-strategy__image-side {
  flex-shrink: 0;
  max-width: 500px;
  width: 100%;
}

.page-blog-kuwin01-game-strategy__cta-buttons--center {
  margin-top: 40px;
  text-align: center;
}

/* FAQ Section */
details.page-blog-kuwin01-game-strategy__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #F2B544; /* Border */
  overflow: hidden;
  background: #D32F2F; /* Card BG */
  color: #FFF5E1;
}
details.page-blog-kuwin01-game-strategy__faq-item summary.page-blog-kuwin01-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-kuwin01-game-strategy__faq-item summary.page-blog-kuwin01-game-strategy__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-kuwin01-game-strategy__faq-item summary.page-blog-kuwin01-game-strategy__faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}
.page-blog-kuwin01-game-strategy__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD86A; /* Gold gradient start */
}
.page-blog-kuwin01-game-strategy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFCC66; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-kuwin01-game-strategy__faq-item .page-blog-kuwin01-game-strategy__faq-answer {
  padding: 0 20px 20px;
  background: #7A0E0E; /* Deep Red */
  border-radius: 0 0 5px 5px;
  color: #FFF5E1;
}

.page-blog-kuwin01-game-strategy__faq-answer p {
  margin-bottom: 0;
}

.page-blog-kuwin01-game-strategy__faq-section {
  padding: 80px 0;
  background-color: #7A0E0E; /* Deep Red */
}

/* Conclusion Section */
.page-blog-kuwin01-game-strategy__conclusion-section {
  padding: 80px 0;
  background-color: #B71C1C; /* Background */
}

.page-blog-kuwin01-game-strategy__text-center {
  text-align: center;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-kuwin01-game-strategy__hero-content {
    margin: -150px auto 0 auto;
    padding: 30px;
  }

  .page-blog-kuwin01-game-strategy__benefits-wrapper,
  .page-blog-kuwin01-game-strategy__tips-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-blog-kuwin01-game-strategy__benefits-wrapper .page-blog-kuwin01-game-strategy__image-side,
  .page-blog-kuwin01-game-strategy__new-player-tips-section .page-blog-kuwin01-game-strategy__image-side {
    order: -1; /* Image first */
  }

  .page-blog-kuwin01-game-strategy__principles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* General content area padding */
  .page-blog-kuwin01-game-strategy__container {
    padding: 15px;
  }

  /* HERO Section */
  .page-blog-kuwin01-game-strategy__hero-section {
    padding-top: 10px; /* Small top padding */
  }

  .page-blog-kuwin01-game-strategy__hero-image {
    object-fit: contain !important; /* Ensure image is not cropped */
    aspect-ratio: unset !important; /* Remove fixed aspect ratio */
    position: static !important;
    height: auto !important;
    margin-bottom: 20px;
  }
  
  .page-blog-kuwin01-game-strategy__hero-image-wrapper {
    padding-bottom: 0 !important;
    height: auto !important;
  }

  .page-blog-kuwin01-game-strategy__hero-content {
    margin: 0 auto;
    padding: 25px;
    top: 0;
    transform: translateY(0);
    background: rgba(122, 14, 14, 0.9); /* Slightly more opaque */
  }

  .page-blog-kuwin01-game-strategy__hero-title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 15px;
  }

  .page-blog-kuwin01-game-strategy__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-blog-kuwin01-game-strategy__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Section Titles */
  .page-blog-kuwin01-game-strategy__section-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 30px;
  }

  .page-blog-kuwin01-game-strategy h3 {
    font-size: clamp(20px, 6vw, 26px);
  }

  .page-blog-kuwin01-game-strategy h4 {
    font-size: clamp(18px, 5vw, 20px);
  }

  .page-blog-kuwin01-game-strategy p,
  .page-blog-kuwin01-game-strategy li {
    font-size: 16px;
  }

  /* Images & Containers */
  .page-blog-kuwin01-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-kuwin01-game-strategy__intro-section,
  .page-blog-kuwin01-game-strategy__principles-section,
  .page-blog-kuwin01-game-strategy__specific-strategies-section,
  .page-blog-kuwin01-game-strategy__benefits-section,
  .page-blog-kuwin01-game-strategy__new-player-tips-section,
  .page-blog-kuwin01-game-strategy__faq-section,
  .page-blog-kuwin01-game-strategy__conclusion-section {
    padding: 40px 0;
  }

  .page-blog-kuwin01-game-strategy__article-block {
    padding: 25px;
  }

  .page-blog-kuwin01-game-strategy__article-subtitle {
    font-size: clamp(26px, 7vw, 30px);
  }

  .page-blog-kuwin01-game-strategy__benefits-wrapper .page-blog-kuwin01-game-strategy__image-side,
  .page-blog-kuwin01-game-strategy__new-player-tips-section .page-blog-kuwin01-game-strategy__image-side {
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 20px;
  }

  /* Buttons & Button Containers */
  .page-blog-kuwin01-game-strategy__btn-primary,
  .page-blog-kuwin01-game-strategy__btn-secondary,
  .page-blog-kuwin01-game-strategy a[class*="button"],
  .page-blog-kuwin01-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: 12px 15px;
  }
  
  .page-blog-kuwin01-game-strategy__hero-buttons,
  .page-blog-kuwin01-game-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .page-blog-kuwin01-game-strategy__cta-buttons--center {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ */
  details.page-blog-kuwin01-game-strategy__faq-item summary.page-blog-kuwin01-game-strategy__faq-question {
    padding: 15px;
  }
  .page-blog-kuwin01-game-strategy__faq-qtext {
    font-size: 16px;
  }
  .page-blog-kuwin01-game-strategy__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  details.page-blog-kuwin01-game-strategy__faq-item .page-blog-kuwin01-game-strategy__faq-answer {
    padding: 0 15px 15px;
  }
}

/* Ensure content area images maintain minimum size if not handled by max-width: 100% */
.page-blog-kuwin01-game-strategy__content-area img {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-blog-kuwin01-game-strategy__content-area img {
    min-width: unset !important;
    min-height: unset !important;
  }
}