.page-promotions {
  color: #ffffff; /* Body background is dark (#0a0a0a), so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Rely on body background from shared.css */
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 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; /* Small top padding, larger bottom padding */
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height for the hero image */
  overflow: hidden;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up slightly over the image for visual flow, without overlapping text */
  background: rgba(10, 10, 10, 0.7); /* Semi-transparent dark background for text readability */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-promotions__hero-description {
  font-size: 1.15rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-promotions__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-promotions__sub-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-promotions__text-block {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-promotions__flex-container {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-promotions__flex-container--reverse {
  flex-direction: row-reverse;
}

.page-promotions__content-block,
.page-promotions__image-block {
  flex: 1;
}

.page-promotions__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-promotions__btn-primary:hover {
  background-color: #1e87b6;
  border-color: #1e87b6;
}

.page-promotions__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87b6;
  border-color: #1e87b6;
}

.page-promotions__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-promotions__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-promotions__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions__dark-section {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast */
  color: #ffffff;
  padding: 60px 0;
}

.page-promotions__light-section {
  background-color: #f8f8f8;
  color: #333333;
  padding: 60px 0;
}

.page-promotions__overview-section {
  padding: 60px 0;
}

.page-promotions__welcome-bonus-section,
.page-promotions__daily-weekly-section,
.page-promotions__special-events-section,
.page-promotions__vip-section,
.page-promotions__terms-section {
  padding: 60px 0;
}

.page-promotions__vip-benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-promotions__vip-benefit-item {
  background-color: rgba(255, 255, 255, 0.05); /* Light background for dark section */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  position: relative;
  padding-left: 40px;
}

.page-promotions__vip-benefit-item::before {
  content: '✔';
  position: absolute;
  left: 15px;
  color: #26A9E0;
  font-weight: bold;
}

.page-promotions__faq-section {
  padding: 60px 0;
}

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

.page-promotions__faq-item {
  background-color: #f9f9f9;
  color: #333333;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.page-promotions__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1rem;
  background-color: #f0f0f0;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-promotions__faq-answer {
  padding: 20px;
  border-top: 1px solid #e0e0e0;
  background-color: #ffffff;
  color: #333333;
  font-size: 0.95rem;
}

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

.page-promotions__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-promotions__cta-section .page-promotions__section-title,
.page-promotions__cta-section .page-promotions__text-block {
  color: #ffffff;
}

.page-promotions .highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__flex-container {
    flex-direction: column;
    gap: 30px;
  }
  .page-promotions__flex-container--reverse {
    flex-direction: column;
  }
  .page-promotions__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-promotions__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__hero-section {
    padding: 10px 0 40px 0;
  }

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

  .page-promotions__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-promotions__hero-description {
    font-size: 1rem;
  }

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

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

  .page-promotions__text-block {
    font-size: 0.95rem;
  }

  .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: 12px 20px;
  }

  .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-direction: column !important; /* Stack buttons vertically */
    gap: 15px;
    overflow: hidden !important;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__image-block,
  .page-promotions__content-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure containers also hide overflow */
  }

  .page-promotions__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content {
    margin-top: -40px;
  }
  .page-promotions__vip-benefits-list {
    grid-template-columns: 1fr;
  }
}