/* style/promotions.css */
:root {
  --primary-color: #1A2B4C;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #121212;
  --background-light: #f9f9f9;
  --border-color: #e0e0e0;
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--background-dark);
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

/* -------------------- Video Section -------------------- */
.page-promotions__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust for fixed header */
  background-color: var(--background-dark);
}

.page-promotions__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none;
}

.page-promotions__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-promotions__video-link:hover .page-promotions__video-overlay {
  opacity: 1;
}

.page-promotions__video-click-hint {
  color: var(--text-light);
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(255, 215, 0, 0.8);
  border-radius: 5px;
  white-space: nowrap;
}

.page-promotions__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-promotions__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-promotions__play-now-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-promotions__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* -------------------- Hero Section -------------------- */
.page-promotions__hero-section {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__description {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-promotions__cta-button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-promotions__cta-button--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* -------------------- Overview Section -------------------- */
.page-promotions__overview-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions__overview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__overview-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-promotions__overview-text {
  font-size: 17px;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

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

.page-promotions__overview-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions__overview-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions__overview-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__overview-item-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-promotions__overview-item-description {
  font-size: 16px;
  opacity: 0.8;
}

.page-promotions__overview-cta {
  margin-top: 20px;
}

/* -------------------- Featured Promotions Section -------------------- */
.page-promotions__featured-promos-section {
  padding: 80px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

.page-promotions__featured-promos-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__featured-promos-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-promotions__featured-promos-description {
  font-size: 17px;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

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

.page-promotions__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__promo-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.page-promotions__promo-card-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-promotions__promo-card-text {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.8;
  flex-grow: 1;
}

.page-promotions__promo-card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-promotions__promo-card-features li {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text-light);
  position: relative;
  padding-left: 25px;
}

.page-promotions__promo-card-features li::before {
  content: '✔';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions__promo-card-button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-promotions__promo-card-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* -------------------- How To Claim Section -------------------- */
.page-promotions__how-to-claim-section {
  padding: 80px 20px;
  background-color: var(--background-light);
  color: var(--text-dark);
  text-align: center;
}

.page-promotions__how-to-claim-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-promotions__how-to-claim-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-promotions__how-to-claim-description {
  font-size: 17px;
  margin-bottom: 50px;
  opacity: 0.9;
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-promotions__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  border: 1px solid var(--border-color);
}

.page-promotions__step-item:hover {
  transform: translateY(-5px);
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto 25px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-promotions__step-text {
  font-size: 16px;
  color: var(--text-dark);
}

.page-promotions__step-text a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions__step-text a:hover {
  color: var(--secondary-color);
}

.page-promotions__how-to-claim-cta {
  margin-top: 30px;
}

/* -------------------- Terms Section -------------------- */
.page-promotions__terms-section {
  padding: 80px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

.page-promotions__terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__terms-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-promotions__terms-description {
  font-size: 17px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
  text-align: left;
}

.page-promotions__terms-list li {
  font-size: 16px;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  opacity: 0.85;
}

.page-promotions__terms-list li::before {
  content: '•';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
}

.page-promotions__terms-cta {
  margin-top: 30px;
}

/* -------------------- FAQ Section -------------------- */
.page-promotions__faq-section {
  padding: 80px 20px;
  background-color: var(--background-light);
  color: var(--text-dark);
  text-align: center;
}

.page-promotions__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-main-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-promotions__faq-description {
  font-size: 17px;
  margin-bottom: 50px;
  opacity: 0.9;
}

.page-promotions__faq-list {
  text-align: left;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border-bottom: 1px solid transparent; /* default */
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions__faq-item.active .page-promotions__faq-question {
  background-color: #f5f5f5;
  border-bottom-color: var(--border-color);
}

.page-promotions__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
  pointer-events: none;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg); /* Change to X or rotate for minus */
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: var(--text-dark);
  font-size: 15px;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-promotions__faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions__faq-answer a:hover {
  color: var(--secondary-color);
}

/* -------------------- Contact Section -------------------- */
.page-promotions__contact-section {
  padding: 80px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

.page-promotions__contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions__contact-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-promotions__contact-description {
  font-size: 17px;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

/* -------------------- Final CTA Section -------------------- */
.page-promotions__final-cta-section {
  padding: 80px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

.page-promotions__final-cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__final-cta-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-promotions__final-cta-description {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-promotions__final-cta-button {
  margin-top: 20px;
}

/* -------------------- General Elements & Utilities -------------------- */
h2, h3, h4, h5, h6 {
  color: var(--text-light);
}

.page-promotions__dark-section h2, .page-promotions__dark-section h3 {
  color: var(--secondary-color);
}

.page-promotions__light-bg h2, .page-promotions__light-bg h3 {
  color: var(--primary-color);
}

.page-promotions p, .page-promotions li {
  color: var(--text-light);
}

.page-promotions__light-bg p, .page-promotions__light-bg li {
  color: var(--text-dark);
}

/* -------------------- Responsive Design -------------------- */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 42px;
  }
  .page-promotions__overview-title,
  .page-promotions__featured-promos-title,
  .page-promotions__how-to-claim-title,
  .page-promotions__terms-title,
  .page-promotions__faq-main-title,
  .page-promotions__contact-title,
  .page-promotions__final-cta-title {
    font-size: 34px;
  }
  .page-promotions__promo-card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    padding-top: 100px !important; /* Mobile: Adjust for fixed header */
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Video Section Mobile */
  .page-promotions__video-section {
    padding-top: 10px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-promotions__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .page-promotions__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 4px;
    overflow: hidden !important;
  }
  
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
    object-fit: contain; /* Ensure video fits within bounds */
  }
  
  .page-promotions__video-click-hint {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }
  
  .page-promotions__video-cta {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .page-promotions__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Hero Section Mobile */
  .page-promotions__hero-section,
  .page-promotions__overview-section,
  .page-promotions__featured-promos-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__contact-section,
  .page-promotions__final-cta-section {
    padding: 40px 15px;
  }

  .page-promotions__main-title {
    font-size: 32px;
  }
  .page-promotions__description {
    font-size: 16px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: 16px;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Overview Section Mobile */
  .page-promotions__overview-title,
  .page-promotions__featured-promos-title,
  .page-promotions__how-to-claim-title,
  .page-promotions__terms-title,
  .page-promotions__faq-main-title,
  .page-promotions__contact-title,
  .page-promotions__final-cta-title {
    font-size: 28px;
  }
  .page-promotions__overview-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__overview-image {
    max-width: 200px;
  }

  /* Featured Promos Section Mobile */
  .page-promotions__promo-card-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-card-image {
    height: 180px;
  }
  .page-promotions__promo-card-title {
    font-size: 22px;
  }

  /* How To Claim Section Mobile */
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__step-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .page-promotions__step-title {
    font-size: 20px;
  }

  /* Terms Section Mobile */
  .page-promotions__terms-list li {
    font-size: 15px;
  }

  /* FAQ Section Mobile */
  .page-promotions__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-promotions__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-promotions__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-promotions__faq-answer {
    padding: 0 15px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px !important;
  }

  /* Contact Section Mobile */
  .page-promotions__contact-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* Ensure all images are responsive */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure all video elements are responsive */
.page-promotions video,
.page-promotions__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* Ensure all video containers are responsive */
.page-promotions__video-section,
.page-promotions__video-container,
.page-promotions__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Ensure all button elements are responsive */
.page-promotions__cta-button,
.page-promotions__play-now-button,
.page-promotions__promo-card-button {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Ensure all button containers are responsive */
.page-promotions__cta-buttons,
.page-promotions__contact-buttons {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px; /* Ensure gap for wrapped buttons */
}

@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper,
  .page-promotions__hero-container,
  .page-promotions__overview-container,
  .page-promotions__featured-promos-container,
  .page-promotions__how-to-claim-container,
  .page-promotions__terms-container,
  .page-promotions__faq-container,
  .page-promotions__contact-container,
  .page-promotions__final-cta-container {
    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__play-now-button,
  .page-promotions__promo-card-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__cta-buttons,
  .page-promotions__contact-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    padding-left: 0 !important; /* Reset padding from container */
    padding-right: 0 !important; /* Reset padding from container */
  }
}