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

.page-blog-gu88-latest-promotions {
  background-color: var(--gu88-background);
  color: var(--gu88-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-gu88-latest-promotions__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: 60px;
  background-color: var(--gu88-deep-green);
}

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

.page-blog-gu88-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-gu88-latest-promotions__hero-content {
  max-width: 900px;
  width: 100%;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  box-sizing: border-box;
}

.page-blog-gu88-latest-promotions__main-title {
  color: var(--gu88-gold-color);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-blog-gu88-latest-promotions__hero-description {
  color: var(--gu88-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-blog-gu88-latest-promotions__cta-button {
  display: inline-block;
  background: var(--gu88-button-gradient);
  color: var(--gu88-text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-gu88-latest-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-gu88-latest-promotions__content-section {
  padding: 60px 0;
  background-color: var(--gu88-background);
}

.page-blog-gu88-latest-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-gu88-latest-promotions__section-title {
  color: var(--gu88-primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 5px rgba(17, 168, 78, 0.3);
}

.page-blog-gu88-latest-promotions__promotion-category {
  background-color: var(--gu88-card-bg);
  border: 1px solid var(--gu88-border-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-gu88-latest-promotions__category-title {
  color: var(--gu88-gold-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gu88-divider-color);
  padding-bottom: 10px;
}

.page-blog-gu88-latest-promotions__category-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-gu88-latest-promotions p {
  color: var(--gu88-text-main);
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-blog-gu88-latest-promotions ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: var(--gu88-text-main);
}

.page-blog-gu88-latest-promotions li {
  margin-bottom: 8px;
  color: var(--gu88-text-secondary);
}

.page-blog-gu88-latest-promotions a {
  color: var(--gu88-secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-gu88-latest-promotions a:hover {
  color: var(--gu88-gold-color);
  text-decoration: underline;
}

.page-blog-gu88-latest-promotions__step-by-step {
  background-color: var(--gu88-card-bg);
  border: 1px solid var(--gu88-border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.page-blog-gu88-latest-promotions__step-title {
  color: var(--gu88-primary-color);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-blog-gu88-latest-promotions__tip-item {
  background-color: var(--gu88-card-bg);
  border: 1px solid var(--gu88-border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.page-blog-gu88-latest-promotions__tip-title {
  color: var(--gu88-primary-color);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-blog-gu88-latest-promotions__faq-section {
  padding: 60px 0;
  background-color: var(--gu88-deep-green);
}

.page-blog-gu88-latest-promotions__faq-list {
  margin-top: 30px;
}

.page-blog-gu88-latest-promotions__faq-item {
  background-color: var(--gu88-card-bg);
  border: 1px solid var(--gu88-border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--gu88-text-main);
}

.page-blog-gu88-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gu88-primary-color);
  background-color: var(--gu88-card-bg);
  border-bottom: 1px solid var(--gu88-divider-color);
  list-style: none; /* For details summary */
}

.page-blog-gu88-latest-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-gu88-latest-promotions__faq-qtext {
  flex-grow: 1;
}

.page-blog-gu88-latest-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gu88-gold-color);
}

.page-blog-gu88-latest-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: var(--gu88-text-secondary);
}

.page-blog-gu88-latest-promotions__cta-section {
  background-color: var(--gu88-background);
  padding: 80px 20px;
  text-align: center;
}

.page-blog-gu88-latest-promotions__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-gu88-latest-promotions__cta-title {
  color: var(--gu88-gold-color);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-blog-gu88-latest-promotions__cta-description {
  color: var(--gu88-text-main);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.page-blog-gu88-latest-promotions__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-gu88-latest-promotions__hero-content {
    padding: 15px;
  }
  .page-blog-gu88-latest-promotions__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-gu88-latest-promotions__section-title,
  .page-blog-gu88-latest-promotions__cta-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-blog-gu88-latest-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-gu88-latest-promotions__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-gu88-latest-promotions__hero-content {
    margin-top: 15px;
  }
  .page-blog-gu88-latest-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-blog-gu88-latest-promotions__hero-description {
    font-size: 1rem;
  }
  .page-blog-gu88-latest-promotions__cta-button,
  .page-blog-gu88-latest-promotions a[class*="button"],
  .page-blog-gu88-latest-promotions 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;
  }
  .page-blog-gu88-latest-promotions__cta-buttons,
  .page-blog-gu88-latest-promotions__button-group,
  .page-blog-gu88-latest-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Ensure vertical stacking for multiple buttons */
  }
  .page-blog-gu88-latest-promotions__content-section,
  .page-blog-gu88-latest-promotions__faq-section,
  .page-blog-gu88-latest-promotions__cta-section {
    padding: 40px 0;
  }
  .page-blog-gu88-latest-promotions__content-area {
    padding: 0 15px;
  }
  .page-blog-gu88-latest-promotions__section-title,
  .page-blog-gu88-latest-promotions__cta-title {
    font-size: 2rem;
  }
  .page-blog-gu88-latest-promotions__promotion-category,
  .page-blog-gu88-latest-promotions__step-by-step,
  .page-blog-gu88-latest-promotions__tip-item,
  .page-blog-gu88-latest-promotions__faq-item {
    padding: 20px;
    margin-bottom: 20px;
  }
  .page-blog-gu88-latest-promotions__category-title,
  .page-blog-gu88-latest-promotions__step-title,
  .page-blog-gu88-latest-promotions__tip-title {
    font-size: 1.4rem;
  }
  .page-blog-gu88-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-gu88-latest-promotions__hero-image-wrapper,
  .page-blog-gu88-latest-promotions__promotion-category,
  .page-blog-gu88-latest-promotions__step-by-step,
  .page-blog-gu88-latest-promotions__tip-item,
  .page-blog-gu88-latest-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-blog-gu88-latest-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-blog-gu88-latest-promotions__faq-answer {
    padding: 10px 20px 15px;
  }
}