/* style/index-one88-latest-promotions-overview.css */
.page-index-one88-latest-promotions-overview {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-index-one88-latest-promotions-overview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-one88-latest-promotions-overview__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #3a5c9d 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-one88-latest-promotions-overview__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,patterns,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-one88-latest-promotions-overview__hero-section > * {
  position: relative;
  z-index: 1;
}

.page-index-one88-latest-promotions-overview__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E3B505; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-one88-latest-promotions-overview__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-one88-latest-promotions-overview__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  margin: 10px;
}

.page-index-one88-latest-promotions-overview__btn--primary {
  background-color: #E3B505; /* Gold button */
  color: #0A2463; /* Dark blue text */
  border: none;
}

.page-index-one88-latest-promotions-overview__btn--primary:hover {
  background-color: #f5c81f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-one88-latest-promotions-overview__btn--secondary {
  background-color: #0A2463;
  color: #E3B505;
  border: 2px solid #E3B505;
}

.page-index-one88-latest-promotions-overview__btn--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-one88-latest-promotions-overview__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-index-one88-latest-promotions-overview__content-section {
  padding: 60px 0;
}

.page-index-one88-latest-promotions-overview__bg--light {
  background-color: #f8f8f8;
  color: #333;
}

.page-index-one88-latest-promotions-overview__bg--dark {
  background-color: #0A2463;
  color: #fff;
}

.page-index-one88-latest-promotions-overview__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #0A2463;
}

.page-index-one88-latest-promotions-overview__section-title--light {
  color: #E3B505;
}

.page-index-one88-latest-promotions-overview__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-one88-latest-promotions-overview__text--light {
  color: #e0e0e0;
}

.page-index-one88-latest-promotions-overview__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-one88-latest-promotions-overview__promo-card {
  background-color: #1a3a7a; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.page-index-one88-latest-promotions-overview__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-one88-latest-promotions-overview__promo-image {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-index-one88-latest-promotions-overview__card-title {
  font-size: 1.5em;
  color: #E3B505; /* Gold for card titles */
  margin-bottom: 15px;
  min-height: 60px; /* Ensure consistent height for titles */
}

.page-index-one88-latest-promotions-overview__card-text {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-index-one88-latest-promotions-overview__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-index-one88-latest-promotions-overview__steps-list li {
  margin-bottom: 40px;
  position: relative;
  padding-left: 70px;
}

.page-index-one88-latest-promotions-overview__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #E3B505;
  color: #0A2463;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-one88-latest-promotions-overview__step-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-index-one88-latest-promotions-overview__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-one88-latest-promotions-overview__list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 20px;
}

.page-index-one88-latest-promotions-overview__list li {
  margin-bottom: 15px;
  color: #e0e0e0;
  font-size: 1.1em;
}

.page-index-one88-latest-promotions-overview__list-item-title {
    font-size: 1.2em;
    color: #E3B505;
    margin-bottom: 5px;
}

.page-index-one88-latest-promotions-overview__app-image {
  max-width: 600px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-index-one88-latest-promotions-overview__faq-item {
  background-color: #1a3a7a;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-index-one88-latest-promotions-overview__faq-question {
  font-size: 1.4em;
  color: #E3B505;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-one88-latest-promotions-overview__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-one88-latest-promotions-overview__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-one88-latest-promotions-overview__faq-answer {
  font-size: 1.1em;
  color: #e0e0e0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-index-one88-latest-promotions-overview__faq-answer.show {
  max-height: 200px; /* Adjust as needed */
}

.page-index-one88-latest-promotions-overview__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #0A2463;
  color: #fff;
}

.page-index-one88-latest-promotions-overview__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #E3B505; /* Gold */
    color: #0A2463; /* Dark blue text */
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    animation: page-index-one88-latest-promotions-overview__pulse 2s infinite;
}

.page-index-one88-latest-promotions-overview__floating-text {
    margin: 0;
    font-weight: bold;
    font-size: 1.1em;
    color: #0A2463;
}

.page-index-one88-latest-promotions-overview__btn--floating {
    background-color: #0A2463;
    color: #E3B505;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9em;
    text-decoration: none;
    font-weight: bold;
}

.page-index-one88-latest-promotions-overview__btn--floating:hover {
    background-color: #2a4c8f;
    color: #E3B505;
}

@keyframes page-index-one88-latest-promotions-overview__pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.page-index-one88-latest-promotions-overview__link--highlight {
  color: #E3B505;
  text-decoration: none;
  font-weight: bold;
}

.page-index-one88-latest-promotions-overview__link--highlight:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-one88-latest-promotions-overview__main-title {
    font-size: 2.5em;
  }

  .page-index-one88-latest-promotions-overview__section-title {
    font-size: 2em;
  }

  .page-index-one88-latest-promotions-overview__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-index-one88-latest-promotions-overview__steps-list li {
    padding-left: 60px;
  }

  .page-index-one88-latest-promotions-overview__steps-list li::before {
    width: 45px;
    height: 45px;
    font-size: 1.5em;
  }

  .page-index-one88-latest-promotions-overview__faq-question {
    font-size: 1.2em;
  }

  .page-index-one88-latest-promotions-overview__floating-promo {
    bottom: 10px;
    right: 10px;
    padding: 10px 15px;
    font-size: 0.9em;
  }

  .page-index-one88-latest-promotions-overview__btn--floating {
    padding: 6px 12px;
    font-size: 0.8em;
  }
}

@media (max-width: 480px) {
  .page-index-one88-latest-promotions-overview__main-title {
    font-size: 2em;
  }

  .page-index-one88-latest-promotions-overview__subtitle {
    font-size: 1em;
  }

  .page-index-one88-latest-promotions-overview__section-title {
    font-size: 1.8em;
  }

  .page-index-one88-latest-promotions-overview__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-index-one88-latest-promotions-overview__promo-card {
    padding: 20px;
  }

  .page-index-one88-latest-promotions-overview__card-title {
    font-size: 1.3em;
  }

  .page-index-one88-latest-promotions-overview__steps-list li {
    padding-left: 50px;
  }

  .page-index-one88-latest-promotions-overview__steps-list li::before {
    width: 40px;
    height: 40px;
    font-size: 1.3em;
  }
}