.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-promotions__dark-bg {
  background-color: #140C0C;
  color: #FFF1E8;
}

.page-promotions__light-bg {
  background-color: #2A1212; /* Card BG color for light sections to ensure contrast */
  color: #FFF1E8;
}

.page-promotions__text-dark {
  color: #FFF1E8;
}

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

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

.page-promotions__section-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F3C54D; /* Gold color for titles */
}

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

/* HERO Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #140C0C;
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure it takes full width within max-width */
}

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions__main-title {
  font-size: 48px;
  font-weight: 900;
  color: #F3C54D; /* Gold color for H1 */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__subtitle {
  font-size: 20px;
  color: #FFF1E8;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping for multiple buttons */
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  max-width: 100%; /* Button responsive fix */
  box-sizing: border-box; /* Button responsive fix */
  white-space: normal; /* Button responsive fix */
  word-wrap: break-word; /* Button responsive fix */
}

.page-promotions__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-button--secondary {
  background: #7E0D0D; /* Deep Red */
}

.page-promotions__cta-button--secondary:hover {
  background: #C61F1F;
}

/* Intro Section */
.page-promotions__intro-section {
  background-color: #140C0C;
}

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

.page-promotions__feature-item {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF1E8;
  min-height: 200px; /* Ensure minimum height for images */
}

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__feature-item img {
  width: 100%;
  max-width: 200px; /* Smallest image size 200x200 */
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions__feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F3C54D;
}

.page-promotions__feature-item p {
  font-size: 16px;
  color: #FFF1E8;
}

/* Quick Access Section */
.page-promotions__quick-access-section {
  background-color: #2A1212;
}

.page-promotions__button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-promotions__btn-primary {
  display: block;
  padding: 15px 25px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 17px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  max-width: 100%; /* Button responsive fix */
  box-sizing: border-box; /* Button responsive fix */
  white-space: normal; /* Button responsive fix */
  word-wrap: break-word; /* Button responsive fix */
}

.page-promotions__btn-primary:hover {
  opacity: 0.9;
}

/* Game Intro Section */
.page-promotions__game-intro-section {
  background-color: #140C0C;
}

.page-promotions__game-cards-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 15px; /* Space for scrollbar */
}

.page-promotions__game-cards {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.page-promotions__game-card {
  flex: 0 0 auto;
  width: 300px;
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #FFF1E8;
  min-height: 200px; /* Ensure minimum height for images */
}

.page-promotions__game-card img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-promotions__game-title {
  font-size: 22px;
  font-weight: bold;
  color: #F3C54D;
  margin-bottom: 10px;
}

.page-promotions__game-card p {
  font-size: 15px;
  margin-bottom: 20px;
}

.page-promotions__game-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%; /* Button responsive fix */
  box-sizing: border-box; /* Button responsive fix */
  white-space: normal; /* Button responsive fix */
  word-wrap: break-word; /* Button responsive fix */
}

.page-promotions__game-btn:hover {
  opacity: 0.9;
}

/* Promo List Section */
.page-promotions__promo-list-section {
  background-color: #2A1212;
}

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

.page-promotions__promo-card {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  color: #FFF1E8;
  min-height: 200px; /* Ensure minimum height for images */
}

.page-promotions__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-promotions__promo-content {
  padding: 20px;
}

.page-promotions__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: #F3C54D;
  margin-bottom: 10px;
}

.page-promotions__promo-desc {
  font-size: 15px;
  margin-bottom: 20px;
}

.page-promotions__promo-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%; /* Button responsive fix */
  box-sizing: border-box; /* Button responsive fix */
  white-space: normal; /* Button responsive fix */
  word-wrap: break-word; /* Button responsive fix */
}

.page-promotions__promo-btn:hover {
  opacity: 0.9;
}

/* Security Support Section */
.page-promotions__security-support-section {
  background-color: #140C0C;
}

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

.page-promotions__info-item {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: #FFF1E8;
  min-height: 200px; /* Ensure minimum height for images */
}

.page-promotions__info-item img {
  width: 100%;
   /* Smallest image size 200x200 */
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions__info-title {
  font-size: 20px;
  font-weight: bold;
  color: #F3C54D;
  margin-bottom: 10px;
}

.page-promotions__info-item p {
  font-size: 15px;
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: #2A1212;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #140C0C; /* Darker background for FAQ item */
  color: #FFF1E8;
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: #7E0D0D; /* Deep Red on hover */
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #F3C54D; /* Gold for question text */
  text-align: left;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F3C54D; /* Gold for toggle icon */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #140C0C; /* Darker background for answer */
  border-radius: 0 0 8px 8px;
  font-size: 15px;
  color: #FFF1E8;
}

/* Blog Section */
.page-promotions__blog-section {
  background-color: #140C0C;
}

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

.page-promotions__blog-card {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  color: #FFF1E8;
  min-height: 200px; /* Ensure minimum height for images */
}

.page-promotions__blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions__blog-content {
  padding: 20px;
}

.page-promotions__blog-title-link {
  text-decoration: none;
  color: inherit;
}

.page-promotions__blog-title {
  font-size: 20px;
  font-weight: bold;
  color: #F3C54D;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.page-promotions__blog-title-link:hover .page-promotions__blog-title {
  color: #FFB04A;
}

.page-promotions__blog-meta {
  font-size: 13px;
  color: #A0A0A0;
  margin-bottom: 15px;
}

.page-promotions__blog-excerpt {
  font-size: 15px;
  margin-bottom: 20px;
}

.page-promotions__blog-readmore {
  display: inline-block;
  padding: 8px 15px;
  background: #7E0D0D; /* Deep Red */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%; /* Button responsive fix */
  box-sizing: border-box; /* Button responsive fix */
  white-space: normal; /* Button responsive fix */
  word-wrap: break-word; /* Button responsive fix */
}

.page-promotions__blog-readmore:hover {
  background: #C61F1F;
}

.page-promotions__view-all-button-wrapper {
  margin-top: 40px;
  text-align: center;
}

.page-promotions__view-all-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 17px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%; /* Button responsive fix */
  box-sizing: border-box; /* Button responsive fix */
  white-space: normal; /* Button responsive fix */
  word-wrap: break-word; /* Button responsive fix */
}

.page-promotions__view-all-button:hover {
  opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 40px;
  }

  .page-promotions__section-title {
    font-size: 32px;
  }

  .page-promotions__subtitle,
  .page-promotions__section-description {
    font-size: 17px;
  }

  .page-promotions__game-card {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__main-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .page-promotions__subtitle {
    font-size: 16px;
  }

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

  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__promo-btn,
  .page-promotions__game-btn,
  .page-promotions__blog-readmore,
  .page-promotions__view-all-button {
    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-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 15px;
  }

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

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

  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

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

  .page-promotions__features-grid,
  .page-promotions__promo-grid,
  .page-promotions__info-grid,
  .page-promotions__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__feature-item,
  .page-promotions__promo-card,
  .page-promotions__info-item,
  .page-promotions__blog-card {
    padding: 20px;
  }

  .page-promotions__feature-title,
  .page-promotions__game-title,
  .page-promotions__promo-title,
  .page-promotions__info-title,
  .page-promotions__blog-title {
    font-size: 20px;
  }

  .page-promotions__feature-item img,
  .page-promotions__info-item img {
    
  }

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

  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }

  .page-promotions__faq-qtext {
    font-size: 15px;
  }

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

  .page-promotions__game-cards-wrapper {
    padding-bottom: 10px;
  }

  .page-promotions__game-card {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 28px;
  }

  .page-promotions__section-title {
    font-size: 24px;
  }

  .page-promotions__feature-item img,
  .page-promotions__info-item img {
    
  }
}

/* Image responsive base styles */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile forced image styles */
@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-container,
  .page-promotions__game-cards-wrapper,
  .page-promotions__game-cards {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important;
  }
}

/* Content area image size lower bound */
.page-promotions__intro-section .page-promotions__feature-item img,
.page-promotions__security-support-section .page-promotions__info-item img {
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px; /* Enforce minimum size for content images */
}

.page-promotions__promo-card img,
.page-promotions__blog-card img {
  min-width: 200px; /* Enforce minimum size for card images */
  min-height: 200px; /* Enforce minimum size for card images */
}

.page-promotions__game-card img {
  min-width: 200px; /* Enforce minimum size for game images */
  min- /* Set height based on design, ensure it's not too small */
}