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

:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --text-main-color: #1F2D3D;
  --text-dark-color: #000000;
  --card-bg-color: #FFFFFF;
  --background-page-color: #F4F7FB;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
}

.page-blog-god88-latest-promotions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for light backgrounds */
  background-color: var(--background-page-color);
}

.page-blog-god88-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background-color: var(--primary-color);
  overflow: hidden;
}

.page-blog-god88-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-god88-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-blog-god88-latest-promotions-analysis__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 0 20px;
  z-index: 10;
}

.page-blog-god88-latest-promotions-analysis__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-blog-god88-latest-promotions-analysis__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-god88-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-god88-latest-promotions-analysis__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-god88-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-god88-latest-promotions-analysis__btn-secondary {
  background-color: var(--card-bg-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-god88-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-blog-god88-latest-promotions-analysis__content-section {
  padding: 60px 20px;
}

.page-blog-god88-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-god88-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-dark-color);
}

.page-blog-god88-latest-promotions-analysis__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.page-blog-god88-latest-promotions-analysis__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

/* Dark background section */
.page-blog-god88-latest-promotions-analysis__dark-bg {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-blog-god88-latest-promotions-analysis__dark-bg .page-blog-god88-latest-promotions-analysis__section-title,
.page-blog-god88-latest-promotions-analysis__dark-bg .page-blog-god88-latest-promotions-analysis__text-block {
  color: #ffffff;
}

.page-blog-god88-latest-promotions-analysis__card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--text-main-color);
  border: 1px solid var(--border-color);
}

.page-blog-god88-latest-promotions-analysis__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-blog-god88-latest-promotions-analysis__card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-blog-god88-latest-promotions-analysis__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-blog-god88-latest-promotions-analysis__card-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-god88-latest-promotions-analysis__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-god88-latest-promotions-analysis__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--secondary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-blog-god88-latest-promotions-analysis__list-item strong {
  color: #ffffff;
}

.page-blog-god88-latest-promotions-analysis__faq-section {
  padding: 60px 20px;
}

.page-blog-god88-latest-promotions-analysis__faq-list {
  margin-top: 30px;
}

.page-blog-god88-latest-promotions-analysis__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-god88-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--text-dark-color);
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid var(--border-color);
}

.page-blog-god88-latest-promotions-analysis__faq-item[open] > .page-blog-god88-latest-promotions-analysis__faq-question {
  background-color: var(--primary-color);
  color: #ffffff;
  border-bottom-color: var(--primary-color);
}

.page-blog-god88-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.page-blog-god88-latest-promotions-analysis__faq-item[open] .page-blog-god88-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg);
  color: #ffffff;
}

.page-blog-god88-latest-promotions-analysis__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  color: var(--text-main-color);
}

.page-blog-god88-latest-promotions-analysis__faq-answer p {
  margin-bottom: 0;
}

.page-blog-god88-latest-promotions-analysis__cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-blog-god88-latest-promotions-analysis__cta-section .page-blog-god88-latest-promotions-analysis__section-title {
  color: #ffffff;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-blog-god88-latest-promotions-analysis__card {
    flex-direction: row;
  }

  .page-blog-god88-latest-promotions-analysis__card-image {
    width: 40%;
    height: auto;
  }

  .page-blog-god88-latest-promotions-analysis__card-content {
    width: 60%;
  }
}

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

  .page-blog-god88-latest-promotions-analysis__hero-section {
    padding-bottom: 30px;
  }

  .page-blog-god88-latest-promotions-analysis__hero-content {
    position: static;
    transform: none;
    padding: 20px 15px;
    max-width: 100%;
    margin-top: -100px; /* Adjust to pull content up over image */
  }

  .page-blog-god88-latest-promotions-analysis__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-blog-god88-latest-promotions-analysis__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-god88-latest-promotions-analysis__cta-button,
  .page-blog-god88-latest-promotions-analysis a[class*="button"],
  .page-blog-god88-latest-promotions-analysis 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;
    margin-bottom: 10px; /* Space out multiple buttons */
  }

  .page-blog-god88-latest-promotions-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-god88-latest-promotions-analysis__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-god88-latest-promotions-analysis__card {
    flex-direction: column;
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-blog-god88-latest-promotions-analysis__card-image {
    height: auto;
  }

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

  .page-blog-god88-latest-promotions-analysis__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-god88-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-god88-latest-promotions-analysis__hero-image-wrapper,
  .page-blog-god88-latest-promotions-analysis__card,
  .page-blog-god88-latest-promotions-analysis__container,
  .page-blog-god88-latest-promotions-analysis__content-section,
  .page-blog-god88-latest-promotions-analysis__faq-section,
  .page-blog-god88-latest-promotions-analysis__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-god88-latest-promotions-analysis__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-god88-latest-promotions-analysis__faq-answer {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-god88-latest-promotions-analysis__list-item {
    font-size: 1em;
    padding: 12px 15px;
  }

  /* If multiple buttons are in a flex container, ensure they wrap */
  .page-blog-god88-latest-promotions-analysis__cta-buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 10px;
  }
}