.page-promo {
  color: #333333; /* Dark text for light body background */
}

.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has a decent height */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff; /* White text for better contrast on hero image */
  max-width: 900px;
  padding: 20px;
  background: rgba(26, 42, 78, 0.7); /* Main color with transparency */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.page-promo__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for highlight */
  line-height: 1.2;
}

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

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

.page-promo__button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A2A4E; /* Main color */
  border: 2px solid #FFD700;
}

.page-promo__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promo__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Auxiliary color */
  border: 2px solid #FFD700;
}

.page-promo__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

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

.page-promo__overview-section,
.page-promo__details-section,
.page-promo__how-to-claim-section,
.page-promo__why-choose-section,
.page-promo__cta-section,
.page-promo__responsible-gaming-section {
  padding: 60px 0;
  background-color: #f8f8f8; /* Light background for content sections */
}

.page-promo__overview-section,
.page-promo__how-to-claim-section,
.page-promo__why-choose-section,
.page-promo__responsible-gaming-section {
  background-color: #ffffff;
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #1A2A4E; /* Main color */
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

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

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

.page-promo__promo-card,
.page-promo__detail-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promo__promo-card-image,
.page-promo__detail-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
}

.page-promo__promo-card-title,
.page-promo__detail-card-title {
  font-size: 1.6em;
  color: #1A2A4E; /* Main color */
  margin: 25px 15px 10px 15px;
  font-weight: 600;
}

.page-promo__promo-card-title a,
.page-promo__detail-card-title a {
  color: #1A2A4E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__promo-card-title a:hover,
.page-promo__detail-card-title a:hover {
  color: #FFD700;
}

.page-promo__promo-card-description,
.page-promo__detail-card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-promo__button--card,
.page-promo__button--details {
  margin: 0 20px 25px 20px;
  padding: 12px 25px;
  font-size: 0.95em;
  background-color: #1A2A4E; /* Main color */
  color: #ffffff;
  border: 2px solid #1A2A4E;
}

.page-promo__button--card:hover,
.page-promo__button--details:hover {
  background-color: #0d1a33;
  border-color: #0d1a33;
  transform: translateY(-2px);
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin: 50px auto 0 auto;
  max-width: 800px;
}

.page-promo__claim-step {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700; /* Auxiliary color */
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-promo__claim-step-title {
  font-size: 1.8em;
  color: #1A2A4E; /* Main color */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promo__claim-step p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555555;
}

.page-promo__claim-step a {
  color: #1A2A4E; /* Main color for links */
  font-weight: 600;
  text-decoration: none;
}

.page-promo__claim-step a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-promo__why-list {
  list-style: none;
  padding: 0;
  margin: 50px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promo__why-item {
  background-color: #f0f3f7; /* Lighter shade of main color */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  border: 1px solid #e0e0e0;
}

.page-promo__why-item-title {
  font-size: 1.7em;
  color: #1A2A4E; /* Main color */
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promo__why-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-promo__cta-section {
  background: linear-gradient(135deg, #1A2A4E 0%, #3a4a6e 100%); /* Gradient background with main color */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-promo__cta-section .page-promo__section-title {
  color: #FFD700; /* Auxiliary color */
  font-size: 3em;
}

.page-promo__cta-section .page-promo__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-promo__button--large {
  padding: 18px 45px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-promo__responsible-gaming-section a {
  color: #1A2A4E;
  font-weight: 600;
  text-decoration: none;
}

.page-promo__responsible-gaming-section a:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }

  .page-promo__hero-description {
    font-size: 1.1em;
  }

  .page-promo__section-title {
    font-size: 2.2em;
  }

  .page-promo__promo-card-title,
  .page-promo__detail-card-title {
    font-size: 1.4em;
  }

  .page-promo__claim-step-title {
    font-size: 1.5em;
  }

  .page-promo__why-item-title {
    font-size: 1.4em;
  }

  .page-promo__cta-section .page-promo__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px);
  }

  .page-promo__hero-content {
    max-width: 90%;
    padding: 15px;
  }

  .page-promo__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-promo__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-promo__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100%;
  }

  .page-promo__container {
    padding: 30px 15px;
  }

  .page-promo__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-promo__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promo__promo-grid,
  .page-promo__details-grid,
  .page-promo__why-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promo__promo-card-image,
  .page-promo__detail-card-image {
    height: 200px;
  }

  .page-promo__promo-card-title,
  .page-promo__detail-card-title {
    font-size: 1.3em;
    margin: 20px 15px 8px 15px;
  }

  .page-promo__promo-card-description,
  .page-promo__detail-card-description {
    font-size: 0.9em;
    padding: 0 15px 15px 15px;
  }

  .page-promo__button--card,
  .page-promo__button--details {
    margin: 0 15px 20px 15px;
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-promo__claim-step {
    padding: 20px 25px;
  }

  .page-promo__claim-step-title {
    font-size: 1.3em;
  }

  .page-promo__claim-step p {
    font-size: 0.95em;
  }

  .page-promo__why-item {
    padding: 25px;
  }

  .page-promo__why-item-title {
    font-size: 1.3em;
  }

  .page-promo__why-item p {
    font-size: 0.9em;
  }

  .page-promo__cta-section {
    padding: 60px 15px;
  }

  .page-promo__cta-section .page-promo__section-title {
    font-size: 2em;
  }

  .page-promo__cta-section .page-promo__section-description {
    font-size: 0.95em;
  }

  .page-promo__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-promo__section-title {
    font-size: 1.6em;
  }

  .page-promo__cta-section .page-promo__section-title {
    font-size: 1.8em;
  }
}