.page-index-five88-latest-promotions-express {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f5f5f5;
  line-height: 1.6;
}

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

.page-index-five88-latest-promotions-express__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep Red for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-five88-latest-promotions-express__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-index-five88-latest-promotions-express__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555;
}

.page-index-five88-latest-promotions-express__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-index-five88-latest-promotions-express__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep Red text */
  border: 2px solid #FFD700;
}

.page-index-five88-latest-promotions-express__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #6a0000;
}

.page-index-five88-latest-promotions-express__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-index-five88-latest-promotions-express__btn--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
}

.page-index-five88-latest-promotions-express__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 20px;
}

.page-index-five88-latest-promotions-express__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 35px;
}

/* Hero Section */
.page-index-five88-latest-promotions-express__hero-section {
  background: linear-gradient(135deg, #FFD700, #8B0000);
  color: #fff;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-five88-latest-promotions-express__hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-index-five88-latest-promotions-express__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-five88-latest-promotions-express__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-five88-latest-promotions-express__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-five88-latest-promotions-express__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
}

.page-index-five88-latest-promotions-express__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Promo Overview Section */
.page-index-five88-latest-promotions-express__promo-overview {
  padding: 60px 0;
  background-color: #fff;
}

/* Promo List Section */
.page-index-five88-latest-promotions-express__promo-list {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-index-five88-latest-promotions-express__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-five88-latest-promotions-express__promo-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-five88-latest-promotions-express__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-five88-latest-promotions-express__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-five88-latest-promotions-express__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-five88-latest-promotions-express__promo-title {
  font-size: 1.8em;
  color: #8B0000; /* Deep Red */
  margin-bottom: 15px;
}

.page-index-five88-latest-promotions-express__promo-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-five88-latest-promotions-express__promo-details {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  color: #444;
}

.page-index-five88-latest-promotions-express__promo-details li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

.page-index-five88-latest-promotions-express__promo-card .page-index-five88-latest-promotions-express__btn {
  margin-top: auto;
  width: 100%;
}

/* How to Claim Section */
.page-index-five88-latest-promotions-express__how-to-claim {
  padding: 80px 0;
  background-color: #fff;
}

.page-index-five88-latest-promotions-express__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-five88-latest-promotions-express__step-card {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-five88-latest-promotions-express__step-card:hover {
  transform: translateY(-5px);
}

.page-index-five88-latest-promotions-express__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  display: block;
}

.page-index-five88-latest-promotions-express__step-title {
  font-size: 1.5em;
  color: #8B0000; /* Deep Red */
  margin-bottom: 15px;
}

.page-index-five88-latest-promotions-express__step-text {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-five88-latest-promotions-express__step-card .page-index-five88-latest-promotions-express__btn {
  margin-top: auto;
  width: auto;
  align-self: center;
}

/* Promo Tips Section */
.page-index-five88-latest-promotions-express__promo-tips {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-index-five88-latest-promotions-express__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
}

.page-index-five88-latest-promotions-express__tips-list li {
  background-color: #fff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFD700; /* Gold accent */
  font-size: 1.05em;
  color: #444;
}

.page-index-five88-latest-promotions-express__tips-list li strong {
  color: #8B0000;
}

.page-index-five88-latest-promotions-express__tips-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Why FIVE88 Section */
.page-index-five88-latest-promotions-express__why-five88 {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

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

.page-index-five88-latest-promotions-express__feature-item {
  background-color: #fcfcfc;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-index-five88-latest-promotions-express__feature-item:hover {
  transform: translateY(-5px);
}

.page-index-five88-latest-promotions-express__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(255, 215, 0, 0.4)); /* Gold shadow */
}

.page-index-five88-latest-promotions-express__feature-title {
  font-size: 1.6em;
  color: #8B0000; /* Deep Red */
  margin-bottom: 15px;
}

.page-index-five88-latest-promotions-express__feature-text {
  color: #666;
}

.page-index-five88-latest-promotions-express__cta-text {
  font-size: 1.3em;
  font-weight: bold;
  color: #8B0000; /* Deep Red */
  margin-top: 60px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-index-five88-latest-promotions-express__faq {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-index-five88-latest-promotions-express__faq-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-index-five88-latest-promotions-express__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold */
  cursor: pointer;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  transition: color 0.3s ease;
}

.page-index-five88-latest-promotions-express__faq-question:hover {
  color: #e6c200;
}

.page-index-five88-latest-promotions-express__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
}

.page-index-five88-latest-promotions-express__faq-item.active .page-index-five88-latest-promotions-express__faq-answer {
  display: block;
}

.page-index-five88-latest-promotions-express__faq-item .page-index-five88-latest-promotions-express__btn {
  margin-top: 20px;
  display: inline-block;
}

/* Floating Promo Menu */
.page-index-five88-latest-promotions-express__floating-promo-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-five88-latest-promotions-express__floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: #8B0000; /* Deep Red */
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: bold;
  font-size: 0.95em;
}

.page-index-five88-latest-promotions-express__floating-btn:hover {
  background-color: #a00000;
  transform: translateX(-5px);
}

.page-index-five88-latest-promotions-express__floating-btn--highlight {
  background-color: #FFD700; /* Gold highlight */
  color: #8B0000;
}

.page-index-five88-latest-promotions-express__floating-btn--highlight:hover {
  background-color: #e6c200;
  color: #6a0000;
}

.page-index-five88-latest-promotions-express__floating-icon {
  width: 24px;
  height: 24px;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%); /* White icons */
}

.page-index-five88-latest-promotions-express__floating-btn--highlight .page-index-five88-latest-promotions-express__floating-icon {
  filter: none; /* Original color for highlight icon, or specific color */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-five88-latest-promotions-express__hero-title {
    font-size: 3em;
  }
  .page-index-five88-latest-promotions-express__hero-subtitle {
    font-size: 1.3em;
  }
  .page-index-five88-latest-promotions-express__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index-five88-latest-promotions-express__hero-section {
    padding: 80px 0;
  }
  .page-index-five88-latest-promotions-express__hero-title {
    font-size: 2.5em;
  }
  .page-index-five88-latest-promotions-express__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-five88-latest-promotions-express__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-five88-latest-promotions-express__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-five88-latest-promotions-express__promo-grid,
  .page-index-five88-latest-promotions-express__steps-grid,
  .page-index-five88-latest-promotions-express__features-grid {
    grid-template-columns: 1fr;
  }
  .page-index-five88-latest-promotions-express__floating-promo-menu {
    right: 10px;
    bottom: 10px;
    gap: 8px;
    padding: 8px;
  }
  .page-index-five88-latest-promotions-express__floating-btn {
    padding: 8px 12px;
    font-size: 0.9em;
  }
  .page-index-five88-latest-promotions-express__floating-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .page-index-five88-latest-promotions-express__hero-title {
    font-size: 2em;
  }
  .page-index-five88-latest-promotions-express__hero-subtitle {
    font-size: 1em;
  }
  .page-index-five88-latest-promotions-express__section-title {
    font-size: 1.8em;
  }
  .page-index-five88-latest-promotions-express__btn {
    width: 100%;
  }
  .page-index-five88-latest-promotions-express__floating-promo-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100% - 20px);
    left: 10px;
    right: 10px;
  }
  .page-index-five88-latest-promotions-express__floating-btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* Ensure color contrast for all text */
.page-index-five88-latest-promotions-express p,
.page-index-five88-latest-promotions-express li,
.page-index-five88-latest-promotions-express span {
  color: #333; /* Default dark text on light background */
}

.page-index-five88-latest-promotions-express__hero-section p,
.page-index-five88-latest-promotions-express__hero-section h1,
.page-index-five88-latest-promotions-express__hero-section h2,
.page-index-five88-latest-promotions-express__hero-section a {
  color: #fff; /* White text on dark/gradient background */
}

.page-index-five88-latest-promotions-express__btn--primary {
  color: #8B0000; /* Dark red text on gold button */
}

.page-index-five88-latest-promotions-express__btn--secondary {
  color: #FFD700; /* Gold text on transparent/dark background */
}

.page-index-five88-latest-promotions-express__btn--secondary:hover {
  color: #8B0000; /* Dark red text on gold button */
}

.page-index-five88-latest-promotions-express__faq-question {
  color: #FFD700; /* Gold text on white background */
}

.page-index-five88-latest-promotions-express__floating-btn {
  color: #fff; /* White text on deep red button */
}

.page-index-five88-latest-promotions-express__floating-btn--highlight {
  color: #8B0000; /* Deep red text on gold button */
}