.page-promotions {
  color: #ffffff; /* Body background is #0d0d0d (dark), so text must be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #0d0d0d; /* Ensure consistency with body background */
}

.page-promotions__hero-section {
  padding-top: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  max-height: 500px;
}

.page-promotions__hero-content {
  max-width: 900px;
  padding: 40px 20px;
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.5); /* Slightly darker overlay for text readability */
  border-radius: 8px;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.page-promotions__cta-buttons--center {
  margin-top: 40px;
}

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

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

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

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

.page-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions__btn-link {
  background-color: transparent;
  color: #26A9E0;
  border: none;
  padding: 10px 0;
  font-weight: 600;
  text-align: left;
}

.page-promotions__btn-link:hover {
  text-decoration: underline;
}

.page-promotions__logo-carousel-section {
  padding: 50px 20px 30px;
  text-align: center;
  background-color: #1a1a1a; /* Darker background for logo section */
  color: #ffffff;
}

.page-promotions__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-promotions__logo-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.page-promotions__logo-item {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0d0d0d;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__logo-item img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%); /* Make logos grayscale */
  transition: filter 0.3s ease;
}

.page-promotions__logo-item img:hover {
  filter: grayscale(0%); /* Color on hover */
}

.page-promotions__promotions-grid-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-promotions__section-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-promotions__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__promotion-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-promotions__promotion-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promotion-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-promotions__promotion-text {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__why-choose-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f8f8f8;
  color: #333333;
}

.page-promotions__why-choose-section .page-promotions__section-title {
  color: #000000; /* Darker title for light background */
}

.page-promotions__why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.page-promotions__why-choose-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.page-promotions__why-choose-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  /* filter: invert(100%) brightness(0) saturate(100%) hue-rotate(180deg) !important; */ /* Removed as per instruction: no filter for image colors */
}

.page-promotions__why-choose-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-promotions__why-choose-description {
  font-size: 1rem;
  color: #555555;
}

.page-promotions__faq-section {
  padding: 60px 20px;
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-promotions__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #26A9E0;
  background-color: #1a1a1a;
  border-bottom: 1px solid #333333;
  list-style: none; /* For details/summary */
}

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

.page-promotions__faq-question:hover {
  background-color: #222222;
}

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

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 15px;
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions__faq-item[open] .page-promotions__faq-answer {
  max-height: 500px; /* Sufficiently large to show content */
  padding-top: 15px;
}

.page-promotions__cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #f8f8f8;
  color: #333333;
}

.page-promotions__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions__cta-content .page-promotions__section-title {
  color: #000000;
  margin-bottom: 25px;
}

.page-promotions__cta-content .page-promotions__section-description {
  color: #555555;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

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

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

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

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

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-link {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-promotions__logo-carousel-section {
    padding: 50px 15px 20px;
  }

  .page-promotions__logo-carousel {
    gap: 20px;
  }

  .page-promotions__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
  }

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

  .page-promotions__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-promotions__promotions-grid-section {
    padding: 40px 15px;
  }

  .page-promotions__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promotion-card {
    margin: 0 auto;
    max-width: 400px;
  }

  .page-promotions__promotion-title {
    font-size: 1.3rem;
  }

  .page-promotions__why-choose-section {
    padding: 40px 15px;
  }

  .page-promotions__why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-promotions__why-choose-item {
    padding: 25px;
  }

  .page-promotions__faq-section {
    padding: 40px 15px;
  }

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

  .page-promotions__faq-question {
    padding: 18px 20px;
    font-size: 1.1rem;
  }

  .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }

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

  /* Mobile image adaptation */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Game display images: must maintain object-fit behavior */
  .page-promotions__promotion-image {
    width: 100% !important;
    height: 200px !important; /* Maintain fixed height for consistency */
    max-width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  /* Containers for responsiveness */
  .page-promotions__hero-section,
  .page-promotions__logo-carousel-section,
  .page-promotions__promotions-grid-section,
  .page-promotions__why-choose-section,
  .page-promotions__faq-section,
  .page-promotions__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left: 15px; */ /* Removed as inner elements handle padding */
    /* padding-right: 15px; */ /* Removed as inner elements handle padding */
  }
  .page-promotions__hero-section .page-promotions__hero-content,
  .page-promotions__logo-carousel-section .page-promotions__section-title,
  .page-promotions__promotions-grid-section .page-promotions__section-description,
  .page-promotions__why-choose-section .page-promotions__why-choose-grid,
  .page-promotions__faq-section .page-promotions__faq-list,
  .page-promotions__cta-section .page-promotions__cta-content {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}