.page-resources-new88-latest-promotions {
  --primary-color: #0A2342;
  --secondary-color: #FFD700;
  --text-on-primary: #FFFFFF;
  --text-on-secondary: #0A2342;
  --light-background: #F8F8F8;
  --dark-text: #333333;
  --button-hover-darken: #ccac00; /* Darker gold for hover */
  --button-hover-lighten: #2b4a70; /* Lighter primary for hover */
}

.page-resources-new88-latest-promotions__hero-section {
  background: var(--primary-color);
  color: var(--text-on-primary);
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-resources-new88-latest-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-resources-new88-latest-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-resources-new88-latest-promotions__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: var(--text-on-primary);
}

.page-resources-new88-latest-promotions__cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-on-secondary);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-new88-latest-promotions__cta-button:hover {
  background-color: var(--button-hover-darken);
  transform: translateY(-3px);
}

.page-resources-new88-latest-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.page-resources-new88-latest-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-new88-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-new88-latest-promotions__introduction-section,
.page-resources-new88-latest-promotions__terms-section,
.page-resources-new88-latest-promotions__why-choose-section,
.page-resources-new88-latest-promotions__faq-section {
  background-color: var(--light-background);
  color: var(--dark-text);
  padding: 60px 0;
}

.page-resources-new88-latest-promotions__promotions-grid-section,
.page-resources-new88-latest-promotions__how-to-claim-section,
.page-resources-new88-latest-promotions__cta-final-section {
  background-color: var(--primary-color);
  color: var(--text-on-primary);
  padding: 60px 0;
}

.page-resources-new88-latest-promotions__section-title {
  font-size: 2.8em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-resources-new88-latest-promotions__promotions-grid-section .page-resources-new88-latest-promotions__section-title,
.page-resources-new88-latest-promotions__how-to-claim-section .page-resources-new88-latest-promotions__section-title,
.page-resources-new88-latest-promotions__cta-final-section .page-resources-new88-latest-promotions__section-title {
  color: var(--secondary-color);
}

.page-resources-new88-latest-promotions__section-description {
  font-size: 1.2em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: var(--dark-text);
}

.page-resources-new88-latest-promotions__promotions-grid-section .page-resources-new88-latest-promotions__section-description,
.page-resources-new88-latest-promotions__how-to-claim-section .page-resources-new88-latest-promotions__section-description,
.page-resources-new88-latest-promotions__cta-final-section .page-resources-new88-latest-promotions__section-description {
  color: var(--text-on-primary);
}

.page-resources-new88-latest-promotions__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-new88-latest-promotions__image-text-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-resources-new88-latest-promotions__image-text-group .page-resources-new88-latest-promotions__content-image {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-new88-latest-promotions__image-text-group .page-resources-new88-latest-promotions__text-content {
  flex: 2 1 500px;
}

.page-resources-new88-latest-promotions__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-new88-latest-promotions__promotion-card {
  background-color: var(--text-on-primary);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--dark-text);
}

.page-resources-new88-latest-promotions__promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-new88-latest-promotions__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
}

.page-resources-new88-latest-promotions__card-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-new88-latest-promotions__card-text {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-resources-new88-latest-promotions__card-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-on-secondary);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1em;
}

.page-resources-new88-latest-promotions__card-button:hover {
  background-color: var(--button-hover-darken);
  transform: translateY(-2px);
}

.page-resources-new88-latest-promotions__steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-new88-latest-promotions__step-card {
  background-color: var(--text-on-primary);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--dark-text);
}

.page-resources-new88-latest-promotions__step-number {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: var(--text-on-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-new88-latest-promotions__step-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-new88-latest-promotions__step-text {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-resources-new88-latest-promotions__step-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-on-primary);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 0.95em;
}

.page-resources-new88-latest-promotions__step-button:hover {
  background-color: var(--button-hover-lighten);
}

.page-resources-new88-latest-promotions__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-new88-latest-promotions__terms-list,
.page-resources-new88-latest-promotions__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-new88-latest-promotions__terms-list li,
.page-resources-new88-latest-promotions__advantages-list li {
  background-color: var(--text-on-primary);
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-new88-latest-promotions__list-highlight {
  color: var(--primary-color);
}

.page-resources-new88-latest-promotions__responsible-gambling-image {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 150px;
  height: auto;
  opacity: 0.8;
}

.page-resources-new88-latest-promotions__faq-list {
  margin-top: 40px;
}

.page-resources-new88-latest-promotions__faq-item {
  background-color: var(--text-on-primary);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-new88-latest-promotions__faq-question {
  background-color: var(--primary-color);
  color: var(--text-on-primary);
  padding: 20px 25px;
  margin: 0;
  font-size: 1.3em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.page-resources-new88-latest-promotions__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-new88-latest-promotions__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-new88-latest-promotions__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  font-size: 1.1em;
  line-height: 1.7;
  color: var(--dark-text);
}

.page-resources-new88-latest-promotions__faq-answer.show {
  max-height: 200px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-resources-new88-latest-promotions__faq-image {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 200px;
  height: auto;
  opacity: 0.7;
}

.page-resources-new88-latest-promotions__cta-final-section {
  text-align: center;
  padding: 80px 20px;
}

.page-resources-new88-latest-promotions__cta-final-section .page-resources-new88-latest-promotions__section-title {
  color: var(--secondary-color);
}

.page-resources-new88-latest-promotions__cta-final-section .page-resources-new88-latest-promotions__text-content {
  color: var(--text-on-primary);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources-new88-latest-promotions__cta-button--large {
  padding: 18px 45px;
  font-size: 1.4em;
}

.page-resources-new88-latest-promotions__small-text {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-new88-latest-promotions__hero-title {
    font-size: 3em;
  }
  .page-resources-new88-latest-promotions__section-title {
    font-size: 2.2em;
  }
  .page-resources-new88-latest-promotions__promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-resources-new88-latest-promotions__steps-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-new88-latest-promotions__hero-section {
    padding: 80px 15px;
  }
  .page-resources-new88-latest-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-resources-new88-latest-promotions__hero-subtitle {
    font-size: 1.3em;
  }
  .page-resources-new88-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-resources-new88-latest-promotions__section-description {
    font-size: 1.1em;
  }
  .page-resources-new88-latest-promotions__text-content {
    font-size: 1em;
  }
  .page-resources-new88-latest-promotions__promotions-grid,
  .page-resources-new88-latest-promotions__steps-wrapper {
    grid-template-columns: 1fr;
  }
  .page-resources-new88-latest-promotions__image-text-group {
    flex-direction: column;
  }
  .page-resources-new88-latest-promotions__image-text-group .page-resources-new88-latest-promotions__content-image {
    flex: none;
  }
  .page-resources-new88-latest-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-new88-latest-promotions__faq-answer {
    font-size: 1em;
    padding: 0 20px;
  }
  .page-resources-new88-latest-promotions__faq-answer.show {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-new88-latest-promotions__hero-title {
    font-size: 2em;
  }
  .page-resources-new88-latest-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-new88-latest-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-resources-new88-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-resources-new88-latest-promotions__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}