.page-blog-how-to-download-9ki {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
}

.page-blog-how-to-download-9ki__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding for visual separation */
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Text color for dark backgrounds */
  overflow: hidden;
}

.page-blog-how-to-download-9ki__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit height of hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-how-to-download-9ki__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-how-to-download-9ki__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

.page-blog-how-to-download-9ki__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2FFF6; /* Main text color for dark backgrounds */
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-how-to-download-9ki__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  color: #A7D9B8; /* Secondary text color for dark backgrounds */
}

.page-blog-how-to-download-9ki__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-download-9ki__cta-button: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-how-to-download-9ki__cta-button--inline {
  margin-top: 20px;
  font-size: 1rem;
  padding: 12px 25px;
}

.page-blog-how-to-download-9ki__cta-button--card {
  width: 100%;
  text-align: center;
  margin-top: auto; /* Push button to bottom of card */
  padding: 10px 20px;
  font-size: 0.95rem;
}

.page-blog-how-to-download-9ki__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2rem;
  margin-top: 40px;
}

.page-blog-how-to-download-9ki__content-area,
.page-blog-how-to-download-9ki__troubleshooting,
.page-blog-how-to-download-9ki__faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-how-to-download-9ki__dark-bg {
  background-color: #08160F;
  color: #F2FFF6; /* Main text color for dark backgrounds */
}

.page-blog-how-to-download-9ki__light-bg {
  background-color: #f4f7f6; /* Body background */
  color: #333333; /* Main text color for light backgrounds */
}

.page-blog-how-to-download-9ki__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: inherit; /* Inherit color from parent section */
}

.page-blog-how-to-download-9ki__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: inherit; /* Inherit color from parent section */
}

.page-blog-how-to-download-9ki__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: inherit; /* Inherit color from parent section */
}

.page-blog-how-to-download-9ki__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-download-9ki__grid-layout--two-col {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-blog-how-to-download-9ki__card {
  background-color: #11271B; /* Card BG from custom palette */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  color: #F2FFF6; /* Text Main for dark card background */
  height: 100%;
  border: 1px solid #2E7A4E; /* Border from custom palette */
}

.page-blog-how-to-download-9ki__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-how-to-download-9ki__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-download-9ki__card-text {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

.page-blog-how-to-download-9ki__list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: inherit;
  padding-left: 0;
}

.page-blog-how-to-download-9ki__list li {
  margin-bottom: 8px;
  color: inherit;
}

.page-blog-how-to-download-9ki__list--bullet {
  list-style-type: disc;
  color: inherit;
}

.page-blog-how-to-download-9ki__important-note-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 20px;
  text-align: center;
  color: #F2C14E; /* Gold color for emphasis */
}

.page-blog-how-to-download-9ki__security-warning {
  background-color: #0A4B2C; /* Deep Green from custom palette */
  border-radius: 12px;
  padding: 40px;
  margin-top: 50px;
  text-align: center;
  color: #F2FFF6;
}

.page-blog-how-to-download-9ki__security-warning .page-blog-how-to-download-9ki__sub-title {
  color: #F2C14E;
  margin-top: 0;
}

.page-blog-how-to-download-9ki__security-warning p {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: #A7D9B8;
}

.page-blog-how-to-download-9ki__security-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-download-9ki__benefits-section {
  padding: 60px 20px;
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-how-to-download-9ki__game-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
}

.page-blog-how-to-download-9ki__game-image {
  flex: 1 1 400px;
  min-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-blog-how-to-download-9ki__game-list {
  flex: 2 1 500px;
  min-width: 300px;
}

.page-blog-how-to-download-9ki__game-list p {
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-blog-how-to-download-9ki__faq-section {
  padding: 60px 20px;
}

.page-blog-how-to-download-9ki__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-download-9ki__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-blog-how-to-download-9ki__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-download-9ki__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-download-9ki__faq-item[open] .page-blog-how-to-download-9ki__faq-question {
  border-bottom: 1px solid #d0d0d0;
}

.page-blog-how-to-download-9ki__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #11A84E;
}

.page-blog-how-to-download-9ki__faq-item[open] .page-blog-how-to-download-9ki__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-download-9ki__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #555555;
  background-color: #ffffff;
}

.page-blog-how-to-download-9ki__conclusion {
  padding: 80px 20px;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green from custom palette */
  color: #F2FFF6;
}

.page-blog-how-to-download-9ki__conclusion .page-blog-how-to-download-9ki__section-description {
  color: #A7D9B8;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-how-to-download-9ki {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-download-9ki__hero-content {
    padding: 30px 15px;
  }

  .page-blog-how-to-download-9ki__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-how-to-download-9ki__hero-description {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
  }

  .page-blog-how-to-download-9ki__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-blog-how-to-download-9ki__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .page-blog-how-to-download-9ki__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-blog-how-to-download-9ki__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
  }

  .page-blog-how-to-download-9ki__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-download-9ki__grid-layout--two-col {
    grid-template-columns: 1fr;
  }

  .page-blog-how-to-download-9ki__card {
    padding: 20px;
  }

  .page-blog-how-to-download-9ki__card-image {
    height: 180px;
  }

  .page-blog-how-to-download-9ki__security-warning {
    padding: 30px 20px;
  }

  .page-blog-how-to-download-9ki__game-showcase {
    flex-direction: column;
    gap: 30px;
  }

  .page-blog-how-to-download-9ki__game-image {
    flex: none;
    width: 100%;
  }

  .page-blog-how-to-download-9ki__game-list {
    flex: none;
    width: 100%;
  }

  .page-blog-how-to-download-9ki__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-how-to-download-9ki__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .page-blog-how-to-download-9ki__conclusion {
    padding: 50px 15px;
  }

  /* Mobile responsive for images */
  .page-blog-how-to-download-9ki img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-download-9ki__hero-image-wrapper,
  .page-blog-how-to-download-9ki__card,
  .page-blog-how-to-download-9ki__security-warning,
  .page-blog-how-to-download-9ki__game-showcase,
  .page-blog-how-to-download-9ki__faq-list,
  .page-blog-how-to-download-9ki__container,
  .page-blog-how-to-download-9ki__content-area,
  .page-blog-how-to-download-9ki__download-guide,
  .page-blog-how-to-download-9ki__troubleshooting,
  .page-blog-how-to-download-9ki__benefits-section,
  .page-blog-how-to-download-9ki__faq-section,
  .page-blog-how-to-download-9ki__conclusion {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  /* Mobile responsive for buttons */
  .page-blog-how-to-download-9ki__cta-button,
  .page-blog-how-to-download-9ki a[class*="button"],
  .page-blog-how-to-download-9ki 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-how-to-download-9ki__cta-buttons,
  .page-blog-how-to-download-9ki__button-group,
  .page-blog-how-to-download-9ki__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;
    display: flex;
    flex-direction: column; /* Ensure vertical stacking for better mobile UX */
  }
}