.page-promotions {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles --header-offset, this is for visual padding */
  overflow: hidden;
}

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

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(8, 22, 15, 0.7); /* Semi-transparent dark background */
  border-radius: 10px;
  margin-top: 150px; /* Adjust as needed to not overlap header */
}

.page-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__intro-text {
  font-size: clamp(1em, 1.5vw, 1.25em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-promotions__sub-title {
  font-size: 1.8em;
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__paragraph {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6;
}

.page-promotions__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-promotions__btn-secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
}

.page-promotions__overview-section, .page-promotions__welcome-bonus-section,
.page-promotions__reload-cashback-section, .page-promotions__vip-section,
.page-promotions__special-events-section, .page-promotions__how-to-claim-section,
.page-promotions__terms-conditions-section, .page-promotions__faq-section,
.page-promotions__final-cta-section {
  padding: 60px 0;
}

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

.page-promotions__promo-card, .page-promotions__event-card {
  background-color: #11271B; /* Card B G */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__promo-card:hover, .page-promotions__event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__card-description {
  color: #A7D9B8;
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-promotions__card-button:hover {
  filter: brightness(1.1);
}

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

.page-promotions__feature-item {
  background-color: #11271B;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #2E7A4E;
}

.page-promotions__feature-title {
  font-size: 1.4em;
  color: #57E38D; /* Glow */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__feature-description {
  color: #A7D9B8;
  line-height: 1.7;
}

.page-promotions__grid-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions__list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-promotions__list li {
  color: #A7D9B8;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-promotions__list li::before {
  content: '✓';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-promotions__vip-item {
  background-color: #11271B;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid #2E7A4E;
}

.page-promotions__vip-title {
  font-size: 1.3em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__vip-description {
  color: #A7D9B8;
  font-size: 0.95em;
  line-height: 1.6;
}

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

.page-promotions__steps-list li {
  background-color: #11271B;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid #2E7A4E;
  position: relative;
  padding-left: 80px;
}

.page-promotions__steps-list li::before {
  content: attr(data-step);
  position: absolute;
  left: 25px;
  top: 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-promotions__steps-list li:nth-child(1)::before { content: '1'; }
.page-promotions__steps-list li:nth-child(2)::before { content: '2'; }
.page-promotions__steps-list li:nth-child(3)::before { content: '3'; }
.page-promotions__steps-list li:nth-child(4)::before { content: '4'; }

.page-promotions__step-title {
  font-size: 1.4em;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__step-description {
  color: #A7D9B8;
  line-height: 1.7;
}

.page-promotions__terms-list {
  list-style: decimal;
  padding-left: 20px;
  margin-top: 30px;
}

.page-promotions__terms-list li {
  color: #A7D9B8;
  margin-bottom: 10px;
  line-height: 1.7;
  padding-left: 0;
}

.page-promotions__terms-list li::before {
  content: none;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-promotions__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
}

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

.page-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8;
  line-height: 1.7;
}

.page-promotions__faq-answer p {
  margin-bottom: 0;
}

.page-promotions__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions__grid-half {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-content {
    margin-top: 100px;
    padding: 30px 15px;
  }

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

  .page-promotions__intro-text {
    font-size: 1em;
  }

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

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

  .page-promotions__paragraph {
    font-size: 1em;
  }

  .page-promotions__cta-button,
  .page-promotions__card-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-promotions__promo-grid, .page-promotions__event-grid,
  .page-promotions__feature-list, .page-promotions__vip-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promo-card, .page-promotions__event-card,
  .page-promotions__feature-item, .page-promotions__vip-item,
  .page-promotions__faq-item,
  .page-promotions__steps-list li {
    padding: 20px;
  }

  .page-promotions__steps-list li {
    padding-left: 70px;
  }

  .page-promotions__steps-list li::before {
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }

  .page-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  /* Mobile responsive for images, videos, buttons */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}