/* style/blog-acb888-android-app-guide.css */

/* General page styling */
.page-blog-acb888-android-app-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default to light text for dark background */
  background-color: var(--background-color, #08160F); /* Assume dark body background */
}

.page-blog-acb888-android-app-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-acb888-android-app-guide__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem); /* H1 size constraint applies to section titles too */
  font-weight: 700;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-blog-acb888-android-app-guide__text-block {
  font-size: 1rem;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-acb888-android-app-guide__highlight {
  color: var(--gold, #F2C14E); /* Using Gold for highlights */
  font-weight: bold;
}

/* Hero Section */
.page-blog-acb888-android-app-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image first, then content */
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: var(--background-color, #08160F);
}

.page-blog-acb888-android-app-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 40px; /* Space between image and content */
}

.page-blog-acb888-android-app-guide__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-blog-acb888-android-app-guide__main-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem); /* H1 font size control */
  font-weight: 800;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.page-blog-acb888-android-app-guide__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.page-blog-acb888-android-app-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  margin-top: 30px;
}

.page-blog-acb888-android-app-guide__btn-primary,
.page-blog-acb888-android-app-guide__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
}

.page-blog-acb888-android-app-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-acb888-android-app-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-acb888-android-app-guide__btn-secondary {
  background: transparent;
  color: var(--text-main, #F2FFF6);
  border: 2px solid var(--border, #2E7A4E);
}

.page-blog-acb888-android-app-guide__btn-secondary:hover {
  background: rgba(var(--primary-color-rgb, 17, 168, 78), 0.2);
  color: #ffffff;
}

/* Intro and general sections */
.page-blog-acb888-android-app-guide__intro-section,
.page-blog-acb888-android-app-guide__download-guide,
.page-blog-acb888-android-app-guide__features-section,
.page-blog-acb888-android-app-guide__update-guide,
.page-blog-acb888-android-app-guide__conclusion-section {
  padding: 60px 0;
  background-color: var(--background-color, #08160F); /* Default dark background */
}

.page-blog-acb888-android-app-guide__benefits-section,
.page-blog-acb888-android-app-guide__install-guide,
.page-blog-acb888-android-app-guide__promotions-section,
.page-blog-acb888-android-app-guide__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg, #11271B); /* Slightly lighter dark background for contrast */
}

.page-blog-acb888-android-app-guide__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-acb888-android-app-guide__card-link {
  color: var(--secondary-color, #22C768);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-acb888-android-app-guide__card-link:hover {
  color: var(--gold, #F2C14E);
}

.page-blog-acb888-android-app-guide__text-link {
  color: var(--secondary-color, #22C768);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-acb888-android-app-guide__text-link:hover {
  color: var(--gold, #F2C14E);
}

/* Benefits Grid */
.page-blog-acb888-android-app-guide__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-acb888-android-app-guide__benefit-card {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--border, #2E7A4E);
}

/* Download Guide Steps */
.page-blog-acb888-android-app-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-acb888-android-app-guide__step-card {
  background-color: var(--card-bg, #11271B);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--border, #2E7A4E);
}

.page-blog-acb888-android-app-guide__step-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain; /* Changed to contain for step images */
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  display: block;
}

/* Install Guide */
.page-blog-acb888-android-app-guide__ordered-list {
  list-style: decimal;
  padding-left: 25px;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 30px;
}

.page-blog-acb888-android-app-guide__ordered-list li {
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-blog-acb888-android-app-guide__ordered-list strong {
  color: var(--gold, #F2C14E);
}

/* Features Grid */
.page-blog-acb888-android-app-guide__features-grid,
.page-blog-acb888-android-app-guide__promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-acb888-android-app-guide__feature-card,
.page-blog-acb888-android-app-guide__promo-card {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--border, #2E7A4E);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-acb888-android-app-guide__feature-image,
.page-blog-acb888-android-app-guide__promo-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  display: block;
}

/* Update Guide */
.page-blog-acb888-android-app-guide__unordered-list {
  list-style: disc;
  padding-left: 25px;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 30px;
}

.page-blog-acb888-android-app-guide__unordered-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* FAQ Section */
.page-blog-acb888-android-app-guide__faq-list {
  margin-top: 40px;
}

.page-blog-acb888-android-app-guide__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-acb888-android-app-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  font-size: 1.1rem;
  user-select: none;
  list-style: none; /* For details/summary */
  -webkit-tap-highlight-color: transparent;
}

.page-blog-acb888-android-app-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-acb888-android-app-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--secondary-color, #22C768);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-acb888-android-app-guide__faq-item[open] .page-blog-acb888-android-app-guide__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to form an X or minus */
}

.page-blog-acb888-android-app-guide__faq-answer {
  padding: 0 25px 18px;
  color: var(--text-secondary, #A7D9B8);
  font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-acb888-android-app-guide__hero-content {
    max-width: 768px;
  }
}

@media (max-width: 768px) {
  .page-blog-acb888-android-app-guide__container {
    padding: 0 15px;
  }

  .page-blog-acb888-android-app-guide__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-acb888-android-app-guide__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-blog-acb888-android-app-guide__hero-description {
    font-size: clamp(0.9rem, 2.8vw, 1.1rem);
  }

  .page-blog-acb888-android-app-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-acb888-android-app-guide__btn-primary,
  .page-blog-acb888-android-app-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-blog-acb888-android-app-guide__benefits-grid,
  .page-blog-acb888-android-app-guide__steps-grid,
  .page-blog-acb888-android-app-guide__features-grid,
  .page-blog-acb888-android-app-guide__promos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-acb888-android-app-guide__hero-section,
  .page-blog-acb888-android-app-guide__intro-section,
  .page-blog-acb888-android-app-guide__benefits-section,
  .page-blog-acb888-android-app-guide__download-guide,
  .page-blog-acb888-android-app-guide__install-guide,
  .page-blog-acb888-android-app-guide__features-section,
  .page-blog-acb888-android-app-guide__promotions-section,
  .page-blog-acb888-android-app-guide__update-guide,
  .page-blog-acb888-android-app-guide__faq-section,
  .page-blog-acb888-android-app-guide__conclusion-section {
    padding: 40px 0;
  }

  .page-blog-acb888-android-app-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Ensure min size */
    min-height: 200px !important; /* Ensure min size */
  }

  .page-blog-acb888-android-app-guide__hero-image,
  .page-blog-acb888-android-app-guide__step-image,
  .page-blog-acb888-android-app-guide__feature-image,
  .page-blog-acb888-android-app-guide__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-blog-acb888-android-app-guide__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-acb888-android-app-guide__faq-answer {
    padding: 0 20px 15px;
  }
}

/* Ensure all content area images are at least 200px */
.page-blog-acb888-android-app-guide img:not(.shared-header__logo, .shared-footer__social-icon, .shared-footer__payment-icon, .shared-footer__game-provider-icon) {
  min-width: 200px;
  min-height: 200px;
}

/* Color contrast enforcement, assuming dark body background */
.page-blog-acb888-android-app-guide__dark-bg {
  background-color: var(--background-color, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-blog-acb888-android-app-guide__card-dark-bg {
  background-color: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
}

/* No CSS filters for images */
.page-blog-acb888-android-app-guide img {
  filter: none;
}