/* style/blog-ok789-apk-game-features-analysis.css */

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

.page-blog-ok789-apk-game-features-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-dark-text); /* Default for light background sections */
  background-color: var(--page-white-bg); /* Default for light background sections */
}

.page-blog-ok789-apk-game-features-analysis__dark-bg {
  background-color: var(--page-background);
  color: var(--page-text-main);
}

.page-blog-ok789-apk-game-features-analysis__light-bg {
  background-color: var(--page-white-bg);
  color: var(--page-dark-text);
}

.page-blog-ok789-apk-game-features-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is for visual spacing */
  overflow: hidden;
}

.page-blog-ok789-apk-game-features-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-ok789-apk-game-features-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-ok789-apk-game-features-analysis__hero-content {
  max-width: 900px;
  margin-top: 40px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-ok789-apk-game-features-analysis__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--page-text-main);
  margin-bottom: 20px;
  max-width: 100%;
}

.page-blog-ok789-apk-game-features-analysis__hero-description {
  font-size: 1.1em;
  color: var(--page-text-secondary);
  margin-bottom: 30px;
}

.page-blog-ok789-apk-game-features-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-ok789-apk-game-features-analysis__btn-primary,
.page-blog-ok789-apk-game-features-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-ok789-apk-game-features-analysis__btn-primary {
  background: var(--page-button-gradient);
  color: var(--page-light-text);
  border: 2px solid transparent;
}

.page-blog-ok789-apk-game-features-analysis__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-blog-ok789-apk-game-features-analysis__btn-secondary {
  background: var(--page-white-bg);
  color: var(--page-primary-color);
  border: 2px solid var(--page-primary-color);
}

.page-blog-ok789-apk-game-features-analysis__btn-secondary:hover {
  background: var(--page-primary-color);
  color: var(--page-light-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(17, 168, 78, 0.2);
}

.page-blog-ok789-apk-game-features-analysis__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-ok789-apk-game-features-analysis__section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-blog-ok789-apk-game-features-analysis__sub-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: inherit;
}

.page-blog-ok789-apk-game-features-analysis__paragraph {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: inherit;
}

.page-blog-ok789-apk-game-features-analysis__highlight {
  color: var(--page-primary-color);
  font-weight: 700;
}

.page-blog-ok789-apk-game-features-analysis__list-item {
  margin-bottom: 10px;
  list-style-type: disc;
  margin-left: 20px;
  color: inherit;
}

.page-blog-ok789-apk-game-features-analysis__step-list {
  list-style-type: decimal;
  margin-left: 20px;
  padding-left: 0;
}

.page-blog-ok789-apk-game-features-analysis__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-ok789-apk-game-features-analysis__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-blog-ok789-apk-game-features-analysis__faq-list {
  margin-top: 30px;
}

.page-blog-ok789-apk-game-features-analysis__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-text-main);
}

.page-blog-ok789-apk-game-features-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: 600;
  font-size: 1.1em;
  cursor: pointer;
  background-color: var(--page-deep-green-color);
  color: var(--page-text-main);
  list-style: none; /* For details/summary */
}

.page-blog-ok789-apk-game-features-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-ok789-apk-game-features-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-ok789-apk-game-features-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-glow-color);
}

.page-blog-ok789-apk-game-features-analysis__faq-answer {
  padding: 0 25px 15px 25px;
  font-size: 1em;
  color: var(--page-text-secondary);
}

.page-blog-ok789-apk-game-features-analysis__text-main {
  color: var(--page-text-main);
}

.page-blog-ok789-apk-game-features-analysis__text-secondary {
  color: var(--page-text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-ok789-apk-game-features-analysis__main-title {
    font-size: 2.8em;
  }
}

@media (max-width: 768px) {
  .page-blog-ok789-apk-game-features-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-ok789-apk-game-features-analysis__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-ok789-apk-game-features-analysis__hero-content {
    margin-top: 20px;
  }

  .page-blog-ok789-apk-game-features-analysis__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-blog-ok789-apk-game-features-analysis__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-ok789-apk-game-features-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-ok789-apk-game-features-analysis__btn-primary,
  .page-blog-ok789-apk-game-features-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-ok789-apk-game-features-analysis__section {
    padding: 40px 15px;
  }

  .page-blog-ok789-apk-game-features-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-blog-ok789-apk-game-features-analysis__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  /* Mobile responsive images */
  .page-blog-ok789-apk-game-features-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-ok789-apk-game-features-analysis__section,
  .page-blog-ok789-apk-game-features-analysis__card,
  .page-blog-ok789-apk-game-features-analysis__container,
  .page-blog-ok789-apk-game-features-analysis__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-ok789-apk-game-features-analysis__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-ok789-apk-game-features-analysis__video-section {
    padding-top: 10px !important;
  }

  .page-blog-ok789-apk-game-features-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-ok789-apk-game-features-analysis__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-ok789-apk-game-features-analysis__main-title {
    font-size: 1.8em;
  }

  .page-blog-ok789-apk-game-features-analysis__section-title {
    font-size: 1.6em;
  }

  .page-blog-ok789-apk-game-features-analysis__sub-title {
    font-size: 1.2em;
  }
}