.page-promotions {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

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

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__container--flex {
  display: flex;
  gap: 30px;
  align-items: center;
}

.page-promotions__container--reverse-mobile {
  flex-direction: row;
}

.page-promotions__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-promotions__section-title--light {
  color: #ffffff;
}

.page-promotions__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
  color: #ffffff;
}

.page-promotions__text-block--light {
  color: #ffffff;
}

.page-promotions__highlight {
  color: #FFFF00; /* For register/login font color */
  font-weight: bold;
}

.page-promotions__highlight--light {
  color: #FFFF00; /* For register/login font color on dark backgrounds */
  font-weight: bold;
}

.page-promotions__inline-link {
  color: #FFFF00;
  text-decoration: underline;
}

.page-promotions__inline-link:hover {
  color: #ffffff;
}

.page-promotions__inline-link--light {
  color: #FFFF00;
  text-decoration: underline;
}

.page-promotions__inline-link--light:hover {
  color: #ffffff;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* body already handles --header-offset */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  height: auto;
  display: block;
  order: 1; /* Image first */
}

.page-promotions__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px;
}

.page-promotions__hero-content {
  order: 2; /* Content after image */
  max-width: 900px;
  padding: 40px 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay for readability */
  margin-top: -5px; /* Slight overlap with image for visual continuity */
  position: relative;
  z-index: 1;
  border-radius: 8px;
}

.page-promotions__hero-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-promotions__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* CTA Buttons */
.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button--primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-promotions__cta-button--primary:hover {
  background-color: #a30606;
  transform: translateY(-2px);
}

.page-promotions__cta-button--secondary {
  background-color: #017439; /* Main color */
  color: #ffffff;
  border: 2px solid #017439;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #005c2d;
  transform: translateY(-2px);
}

.page-promotions__cta-button--secondary-alt {
  background-color: transparent;
  color: #FFFF00;
  border: 2px solid #FFFF00;
}

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

.page-promotions__cta-button--centered {
  display: block;
  margin: 30px auto 0 auto;
}

.page-promotions__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Dark Section Styling */
.page-promotions__dark-section {
  background-color: #017439;
  color: #ffffff;
}

/* Image and Content Blocks */
.page-promotions__content-block {
  flex: 1;
}

.page-promotions__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__image-block img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

/* Offers Grid */
.page-promotions__offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__offer-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-promotions__offer-card:hover {
  transform: translateY(-5px);
}

.page-promotions__offer-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-promotions__card-title--light {
  color: #ffffff;
}

.page-promotions__card-description {
  font-size: 16px;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #f0f0f0;
}

/* Game Promo Cards */
.page-promotions__game-promo-card {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__game-promo-card--reverse {
  flex-direction: row-reverse;
}

.page-promotions__game-promo-card .page-promotions__image-block {
  flex: 1;
}

.page-promotions__game-promo-card .page-promotions__content-block {
  flex: 1;
}

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

.page-promotions__step-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__step-card img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  min-width: 200px;
  min-height: 200px;
  width: 250px; /* Explicit size for step cards to meet min size */
  height: 250px;
}

/* FAQ Section */
.page-promotions__faq-list {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.page-promotions__faq-question--light {
  color: #ffffff;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
  color: #ffffff;
}

.page-promotions__faq-qtext--light {
  color: #ffffff;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff;
}

.page-promotions__faq-toggle--light {
  color: #ffffff;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−';
}

.page-promotions__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  color: #f0f0f0;
}

.page-promotions__faq-answer--light {
  color: #f0f0f0;
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-item summary {
  list-style: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-section {
    min-height: 400px;
  }

  .page-promotions__hero-content {
    padding: 30px 15px;
  }

  .page-promotions__hero-title {
    font-size: clamp(28px, 4.5vw, 48px);
  }

  .page-promotions__hero-description {
    font-size: clamp(16px, 2.2vw, 20px);
  }

  .page-promotions__container--flex {
    flex-direction: column;
  }

  .page-promotions__game-promo-card {
    flex-direction: column;
  }

  .page-promotions__game-promo-card--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-promotions__section-padding {
    padding: 40px 0;
  }

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

  .page-promotions__section-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 30px;
  }

  .page-promotions__text-block {
    font-size: 15px;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__hero-section {
    min-height: unset;
    padding-bottom: 40px;
  }

  .page-promotions__hero-image-wrapper img,
  .page-promotions__offer-card img,
  .page-promotions__image-block img,
  .page-promotions__step-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__offer-card,
  .page-promotions__game-promo-card,
  .page-promotions__step-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__hero-content {
    width: 100%;
    border-radius: 0;
  }

  .page-promotions__hero-title {
    font-size: clamp(24px, 8vw, 36px);
  }

  .page-promotions__hero-description {
    font-size: clamp(15px, 4vw, 18px);
  }

  .page-promotions__how-to-claim-grid,
  .page-promotions__offers-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__how-to-claim-section .page-promotions__step-card {
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions__step-card img {
    width: 200px !important;
    height: 200px !important;
  }
}