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

.page-blog-gam88-latest-promotions-analysis {
  color: var(--gam88-text-main); /* Light text on dark body background */
  background-color: var(--gam88-background);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 0; /* body already handles padding-top from header */
}

.page-blog-gam88-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--gam88-background);
  overflow: hidden;
}

.page-blog-gam88-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px; /* Space between image and content */
}

.page-blog-gam88-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 1200px; /* Constrain max width of image */
  border-radius: 8px;
}

.page-blog-gam88-latest-promotions-analysis__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above any background effects */
}

.page-blog-gam88-latest-promotions-analysis__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--gam88-text-main);
  margin-bottom: 20px;
  max-width: 100%;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-gam88-latest-promotions-analysis__intro-text {
  font-size: 1.15rem;
  color: var(--gam88-text-secondary);
  margin-bottom: 30px;
}

.page-blog-gam88-latest-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--gam88-background);
}

.page-blog-gam88-latest-promotions-analysis__container {
  max-width: 100%;
}

.page-blog-gam88-latest-promotions-analysis__section-title {
  font-size: 2.2rem;
  color: var(--gam88-text-main);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-gam88-latest-promotions-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gam88-button-gradient);
  border-radius: 2px;
}

.page-blog-gam88-latest-promotions-analysis__paragraph {
  font-size: 1rem;
  color: var(--gam88-text-secondary);
  margin-bottom: 25px;
  text-align: justify;
}

.page-blog-gam88-latest-promotions-analysis__list,
.page-blog-gam88-latest-promotions-analysis__ordered-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-gam88-latest-promotions-analysis__list-item {
  background-color: var(--gam88-card-bg);
  border: 1px solid var(--gam88-border);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-gam88-latest-promotions-analysis__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 255, 0, 0.2);
}

.page-blog-gam88-latest-promotions-analysis__list-title {
  font-size: 1.5rem;
  color: var(--gam88-text-main);
  margin-bottom: 10px;
}

.page-blog-gam88-latest-promotions-analysis__list-description {
  font-size: 0.95rem;
  color: var(--gam88-text-secondary);
}

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

.page-blog-gam88-latest-promotions-analysis__card {
  background-color: var(--gam88-card-bg);
  border: 1px solid var(--gam88-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-gam88-latest-promotions-analysis__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 255, 0, 0.4);
}

.page-blog-gam88-latest-promotions-analysis__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gam88-divider);
}

.page-blog-gam88-latest-promotions-analysis__card-title {
  font-size: 1.4rem;
  color: var(--gam88-text-main);
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-blog-gam88-latest-promotions-analysis__card-description {
  font-size: 0.9rem;
  color: var(--gam88-text-secondary);
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: justify;
}

.page-blog-gam88-latest-promotions-analysis__btn-primary,
.page-blog-gam88-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  margin-top: auto; /* Push buttons to the bottom of cards */
}

.page-blog-gam88-latest-promotions-analysis__btn-primary {
  background: var(--gam88-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-gam88-latest-promotions-analysis__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

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

.page-blog-gam88-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--gam88-primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog-gam88-latest-promotions-analysis__cta-bottom {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.page-blog-gam88-latest-promotions-analysis__faq-section {
  margin-top: 40px;
  margin-bottom: 60px;
}

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

.page-blog-gam88-latest-promotions-analysis__faq-item[open] {
  background-color: var(--gam88-deep-green);
}

.page-blog-gam88-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--gam88-text-main);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s ease;
}

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

.page-blog-gam88-latest-promotions-analysis__faq-question:hover {
  color: var(--gam88-glow);
}

.page-blog-gam88-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-gam88-latest-promotions-analysis__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gam88-glow);
}

.page-blog-gam88-latest-promotions-analysis__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: var(--gam88-text-secondary);
  text-align: justify;
}

.page-blog-gam88-latest-promotions-analysis__faq-answer p {
  margin-bottom: 0; /* Remove default paragraph margin */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-gam88-latest-promotions-analysis__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-gam88-latest-promotions-analysis__section-title {
    font-size: 2rem;
  }
}

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

  .page-blog-gam88-latest-promotions-analysis__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-gam88-latest-promotions-analysis__hero-image-wrapper,
  .page-blog-gam88-latest-promotions-analysis__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  
  .page-blog-gam88-latest-promotions-analysis__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    padding: 0 15px;
  }

  .page-blog-gam88-latest-promotions-analysis__intro-text {
    font-size: 1rem;
    padding: 0 15px;
  }

  .page-blog-gam88-latest-promotions-analysis__content-area {
    padding: 40px 15px;
  }

  .page-blog-gam88-latest-promotions-analysis__container,
  .page-blog-gam88-latest-promotions-analysis__promotions-grid,
  .page-blog-gam88-latest-promotions-analysis__card,
  .page-blog-gam88-latest-promotions-analysis__list-item,
  .page-blog-gam88-latest-promotions-analysis__faq-item,
  .page-blog-gam88-latest-promotions-analysis__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-blog-gam88-latest-promotions-analysis__promotions-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-gam88-latest-promotions-analysis__card-image {
    height: 200px; /* Adjust card image height for mobile */
  }

  .page-blog-gam88-latest-promotions-analysis__btn-primary,
  .page-blog-gam88-latest-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px !important;
    margin-left: auto;
    margin-right: auto;
  }

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

  .page-blog-gam88-latest-promotions-analysis__section-title {
    font-size: 1.8rem;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-gam88-latest-promotions-analysis__paragraph,
  .page-blog-gam88-latest-promotions-analysis__list-description,
  .page-blog-gam88-latest-promotions-analysis__card-description,
  .page-blog-gam88-latest-promotions-analysis__faq-answer p {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-gam88-latest-promotions-analysis__list-item,
  .page-blog-gam88-latest-promotions-analysis__faq-item {
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-blog-gam88-latest-promotions-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-gam88-latest-promotions-analysis__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }

  .page-blog-gam88-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}