.page-resources-latest-fb88-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  background-color: #f5f5f5; /* Light background for the page content */
}

.page-resources-latest-fb88-promotions__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-latest-fb88-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-latest-fb88-promotions__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 2;
}

.page-resources-latest-fb88-promotions__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.page-resources-latest-fb88-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-fb88-promotions__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f0f0f0;
}

.page-resources-latest-fb88-promotions__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-latest-fb88-promotions__btn-primary,
.page-resources-latest-fb88-promotions__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  box-sizing: border-box;
}

.page-resources-latest-fb88-promotions__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Dark Blue */
  border: 2px solid #FFD700;
}

.page-resources-latest-fb88-promotions__btn-primary:hover {
  background-color: #e6c200;
  color: #156da6;
  border-color: #e6c200;
}

.page-resources-latest-fb88-promotions__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-resources-latest-fb88-promotions__btn-secondary:hover {
  background-color: #FFD700;
  color: #1E90FF;
}

.page-resources-latest-fb88-promotions__content-area {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-fb88-promotions__section-title {
  font-size: 2.5em;
  color: #1E90FF; /* Dark Blue */
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #FFD700; /* Gold underline */
}

.page-resources-latest-fb88-promotions__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-latest-fb88-promotions__promo-grid,
.page-resources-latest-fb88-promotions__guide-steps,
.page-resources-latest-fb88-promotions__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-resources-latest-fb88-promotions__promo-card,
.page-resources-latest-fb88-promotions__step-item,
.page-resources-latest-fb88-promotions__tip-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-latest-fb88-promotions__promo-card:hover,
.page-resources-latest-fb88-promotions__step-item:hover,
.page-resources-latest-fb88-promotions__tip-card:hover {
  transform: translateY(-5px);
}

.page-resources-latest-fb88-promotions__card-image,
.page-resources-latest-fb88-promotions__step-image {
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-resources-latest-fb88-promotions__card-title,
.page-resources-latest-fb88-promotions__step-title {
  font-size: 1.5em;
  color: #1E90FF; /* Dark Blue */
  margin-bottom: 15px;
}

.page-resources-latest-fb88-promotions__card-description,
.page-resources-latest-fb88-promotions__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-latest-fb88-promotions__card-link {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Dark Blue */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push link to bottom */
}

.page-resources-latest-fb88-promotions__card-link:hover {
  background-color: #e6c200;
}

.page-resources-latest-fb88-promotions__terms-section {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-resources-latest-fb88-promotions__terms-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-fb88-promotions__terms-list {
  width: 50%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-latest-fb88-promotions__terms-list li {
  background-color: #f9f9f9;
  border-left: 5px solid #1E90FF; /* Dark Blue accent */
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-latest-fb88-promotions__terms-heading {
  color: #FFD700; /* Gold */
  font-size: 1.2em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-latest-fb88-promotions__terms-list p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #444444;
}

.page-resources-latest-fb88-promotions__faq-container {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-resources-latest-fb88-promotions__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-latest-fb88-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #1E90FF; /* Dark Blue */
  cursor: pointer;
  background-color: #eaf2f8; /* Light blue background */
  transition: background-color 0.3s ease;
}

.page-resources-latest-fb88-promotions__faq-question:hover {
  background-color: #dbe8f4;
}

.page-resources-latest-fb88-promotions__faq-question h3 {
  margin: 0;
  color: #1E90FF;
}

.page-resources-latest-fb88-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700; /* Gold for toggle */
}

.page-resources-latest-fb88-promotions__faq-item.active .page-resources-latest-fb88-promotions__faq-toggle {
  transform: rotate(45deg);
  color: #1E90FF;
}

.page-resources-latest-fb88-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
  color: #444444;
}

.page-resources-latest-fb88-promotions__faq-item.active .page-resources-latest-fb88-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px;
}

.page-resources-latest-fb88-promotions__faq-answer p {
  margin: 0;
  line-height: 1.6;
}

.page-resources-latest-fb88-promotions__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
}

/* Floating buttons */
.page-resources-latest-fb88-promotions__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-resources-latest-fb88-promotions__floating-btn {
  display: block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.3s ease;
  min-width: 120px; /* Ensure button doesn't become too small */
}

.page-resources-latest-fb88-promotions__floating-btn:hover {
  transform: translateY(-3px);
}

.page-resources-latest-fb88-promotions__floating-btn--register {
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Dark Blue */
}

.page-resources-latest-fb88-promotions__floating-btn--register:hover {
  background-color: #e6c200;
}

.page-resources-latest-fb88-promotions__floating-btn--login {
  background-color: #1E90FF; /* Dark Blue */
  color: #FFD700; /* Gold */
}

.page-resources-latest-fb88-promotions__floating-btn--login:hover {
  background-color: #156da6;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-latest-fb88-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-resources-latest-fb88-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-resources-latest-fb88-promotions__section-title {
    font-size: 2em;
  }
  .page-resources-latest-fb88-promotions__terms-section {
    flex-direction: column;
    align-items: center;
  }
  .page-resources-latest-fb88-promotions__terms-image,
  .page-resources-latest-fb88-promotions__terms-list {
    width: 90%;
  }
}

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

  .page-resources-latest-fb88-promotions__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-latest-fb88-promotions__hero-title {
    font-size: 2em;
  }
}