.page-promo-latest-offers {
  color: #ffffff; /* Light text for dark body background */
}

.page-promo-latest-offers__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure spacing for fixed header on desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
}

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

.page-promo-latest-offers__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
  padding: 40px 20px;
}

.page-promo-latest-offers__hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(26, 26, 46, 0.8); /* Main color with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-promo-latest-offers__hero-title {
  font-size: 3.2em;
  color: #E9B000;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-promo-latest-offers__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promo-latest-offers__hero-button,
.page-promo-latest-offers__card-button,
.page-promo-latest-offers__step-button,
.page-promo-latest-offers__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(90deg, #E9B000, #ffcc33);
  color: #1A1A2E;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(233, 176, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-promo-latest-offers__hero-button:hover,
.page-promo-latest-offers__card-button:hover,
.page-promo-latest-offers__step-button:hover,
.page-promo-latest-offers__cta-button:hover {
  background: linear-gradient(90deg, #ffcc33, #E9B000);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(233, 176, 0, 0.6);
}

.page-promo-latest-offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promo-latest-offers__section-title {
  font-size: 2.8em;
  color: #E9B000;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo-latest-offers__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

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

.page-promo-latest-offers__promo-card {
  background: #1A1A2E;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promo-latest-offers__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.page-promo-latest-offers__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promo-latest-offers__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo-latest-offers__card-title {
  font-size: 1.8em;
  color: #E9B000;
  margin-bottom: 15px;
}

.page-promo-latest-offers__card-text {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo-latest-offers__how-to-claim-section {
  background: rgba(26, 26, 46, 0.7);
  padding: 80px 0;
  margin-top: 60px;
}

.page-promo-latest-offers__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promo-latest-offers__step-card {
  background: #1A1A2E;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo-latest-offers__step-number {
  background: #E9B000;
  color: #1A1A2E;
  font-size: 1.8em;
  font-weight: bold;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(233, 176, 0, 0.4);
}

.page-promo-latest-offers__step-title {
  font-size: 1.6em;
  color: #E9B000;
  margin-bottom: 10px;
}

.page-promo-latest-offers__step-text {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 25px;
}

.page-promo-latest-offers__why-bet999bet-section {
  padding: 80px 0;
}

.page-promo-latest-offers__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-promo-latest-offers__feature-item {
  text-align: center;
  background: rgba(26, 26, 46, 0.7);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promo-latest-offers__feature-item:hover {
  transform: translateY(-5px);
}

.page-promo-latest-offers__feature-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promo-latest-offers__feature-title {
  font-size: 1.8em;
  color: #E9B000;
  margin-bottom: 15px;
}

.page-promo-latest-offers__feature-text {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
}

.page-promo-latest-offers__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-promo-latest-offers__faq-section {
  background: rgba(26, 26, 46, 0.7);
  padding: 80px 0;
  margin-top: 60px;
}

.page-promo-latest-offers__faq-item {
  background: #1A1A2E;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo-latest-offers__faq-question {
  font-size: 1.4em;
  color: #E9B000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo-latest-offers__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promo-latest-offers__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo-latest-offers__faq-answer {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-promo-latest-offers__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-latest-offers__hero-title {
    font-size: 2.8em;
  }

  .page-promo-latest-offers__section-title {
    font-size: 2.4em;
  }

  .page-promo-latest-offers__grid,
  .page-promo-latest-offers__steps-grid,
  .page-promo-latest-offers__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-promo-latest-offers__card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-promo-latest-offers__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }

  .page-promo-latest-offers__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-promo-latest-offers__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promo-latest-offers__hero-button,
  .page-promo-latest-offers__card-button,
  .page-promo-latest-offers__step-button,
  .page-promo-latest-offers__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promo-latest-offers__section-title {
    font-size: 2em;
  }

  .page-promo-latest-offers__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-promo-latest-offers__grid,
  .page-promo-latest-offers__steps-grid,
  .page-promo-latest-offers__features-grid {
    grid-template-columns: 1fr;
  }

  .page-promo-latest-offers__promo-card {
    margin-bottom: 20px;
  }

  .page-promo-latest-offers__card-title {
    font-size: 1.5em;
  }

  .page-promo-latest-offers__card-text {
    font-size: 0.95em;
  }

  .page-promo-latest-offers__feature-icon {
    width: 150px;
    height: 150px;
  }

  .page-promo-latest-offers__feature-title {
    font-size: 1.5em;
  }

  .page-promo-latest-offers__faq-question {
    font-size: 1.2em;
  }

  /* Ensure all content images in main content area are responsive and do not overflow */
  .page-promo-latest-offers img {
    max-width: 100%;
    height: auto;
  }
  .page-promo-latest-offers__hero-image {
    max-width: none;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .page-promo-latest-offers__hero-title {
    font-size: 1.8em;
  }

  .page-promo-latest-offers__section-title {
    font-size: 1.8em;
  }

  .page-promo-latest-offers__hero-content {
    padding: 15px;
  }

  .page-promo-latest-offers__container {
    padding: 20px 15px;
  }
}