.page-promo {
  color: #333333;
}

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px);
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding-bottom: 60px;
}

.page-promo__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin: 0 auto;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45;
}

.page-promo__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-promo__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__button--primary:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-promo__button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-promo__button--secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.page-promo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promo__overview-section, .page-promo__featured-promos, .page-promo__why-jl88-section, .page-promo__how-to-claim-section, .page-promo__responsible-gaming-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-promo__overview-section {
  background-color: #f8f8f8;
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-promo__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
}

.page-promo__section-description {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555555;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promo__promo-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__promo-card-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__promo-card-title a {
  color: #000000;
  text-decoration: none;
}

.page-promo__promo-card-title a:hover {
  color: #FCBC45;
}

.page-promo__promo-card-description {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__button--card {
  margin-top: auto;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  text-align: center;
  padding: 12px 25px;
}

.page-promo__button--card:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-promo__why-jl88-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo__why-jl88-section .page-promo__section-title {
  color: #FFFFFF;
}

.page-promo__why-jl88-section .page-promo__section-description {
  color: #e0e0e0;
}

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

.page-promo__feature-item {
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.page-promo__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promo__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.page-promo__feature-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-promo__feature-description {
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-promo__how-to-claim-section {
  background-color: #f8f8f8;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promo__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  border-left: 5px solid #FCBC45;
}

.page-promo__step-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__step-description {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
}

.page-promo__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-promo__responsible-gaming-section {
  background-color: #eee;
  text-align: center;
}

.page-promo__responsible-gaming-section .page-promo__section-title {
  color: #000000;
}

.page-promo__responsible-gaming-section .page-promo__section-description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-bottom: 40px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    max-width: 300px;
  }
  .page-promo__overview-section, .page-promo__featured-promos, .page-promo__why-jl88-section, .page-promo__how-to-claim-section, .page-promo__responsible-gaming-section {
    padding: 60px 0;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card-image {
    height: 200px;
  }
  .page-promo__promo-card-title {
    font-size: 1.4em;
  }
  .page-promo__features-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__feature-item {
    padding: 25px;
  }
  .page-promo__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-promo__feature-title {
    font-size: 1.5em;
  }
  .page-promo__step-item {
    padding: 20px;
  }
  .page-promo__step-title {
    font-size: 1.3em;
  }
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promo__container {
    padding: 0 15px;
  }
}