/* style/blog-good88-latest-promotions-analysis.css */

/* BEM Naming for the page */
.page-blog-good88-latest-promotions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-color);
}

/* Hero Section */
.page-blog-good88-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* body handles --header-offset, so small top padding here */
  color: var(--text-main);
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-good88-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.page-blog-good88-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-good88-latest-promotions-analysis__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-blog-good88-latest-promotions-analysis__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-main);
  line-height: 1.2;
}

.page-blog-good88-latest-promotions-analysis__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-blog-good88-latest-promotions-analysis__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-good88-latest-promotions-analysis__btn-primary,
.page-blog-good88-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button adapts to container */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
}

.page-blog-good88-latest-promotions-analysis__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-blog-good88-latest-promotions-analysis__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-good88-latest-promotions-analysis__btn-secondary {
  background: #11271B;
  color: #57E38D;
  border: 2px solid #2E7A4E;
}

.page-blog-good88-latest-promotions-analysis__btn-secondary:hover {
  background: #2E7A4E;
  color: #F2FFF6;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-blog-good88-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-good88-latest-promotions-analysis__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-main);
}

.page-blog-good88-latest-promotions-analysis__sub-title {
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-blog-good88-latest-promotions-analysis__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-good88-latest-promotions-analysis__list li {
  margin-bottom: 10px;
}

/* Introduction Section */
.page-blog-good88-latest-promotions-analysis__introduction-section {
  padding: 80px 0;
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-good88-latest-promotions-analysis__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  max-width: 800px;
}

/* Video Section */
.page-blog-good88-latest-promotions-analysis__video-section {
  padding: 80px 0;
  background-color: var(--deep-green);
  color: var(--text-main);
  text-align: center;
}

.page-blog-good88-latest-promotions-analysis__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Max width for desktop */
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.page-blog-good88-latest-promotions-analysis__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-blog-good88-latest-promotions-analysis__video-cta {
  margin-top: 30px;
}

/* Promotions Overview Section */
.page-blog-good88-latest-promotions-analysis__promotions-overview {
  padding: 80px 0;
  background-color: var(--bg-color);
  color: var(--text-secondary);
}

.page-blog-good88-latest-promotions-analysis__promotion-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-good88-latest-promotions-analysis__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.page-blog-good88-latest-promotions-analysis__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-blog-good88-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-good88-latest-promotions-analysis__card p {
  margin-bottom: 25px;
  flex-grow: 1;
}

/* App Download Section */
.page-blog-good88-latest-promotions-analysis__app-download-section {
  padding: 80px 0;
  background-color: var(--deep-green);
  color: var(--text-main);
  text-align: center;
}

.page-blog-good88-latest-promotions-analysis__app-download-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-good88-latest-promotions-analysis__app-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  display: block;
}

.page-blog-good88-latest-promotions-analysis__app-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.page-blog-good88-latest-promotions-analysis__app-text .page-blog-good88-latest-promotions-analysis__list {
  margin-left: 20px;
}

/* Terms Section */
.page-blog-good88-latest-promotions-analysis__terms-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  color: var(--text-secondary);
}

/* Optimization Section */
.page-blog-good88-latest-promotions-analysis__optimization-section {
  padding: 80px 0;
  background-color: var(--card-bg);
  color: var(--text-main);
}

/* Platform Trust Section */
.page-blog-good88-latest-promotions-analysis__platform-trust-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  color: var(--text-secondary);
}

/* FAQ Section */
.page-blog-good88-latest-promotions-analysis__faq-section {
  padding: 80px 0;
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-good88-latest-promotions-analysis__faq-list {
  margin-top: 40px;
}

.page-blog-good88-latest-promotions-analysis__faq-item {
  background-color: #11271B;
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-good88-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-main);
  background-color: #11271B;
  list-style: none;
  user-select: none;
}

.page-blog-good88-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-good88-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-blog-good88-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--gold);
}

.page-blog-good88-latest-promotions-analysis__faq-answer {
  padding: 0 20px 20px;
  color: var(--text-secondary);
  font-size: 0.95em;
}

/* CTA Section */
.page-blog-good88-latest-promotions-analysis__cta-section {
  padding: 80px 0;
  background-color: var(--deep-green);
  text-align: center;
  color: var(--text-main);
}

/* Color Variables (from custom palette) */
.page-blog-good88-latest-promotions-analysis {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --bg-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-blog-good88-latest-promotions-analysis__dark-bg {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-good88-latest-promotions-analysis__light-bg {
  background-color: var(--bg-color);
  color: var(--text-secondary);
}

.page-blog-good88-latest-promotions-analysis__deep-green-bg {
  background-color: var(--deep-green);
  color: var(--text-main);
}

.page-blog-good88-latest-promotions-analysis__text-main {
  color: var(--text-main);
}

.page-blog-good88-latest-promotions-analysis__text-secondary {
  color: var(--text-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-good88-latest-promotions-analysis__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-good88-latest-promotions-analysis__hero-content {
    max-width: 768px;
  }

  .page-blog-good88-latest-promotions-analysis__section-title {
    margin-bottom: 30px;
  }

  .page-blog-good88-latest-promotions-analysis__promotion-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .page-blog-good88-latest-promotions-analysis__app-download-content {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-good88-latest-promotions-analysis__app-image {
    max-width: 300px;
  }

  .page-blog-good88-latest-promotions-analysis__app-text {
    text-align: center;
    max-width: 100%;
  }

  .page-blog-good88-latest-promotions-analysis__app-text .page-blog-good88-latest-promotions-analysis__list {
    margin-left: 0;
    padding-left: 20px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-blog-good88-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-good88-latest-promotions-analysis__hero-section,
  .page-blog-good88-latest-promotions-analysis__introduction-section,
  .page-blog-good88-latest-promotions-analysis__video-section,
  .page-blog-good88-latest-promotions-analysis__promotions-overview,
  .page-blog-good88-latest-promotions-analysis__app-download-section,
  .page-blog-good88-latest-promotions-analysis__terms-section,
  .page-blog-good88-latest-promotions-analysis__optimization-section,
  .page-blog-good88-latest-promotions-analysis__platform-trust-section,
  .page-blog-good88-latest-promotions-analysis__faq-section,
  .page-blog-good88-latest-promotions-analysis__cta-section {
    padding: 40px 0;
  }

  .page-blog-good88-latest-promotions-analysis__container {
    padding: 0 15px;
  }

  .page-blog-good88-latest-promotions-analysis__main-title {
    font-size: 2em; /* Adjusted for mobile readability */
  }

  .page-blog-good88-latest-promotions-analysis__description {
    font-size: 1em;
  }

  .page-blog-good88-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-good88-latest-promotions-analysis__btn-primary,
  .page-blog-good88-latest-promotions-analysis__btn-secondary {
    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;
  }

  /* Mobile image responsive rules */
  .page-blog-good88-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-good88-latest-promotions-analysis__hero-image-wrapper,
  .page-blog-good88-latest-promotions-analysis__content-image,
  .page-blog-good88-latest-promotions-analysis__card-image,
  .page-blog-good88-latest-promotions-analysis__app-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Mobile video responsive rules */
  .page-blog-good88-latest-promotions-analysis video,
  .page-blog-good88-latest-promotions-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-good88-latest-promotions-analysis__video-section,
  .page-blog-good88-latest-promotions-analysis__video-container,
  .page-blog-good88-latest-promotions-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-good88-latest-promotions-analysis__video-section {
    padding-top: 10px !important; /* body handles --header-offset, so small top padding here */
  }

  .page-blog-good88-latest-promotions-analysis__card {
    padding: 20px;
  }

  .page-blog-good88-latest-promotions-analysis__faq-question {
    padding: 15px;
  }

  .page-blog-good88-latest-promotions-analysis__faq-qtext {
    font-size: 1em;
  }

  .page-blog-good88-latest-promotions-analysis__faq-answer {
    padding: 0 15px 15px;
  }
}