/* style/blog-how-to-download-good88-app.css */

/* Base styles for the page */
.page-blog-how-to-download-good88-app {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-blog-how-to-download-good88-app__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Sections */
.page-blog-how-to-download-good88-app__section {
  padding: 60px 0;
}

.page-blog-how-to-download-good88-app__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-how-to-download-good88-app__light-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

.page-blog-how-to-download-good88-app__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
}

.page-blog-how-to-download-good88-app__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-download-good88-app__highlight {
  color: #57E38D; /* Glow */
  font-weight: bold;
}

/* Hero Section */
.page-blog-how-to-download-good88-app__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
}

.page-blog-how-to-download-good88-app__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-how-to-download-good88-app__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Darken the background image */
}

.page-blog-how-to-download-good88-app__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-download-good88-app__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #F2C14E; /* Gold */
}

.page-blog-how-to-download-good88-app__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

/* CTA Buttons */
.page-blog-how-to-download-good88-app__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-how-to-download-good88-app__btn-primary,
.page-blog-how-to-download-good88-app__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-download-good88-app__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-how-to-download-good88-app__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-how-to-download-good88-app__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

.page-blog-how-to-download-good88-app__btn-secondary:hover {
  background-color: #2E7A4E; /* Border */
  color: #ffffff;
  transform: translateY(-2px);
}

/* Features Grid */
.page-blog-how-to-download-good88-app__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-download-good88-app__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-download-good88-app__feature-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-blog-how-to-download-good88-app__feature-description {
  color: #A7D9B8; /* Text Secondary */
}

/* Card Styling */
.page-blog-how-to-download-good88-app__card {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
  border: 1px solid #2E7A4E; /* Border */
}

/* Step List */
.page-blog-how-to-download-good88-app__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-how-to-download-good88-app__step-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  counter-increment: step-counter;
  position: relative;
  padding-left: 70px; /* Space for step number */
}

.page-blog-how-to-download-good88-app__step-item::before {
  content: "Bước " counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #11A84E; /* Primary Color */
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-blog-how-to-download-good88-app__step-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold */
}

.page-blog-how-to-download-good88-app__step-description {
  color: #A7D9B8; /* Text Secondary */
}

/* Image Container */
.page-blog-how-to-download-good88-app__image-container {
  margin: 40px auto;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-download-good88-app__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

/* List styles */
.page-blog-how-to-download-good88-app__list {
  list-style: disc;
  margin-left: 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
}

.page-blog-how-to-download-good88-app__list-item {
  margin-bottom: 10px;
}

.page-blog-how-to-download-good88-app__features-list {
  list-style: none;
  padding: 0;
}

.page-blog-how-to-download-good88-app__features-list .page-blog-how-to-download-good88-app__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-blog-how-to-download-good88-app__features-list .page-blog-how-to-download-good88-app__list-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #2AD16F;
  font-size: 1.2em;
  line-height: 1;
}

/* FAQ Section */
.page-blog-how-to-download-good88-app__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-download-good88-app__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-download-good88-app__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  background-color: #11271B; /* Card BG */
  color: #F2C14E; /* Gold */
  font-weight: bold;
  font-size: 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #2E7A4E; /* Divider */
}

.page-blog-how-to-download-good88-app__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-download-good88-app__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-blog-how-to-download-good88-app__faq-answer {
  padding: 20px 25px;
  background-color: #0A4B2C; /* Deep Green */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05em;
}

.page-blog-how-to-download-good88-app__faq-answer p {
  margin-bottom: 10px;
  color: #A7D9B8;
}

.page-blog-how-to-download-good88-app__faq-answer p:last-child {
  margin-bottom: 0;
}

/* CTA Section at the bottom of sections */
.page-blog-how-to-download-good88-app__cta-section {
  margin-top: 50px;
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-download-good88-app__hero-content {
    max-width: 768px;
  }

  .page-blog-how-to-download-good88-app__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }

  .page-blog-how-to-download-good88-app__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-download-good88-app__hero-section {
    min-height: 60vh;
    padding-bottom: 40px;
  }

  .page-blog-how-to-download-good88-app__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-how-to-download-good88-app__hero-description {
    font-size: 1em;
  }

  .page-blog-how-to-download-good88-app__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-download-good88-app__btn-primary,
  .page-blog-how-to-download-good88-app__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-download-good88-app__section {
    padding: 40px 0;
  }

  .page-blog-how-to-download-good88-app__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-how-to-download-good88-app__text-block,
  .page-blog-how-to-download-good88-app__list-item,
  .page-blog-how-to-download-good88-app__feature-description {
    font-size: 0.95em;
  }

  .page-blog-how-to-download-good88-app__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-download-good88-app__step-item {
    padding-left: 60px;
  }

  .page-blog-how-to-download-good88-app__step-item::before {
    width: 35px;
    height: 35px;
    font-size: 0.8em;
    left: 15px;
    top: 20px;
  }

  .page-blog-how-to-download-good88-app__step-title {
    font-size: 1.2em;
  }

  .page-blog-how-to-download-good88-app__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-how-to-download-good88-app__faq-answer {
    font-size: 0.95em;
    padding: 15px 20px;
  }

  /* Mobile image and video responsiveness */
  .page-blog-how-to-download-good88-app img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-how-to-download-good88-app__section,
  .page-blog-how-to-download-good88-app__card,
  .page-blog-how-to-download-good88-app__container,
  .page-blog-how-to-download-good88-app__image-container,
  .page-blog-how-to-download-good88-app__video-section,
  .page-blog-how-to-download-good88-app__video-container,
  .page-blog-how-to-download-good88-app__video-wrapper,
  .page-blog-how-to-download-good88-app__cta-buttons,
  .page-blog-how-to-download-good88-app__button-group,
  .page-blog-how-to-download-good88-app__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-blog-how-to-download-good88-app__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  
  .page-blog-how-to-download-good88-app__video-section {
    padding-top: 10px !important;
  }
  
  .page-blog-how-to-download-good88-app__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

/* Ensure content images are at least 200px */
.page-blog-how-to-download-good88-app__content-image {
  min-width: 200px;
  min-height: 200px;
}

/* Contrast Fixes */
.page-blog-how-to-download-good88-app__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-how-to-download-good88-app__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}