.page-promo {
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-promo__section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #E5B80B; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

.page-promo__cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #E5B80B 0%, #F5D020 100%); /* Golden gradient */
  color: #0A2342; /* Dark text for golden button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 184, 11, 0.4);
  border: none;
  cursor: pointer;
}

.page-promo__cta-button:hover {
  background: linear-gradient(90deg, #F5D020 0%, #E5B80B 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 184, 11, 0.6);
}

.page-promo__cta-button--centered {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

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

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.page-promo__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #E5B80B;
  font-weight: 900;
  line-height: 1.1;
}

.page-promo__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Grid (Welcome Bonus) */
.page-promo__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promo__feature-card {
  background: rgba(10, 35, 66, 0.8);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(229, 184, 11, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__feature-image {
  width: 100%; /* Ensures image fills card width */
  max-width: 400px; /* Max width for consistency */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #E5B80B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__card-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Promo Grid (Deposit Bonuses) */
.page-promo__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promo__promo-card {
  background: rgba(10, 35, 66, 0.8);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(229, 184, 11, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__promo-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

/* Cashback & Rebate Section */
.page-promo__info-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
  background: rgba(10, 35, 66, 0.8);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(229, 184, 11, 0.3);
}

.page-promo__info-image {
  flex: 1 1 45%;
  min-width: 300px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.page-promo__info-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-promo__info-title {
  font-size: 2.2em;
  color: #E5B80B;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__info-text {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-promo__info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promo__info-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #f0f0f0;
}

.page-promo__list-icon {
  color: #E5B80B;
  font-size: 1.4em;
  margin-right: 10px;
  line-height: 1;
}

/* Special Events & Tournaments Section */
.page-promo__event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promo__event-card {
  background: rgba(10, 35, 66, 0.8);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(229, 184, 11, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__event-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

/* How to Claim Section */
.page-promo__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promo__step-card {
  background: rgba(10, 35, 66, 0.8);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(229, 184, 11, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

.page-promo__step-icon {
  font-size: 2.5em;
  color: #E5B80B;
  background-color: #0A2342;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 2px solid #E5B80B;
  font-weight: bold;
}

.page-promo__small-cta {
  display: inline-block;
  background: #E5B80B;
  color: #0A2342;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-promo__small-cta:hover {
  background-color: #F5D020;
}

/* Why Choose Us Section */
.page-promo__feature-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promo__highlight-card {
  background: rgba(10, 35, 66, 0.8);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(229, 184, 11, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

.page-promo__highlight-icon {
  width: 100%; /* Ensures image fills card width */
  max-width: 300px; /* Max width for consistency */
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

/* Responsible Gaming Section */
.page-promo__responsible-gaming-section {
  background-color: rgba(10, 35, 66, 0.6);
  padding: 60px 0;
  border-top: 1px solid rgba(229, 184, 11, 0.3);
  border-bottom: 1px solid rgba(229, 184, 11, 0.3);
}

/* Final CTA Section */
.page-promo__final-cta-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.page-promo__final-cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}

.page-promo__final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.page-promo__final-cta-title {
  font-size: 3.5em;
  color: #E5B80B;
  margin-bottom: 20px;
  font-weight: 900;
}

.page-promo__final-cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__cta-button--primary {
  background: linear-gradient(90deg, #E5B80B 0%, #F5D020 100%);
  color: #0A2342;
}

.page-promo__cta-button--secondary {
  background: #0A2342;
  color: #E5B80B;
  border: 2px solid #E5B80B;
  box-shadow: 0 4px 15px rgba(10, 35, 66, 0.4);
}

.page-promo__cta-button--secondary:hover {
  background: #1a426c;
  color: #F5D020;
  border-color: #F5D020;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10, 35, 66, 0.6);
}

.page-promo__cta-button--tertiary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.page-promo__cta-button--tertiary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #E5B80B;
  color: #E5B80B;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

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

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

  .page-promo__final-cta-title {
    font-size: 2.8em;
  }
}

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

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

  .page-promo__section {
    padding: 60px 0;
  }

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

  .page-promo__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promo__info-block {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }

  .page-promo__info-image {
    min-width: unset;
    width: 100%;
  }

  .page-promo__info-content {
    min-width: unset;
    width: 100%;
  }

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

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

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

  .page-promo__cta-button--centered,
  .page-promo__cta-button--primary,
  .page-promo__cta-button--secondary,
  .page-promo__cta-button--tertiary {
    width: 100%;
    max-width: 300px; /* Constrain buttons on mobile */
  }

  /* Critical: Prevent content overflow on mobile */
  .page-promo__hero-image,
  .page-promo__feature-image,
  .page-promo__promo-image,
  .page-promo__info-image,
  .page-promo__event-image,
  .page-promo__highlight-icon,
  .page-promo__final-cta-image {
    max-width: 100%;
    height: auto;
  }

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

  .page-promo__feature-card,
  .page-promo__promo-card,
  .page-promo__event-card,
  .page-promo__step-card,
  .page-promo__highlight-card {
    padding: 25px;
  }

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

  .page-promo__info-title {
    font-size: 1.8em;
  }
}

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

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

  .page-promo__final-cta-title {
    font-size: 2em;
  }
}